input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@keyframes fade-in {
  from {
      background-color: rgba(0, 0, 0, 0);
  }
  to {
      background-color: rgba(0, 0, 0, 0.8);
  }
}

@keyframes fade-out {
  from {
      background-color: rgba(0, 0, 0, 0.8);
  }
  to {
      background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes slide-in {
  from {
      transform: translateX(500px);
  }
  to {
      transform: translateX(0px);
  }
}

@keyframes slide-out {
  from {
      transform: translateX(0px);
  }
  to {
      transform: translateX(500px);
  }
}

body.cart-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
  animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
  animation: slide-out 0.4s forwards;
}

.dialog[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.2s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.2s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      scale: 50%;
  }
  to {
      opacity: 1;
      scale: 100%;
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      scale: 100%;
  }
  to {
      opacity: 0;
      scale: 50%;
  }
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.centralcart-content iframe {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.grid-background {
  background-image: linear-gradient(to right,hsla(0,0%,100%,.03) 1px,transparent 1px),linear-gradient(to bottom,hsla(0,0%,100%,.03) 1px,transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 85% at 40% 30%, #000 0%, #fff0 110%)
}

.custom-bg-mask {
	mask-image: linear-gradient(hsl(var(--background)), rgba(0, 0, 0, 0.3), rgb(0, 0, 0, 0));
}

@keyframes loading {
  0% {
      left: -50%;
  }

  to {
      left: 100%;
  }
}

/* Top donators shine */
.top-donators-pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
  transition: left 0.5s ease-in;
}

.top-donators-pill:hover::after {
  left: 120%;
  transition: left 0.6s ease-out;
}

.detail-dash {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 50%, hsl(var(--foreground) / 0) 0%);
  background-position: center bottom;
  background-size: 16px;
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

/* Sidebar categories */
.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 0.25rem;
}

.cat-dropdown {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.cat-dropdown:not(.hidden) {
  animation: slideDown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

#mobile-categories-dropdown:not(.hidden) {
  animation: slideInMobile 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMobile {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-subcategories:not(.hidden) {
  animation: slideInSub 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInSub {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Sidebar categories */

/* Hero section */
.hero-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: 32rem;
  padding: 4rem 0 3rem;
  background-color: rgb(9, 9, 11);
}

.hero-section--overlay {
  margin-top: 0;
  margin-bottom: -5rem;
  padding-top: 8rem;
  padding-bottom: 7rem;
  min-height: 38rem;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.hero-section-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 4;
  height: 16rem;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(9, 9, 11, 0.5) 35%,
    rgba(9, 9, 11, 0.92) 70%,
    rgb(9, 9, 11) 100%
  );
}

body:has(#top-announce) .hero-section--overlay {
  padding-top: 11rem;
}

@media (min-width: 640px) {
  .hero-section--overlay {
    padding-top: 8.5rem;
  }

  body:has(#top-announce) .hero-section--overlay {
    padding-top: 11.5rem;
  }
}

.site-main {
  padding-top: 5.75rem;
}

.site-main:has(.hero-section--overlay) {
  padding-top: 0;
}

.site-header {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -10rem;
  height: calc(100% + 10rem);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: rgb(9, 9, 11);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 35%,
    rgba(0, 0, 0, 0.85) 55%,
    rgba(0, 0, 0, 0.35) 78%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 35%,
    rgba(0, 0, 0, 0.85) 55%,
    rgba(0, 0, 0, 0.35) 78%,
    transparent 100%
  );
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: blur(4px);
  transform: scale(1.06);
  transform-origin: center center;
  opacity: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.15) 65%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-bg-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 75%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(9, 9, 11, 0.25) 30%,
    rgba(9, 9, 11, 0.65) 60%,
    rgb(9, 9, 11) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content-panel {
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-content::before {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.35rem;
  margin-bottom: 1.5rem;
  border: 1.5px solid rgba(163, 163, 163, 0.55);
  border-radius: 9999px;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.95) 0%, rgba(23, 23, 23, 0.98) 100%);
  color: #d4d4d4;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  box-shadow:
    0 0 0 1px rgba(163, 163, 163, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(115, 115, 115, 0.15);
  filter: none;
  isolation: isolate;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (min-width: 640px) {
  .hero-badge {
    font-size: 0.85rem;
  }
}

.hero-badge-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: #a3a3a3;
  box-shadow: 0 0 12px rgba(163, 163, 163, 0.5), 0 0 4px rgba(212, 212, 212, 0.3);
  flex-shrink: 0;
}

.hero-title {
  max-width: 52rem;
  margin-bottom: 1.25rem;
  font-family: 'Kanit', sans-serif;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.85);
}

.hero-title br {
  display: block;
  content: '';
  margin-top: 0.15em;
}

.hero-title .text-primary,
.hero-title span {
  display: inline-block;
  line-height: 1.15;
}

.hero-description {
  max-width: 40rem;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.7;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95);
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}

.hero-underline {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: hsl(var(--primary));
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.hero-btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 3rem;
  padding: 0 1.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #262626 0%, #171717 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-explore:hover {
  opacity: 1;
  box-shadow: 0 4px 20px hsl(var(--primary) / 0.25);
}

.hero-btn-community {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  background: #000;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.hero-btn-community svg {
  color: hsl(var(--primary));
}

.hero-btn-community:hover {
  background: rgba(0, 0, 0, 0.85);
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
  width: 100%;
  max-width: 56rem;
  padding: 1.25rem 1.5rem 1rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.hero-trust-clients {
  flex-direction: row;
  align-items: center;
  gap: 0.875rem;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatar {
  width: 2rem;
  height: 2rem;
  margin-left: -0.45rem;
  border: 2px solid rgb(var(--background));
  border-radius: 9999px;
  background-size: cover;
  background-position: center;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-avatar-1 {
  background-image: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.hero-avatar-2 {
  background-image: linear-gradient(135deg, #ec4899, #f97316);
}

.hero-avatar-3 {
  background-image: linear-gradient(135deg, #525252, #737373);
}

.hero-avatar-count {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-trust-clients-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  text-align: left;
}

.hero-trust-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}

.hero-trust-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
}

.hero-trust-rating strong {
  color: #fff;
  font-weight: 700;
}

.hero-trust-value {
  font-family: 'Kanit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: hsl(var(--primary));
  text-shadow: 0 0 24px hsl(var(--primary) / 0.5), 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-trust-sublabel {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}

@media (min-width: 640px) {
  .hero-trust-value {
    font-size: 2.15rem;
  }

  .hero-trust-sublabel {
    font-size: 0.8rem;
  }

  .hero-trust-label,
  .hero-trust-rating {
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 28rem;
    padding: 2.5rem 0 2rem;
  }

  .hero-trust-bar {
    gap: 1.5rem 2rem;
  }

  .hero-trust-clients {
    width: 100%;
    justify-content: center;
  }
}

/* Navbar */
.site-navbar {
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand {
  justify-self: start;
  min-width: 0;
}

.navbar-search-wrapper {
  position: relative;
  justify-self: center;
  width: min(100%, 320px);
}

.navbar-actions {
  justify-self: end;
}

.navbar-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(85, 85, 85);
  pointer-events: none;
  z-index: 1;
}

.navbar-search-input {
  width: 100%;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;
  padding: 0 12px 0 38px !important;
  font-size: 13px !important;
  color: #fff !important;
  transition: 0.2s;
}

.navbar-search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: hsl(var(--primary) / 0.25) !important;
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.06);
}

.navbar-search-input::placeholder {
  color: rgb(85, 85, 85);
}

.nav-btn {
  position: relative;
  height: 36px;
  min-width: 36px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #ccc;
  text-decoration: none;
  transition: 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-btn-icon {
  width: 36px;
  padding: 0;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 2px;
  flex-shrink: 0;
}

.btn-cart {
  height: 36px;
  padding: 0 14px;
  background: rgb(38, 38, 38);
  border: none;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: 0.15s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.btn-cart:hover {
  background: rgb(23, 23, 23);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.navbar-notif-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: rgb(64, 64, 64);
  color: #fff;
  border-radius: 9999px;
  border: 2px solid rgb(13, 13, 13);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.site-navbar .relative > .nav-btn {
  position: relative;
}

.navbar-notif-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  background: rgb(13, 13, 13);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 50;
}

.navbar-notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-notif-title {
  font-size: 13px;
  font-weight: 600;
}

.navbar-notif-close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.15s;
}

.navbar-notif-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.navbar-notif-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  transition: background-color 0.15s;
}

.navbar-notif-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.navbar-notif-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navbar-notif-content-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
}

.navbar-notif-content-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767px) {
  .navbar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .navbar-search-wrapper {
    display: none;
  }
}

@media (min-width: 768px) {
  .navbar-mobile-search-btn {
    display: none !important;
  }
}

/* Category headers */
.category-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  margin: 1.5rem 0 2rem;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .category-header {
    gap: 1rem;
    margin: 2rem 0;
    padding: 0 1rem;
  }
}

.category-header-line {
  flex: 1 1 0%;
  min-width: 1.5rem;
  height: 1px;
}

.category-header-line-left {
  background: linear-gradient(to right, transparent, rgba(171, 171, 171, 0.35));
}

.category-header-line-right {
  background: linear-gradient(to left, transparent, rgba(171, 171, 171, 0.35));
}

.category-header-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(var(--foreground));
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .category-header-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .category-header-title {
    font-size: 1.5rem;
  }
}

.category-header-icon-img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
}

/* Ver mais button */
.category-view-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin: 3rem 0;
}

.category-view-more-line {
  width: 4rem;
  height: 1px;
  transition: background 0.2s ease;
}

@media (min-width: 640px) {
  .category-view-more-line {
    width: 6rem;
  }
}

.category-view-more-line-left {
  background: linear-gradient(to right, transparent, rgba(171, 171, 171, 0.3));
}

.category-view-more-line-right {
  background: linear-gradient(to left, transparent, rgba(171, 171, 171, 0.3));
}

.category-view-more:hover .category-view-more-line-left,
.category-view-more:hover .category-view-more-line-right {
  background: linear-gradient(to right, transparent, hsl(var(--primary) / 0.5));
}

.category-view-more:hover .category-view-more-line-right {
  background: linear-gradient(to left, transparent, hsl(var(--primary) / 0.5));
}

.category-view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 0.5rem;
  background: rgba(9, 9, 11, 0.8);
  color: rgba(250, 250, 250, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.category-view-more-btn:hover {
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
}

.category-view-more-count {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 0.375rem;
  background: hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 600;
}

/* SHYDA neon credit */
.footer-shyda-credit {
  margin-top: 0.25rem;
}

.footer-shyda-credit .lucide-link {
  filter: drop-shadow(0 0 6px hsl(var(--primary) / 0.65));
}

.shyda-neon {
  color: #d4d4d4;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.4),
    0 0 6px rgba(163, 163, 163, 0.5),
    0 0 12px rgba(115, 115, 115, 0.4);
  animation: shyda-neon-pulse 2.5s ease-in-out infinite alternate;
}

@keyframes shyda-neon-pulse {
  from {
    text-shadow:
      0 0 2px rgba(255, 255, 255, 0.35),
      0 0 6px rgba(163, 163, 163, 0.45),
      0 0 12px rgba(115, 115, 115, 0.35);
  }
  to {
    text-shadow:
      0 0 4px rgba(255, 255, 255, 0.5),
      0 0 10px rgba(163, 163, 163, 0.55),
      0 0 18px rgba(115, 115, 115, 0.45);
  }
}

/* Package card - gray accents */
.package-card-discount {
  background: #1a1a1a !important;
  color: #d4d4d4 !important;
  border: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* How it works */
.how-it-works {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.how-it-works__glow {
  position: absolute;
  top: -6rem;
  left: -4rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(48px);
  background: radial-gradient(circle, rgba(163, 163, 163, 0.1) 0%, transparent 68%);
}

.how-it-works__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.how-it-works__title-white {
  display: block;
  color: rgb(var(--foreground));
}

.how-it-works__title-accent {
  display: block;
  margin-top: 0.15rem;
  color: rgb(163, 163, 163);
}

.how-it-works__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(var(--muted-foreground));
  max-width: 32rem;
}

.how-it-works__list {
  margin-top: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.how-it-works__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.how-it-works__item:hover {
  border-color: rgba(163, 163, 163, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 28px rgba(0, 0, 0, 0.18);
}

.how-it-works__step {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(163, 163, 163, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: rgb(163, 163, 163);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.how-it-works__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgb(var(--foreground));
  margin: 0 0 0.35rem;
}

.how-it-works__item-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgb(var(--muted-foreground));
  margin: 0;
}

.how-it-works__content {
  padding-top: 0.25rem;
  min-width: 0;
}

.how-it-works__item-body {
  min-width: 0;
}

.how-it-works__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}

.how-it-works__illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
  padding: 0.5rem 0 1rem;
}

.how-it-works__character {
  display: block;
  width: auto;
  height: auto;
  max-width: min(80vw, 22rem);
  object-fit: contain;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: how-it-works-float 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.45));
}

@media (min-width: 1024px) {
  .how-it-works__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .how-it-works__illustration {
    order: 0;
    padding: 0;
    min-height: 28rem;
    justify-content: center;
  }

  .how-it-works__character {
    max-width: 22rem;
  }
}

@keyframes how-it-works-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  .how-it-works__character {
    animation: none;
  }
}
