/* ---- Page Load Fade-Up Animations ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-fade-down {
  opacity: 0;
  animation: fadeDown 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-d1  { animation-delay: 0.05s; }
.anim-d2  { animation-delay: 0.15s; }
.anim-d3  { animation-delay: 0.25s; }
.anim-d4  { animation-delay: 0.38s; }
.anim-d5  { animation-delay: 0.50s; }
.anim-d6  { animation-delay: 0.62s; }
.anim-d7  { animation-delay: 0.74s; }

/* ---- Custom Mobile Navbar Overlay ---- */
.mobile-navbar-overlay {
  visibility: hidden;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
  transition: opacity 0.28s ease, visibility 0.28s ease;
  opacity: 0;
  pointer-events: none;
}
.mobile-navbar-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.mobile-navbar-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85vw;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: #111114;
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-navbar-overlay.open .mobile-navbar-content {
  transform: translateX(0);
}
.mobile-navbar-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  padding: 0;
  transition: background 0.2s, color 0.2s;
}
.mobile-navbar-close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.mobile-navbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-navbar-header .navbar-brand {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.mobile-navbar-header .navbar-brand img {
  max-height: 1.6rem;
  border-radius: 0.3rem;
}
.mobile-navbar-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  padding-top: 0.5rem;
}
.mobile-navbar-links .nav-col-center,
.mobile-navbar-links .nav-col-actions {
  width: 100%;
  display: block;
  flex: none;
}
.mobile-navbar-links .nav-pill-bar {
  width: 100%;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  display: block;
}
.mobile-navbar-links .navbar-nav {
  flex-direction: column !important;
  gap: 0 !important;
  width: 100%;
}
.mobile-navbar-links .nav-item {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
/* Nav section label */
.mobile-nav-section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 1rem 0.75rem 0.35rem;
  display: block;
}
/* All link rows in mobile menu */
.mobile-navbar-links .nav-pill-link,
.mobile-navbar-links .nav-link,
.mobile-navbar-links .btn:not(.nav-icon-btn) {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-align: left;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
  padding: 0.75rem 0.9rem !important;
  border-radius: 0.5rem !important;
  color: rgba(255,255,255,0.8) !important;
  background: transparent !important;
  border: none !important;
  margin-bottom: 0.1rem;
  transition: background 0.15s, color 0.15s;
  white-space: normal;
}
.mobile-navbar-links .nav-pill-link:hover,
.mobile-navbar-links .nav-link:hover,
.mobile-navbar-links .btn:not(.nav-icon-btn):hover {
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
}
.mobile-navbar-links .nav-pill-link.active {
  color: var(--cl-accent) !important;
  background: rgba(34,197,94,0.08) !important;
}
.mobile-navbar-links .nav-pill-link svg {
  width: 1rem !important;
  height: 1rem !important;
  opacity: 0.6;
  flex-shrink: 0;
}
.mobile-navbar-links .nav-pill-link.active svg {
  opacity: 1;
  color: var(--cl-accent);
}
/* Divider before actions section */
.mobile-navbar-links .nav-col-actions {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
/* Icon buttons row (Discord etc.) */
.mobile-navbar-links .nav-icon-btn {
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 0.5rem !important;
}
/* Cart and discord on same row */
.mobile-navbar-links .nav-right-actions {
  flex-direction: column !important;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0 !important;
  padding-top: 0;
  width: 100%;
}
.mobile-navbar-links .nav-right-actions > .nav-item.cart {
  display: none !important;
}

body.mobile-navbar-open {
  overflow: hidden;
  touch-action: none;
  height: 100vh;
}
/* ============================================================
   ATHERIA-STYLE DARK GAMING THEME
   Accent: #22c55e (green)  |  Font: Inter
   ============================================================ */

/* ---------- Base ---------- */
::selection {
  background: rgba(34, 197, 94, 0.25);
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

body {
  background-color: var(--cl-background-primary);
  color: rgba(255, 255, 255, 0.87);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

/* All sections are transparent so the dark body background extends wall-to-wall */
section.component:not(.hero) {
  background-color: transparent !important;
  background-image: none !important;
}

/* Wrapper / page layout bg */
.flex-wrapper,
main,
.main-content {
  background-color: transparent !important;
}

/* ---------- Navbar ---------- */
.navbar {
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none !important;
  padding: 1rem 0 !important;
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: padding 0.3s ease, position 0.3s ease;
}

/* Scrolled state — floating pill */
.navbar.scrolled {
  background: transparent !important;
  border-bottom: none !important;
  padding: 0.6rem 1rem !important;
  position: fixed !important;
}

.navbar.scrolled .nav-container {
  background: rgba(10, 10, 13, 0.82) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 1rem !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(34,197,94,0.04) !important;
  padding-top: 0.4rem !important;
  padding-bottom: 0.4rem !important;
  transition: border-radius 0.3s, box-shadow 0.3s !important;
}

/* Push page content down so navbar doesn't overlap */
.flex-wrapper > div:first-child {
  padding-top: 0;
}

@media (max-width: 991px) {
  .flex-wrapper > div:first-child {
    padding-top: 4.5rem;
  }
}

/* 3-column flex container */
.navbar .container.nav-container {
  display: flex !important;
  align-items: center;
  padding-top: 0.35rem !important;
  padding-bottom: 0.35rem !important;
  gap: 1.5rem;
}

/* Column 1: Brand â€” flex:1, left-aligned */
.nav-col-brand {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.navbar .navbar-brand {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  gap: 0.55rem;
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar .navbar-brand img {
  max-height: 2rem;
  border-radius: 0.375rem;
}

/* Column 2: Center pill â€” desktop only (Bootstrap collapse hides this on mobile) */
@media (min-width: 992px) {
  .navbar .navbar-collapse {
    flex: 2 !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
}

.nav-col-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Column 3: Actions â€” flex:1, right-aligned */
.nav-col-actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Pill bar container */
.nav-pill-bar {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.25rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  position: relative;
}

/* Sliding green indicator pill */
.nav-pill-indicator {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  height: calc(100% - 0.5rem);
  border-radius: 100px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.28);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1), width 0.28s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.18s;
  z-index: 0;
}

.nav-pill-bar .navbar-nav {
  flex-direction: row !important;
  gap: 0.1rem;
}

.nav-pill-bar .nav-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.45) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 100px;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.nav-pill-bar .nav-pill-link svg {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.nav-pill-bar .nav-pill-link:hover {
  color: rgba(255, 255, 255, 0.85) !important;
}

.nav-pill-bar .nav-pill-link:hover svg {
  opacity: 0.85;
}

/* Active pill â€” text + icon color only; background handled by .nav-pill-indicator */
.nav-pill-bar .nav-pill-link.active,
.nav-pill-bar .nav-item a.nav-pill-link.active {
  background: none !important;
  border: none !important;
  color: var(--cl-accent) !important;
}

.nav-pill-bar .nav-pill-link.active svg {
  opacity: 1;
  color: var(--cl-accent);
}

/* Right actions row */
.nav-right-actions {
  flex-direction: row !important;
  align-items: center;
  gap: 0.625rem !important;
  flex-wrap: nowrap;
}

/* Beat the .navbar .navbar-collapse .navbar-nav { gap:0 } override */
.navbar .navbar-collapse .nav-right-actions {
  gap: 0.625rem !important;
}

.nav-right-actions > .nav-item {
  margin: 0 !important;
  padding: 0 !important;
}

/* Icon buttons (cart, discord) */
.nav-icon-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.55) !important;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  position: relative;
  flex-shrink: 0;
}

.nav-icon-btn .icon,
.nav-icon-btn svg {
  width: 1.1rem !important;
  height: 1.1rem !important;
  flex-shrink: 0;
  display: block;
}

.nav-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}

/* Discord â€” green to match site accent */
.nav-icon-btn-accent {
  background: rgba(34, 197, 94, 0.08) !important;
  border-color: rgba(34, 197, 94, 0.25) !important;
  color: var(--cl-accent) !important;
}

.nav-icon-btn-accent:hover {
  background: rgba(34, 197, 94, 0.15) !important;
  border-color: rgba(34, 197, 94, 0.4) !important;
  color: var(--cl-accent) !important;
}

/* Cart count badge */
.nav-icon-btn .count {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  background: var(--cl-accent);
  color: #000;
  font-size: 0.5rem;
  font-weight: 800;
  border-radius: 100%;
}

/* Login / My Account pill */
.nav-text-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 2.5rem !important;
  padding: 0 1.35rem !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.75) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: 100px !important;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-text-link:hover {
  background: rgba(34, 197, 94, 0.1) !important;
  border-color: rgba(34, 197, 94, 0.3) !important;
  color: var(--cl-accent) !important;
}

/* ---- Mobile navbar ---- */
@media (max-width: 991px) {
  .navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: #101014 !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.25), 0 1px 0 rgba(255,255,255,0.04);
    border-bottom: 1.5px solid rgba(255,255,255,0.08) !important;
    z-index: 1100;
    padding: 0.7rem 0.5rem 0.7rem 0.5rem !important;
  }

  .navbar .container.nav-container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    gap: 0.5rem;
  }

  .nav-col-brand {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.7rem;
  }

  .navbar .navbar-brand {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    gap: 0.5rem;
    padding: 0;
    border: 0;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
  }

  .navbar .navbar-brand img {
    max-height: 1.7rem;
    border-radius: 0.375rem;
  }

  .custom-mobile-menu-btn {
    margin-left: 0.5rem;
    background: rgba(255,255,255,0.07) !important;
    border-radius: 0.7rem !important;
    border: none;
    width: 2.7rem;
    height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.13);
  }

  .custom-mobile-menu-btn .navbar-toggler-icon {
    width: 1.7rem;
    height: 1.7rem;
    background-size: 1.7rem 1.7rem;
  }

}

/* Scroll detection script injected below navbar */

/* Override pro.css navbar gap */
.navbar .navbar-collapse .navbar-nav:not(.nav-right-actions) {
  gap: 0 !important;
}

@media screen and (min-width: 992px) {
  .navbar .navbar-collapse .navbar-nav:not(.nav-right-actions) {
    gap: 0 !important;
  }
}

.navbar .currency-selector select,
.navbar .currency-selector .choices {
  font-size: 0.7rem;
}

/* ---------- Hero â€” Override pro.css base ---------- */
section.hero.component {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-image: none !important;
  min-height: 100vh !important;
  overflow: hidden;
}

/* Dark overlay + left-biased darkening */
section.hero.component .bg-overlay {
  position: absolute;
  inset: 0;
  background: none !important;
  z-index: 0;
}

/* Green radial atmosphere behind content */
section.hero.component::after {
  content: '';
  position: absolute;
  left: -5%;
  top: 20%;
  width: 55%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.055) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Plexus canvas â€” sits above bg-overlay, below content */
.hero-plexus {
  display: none;
}

/* Full-page plexus canvas (injected into body via master.njk) */
#site-plexus {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

/* Two-column hero row */
section.hero.component > .container.hero-row {
  position: relative;
  z-index: 2;
  padding: 9rem 1.25rem 5rem !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 5rem;
  width: 100%;
  max-width: 1320px;
}

/* Left content column */
.hero-content-col {
  flex: 1 1 55%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Right visual column */
.hero-visual-col {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Brand label badge */
.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: var(--cl-accent);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-badge-dot {
  width: 0.42rem;
  height: 0.42rem;
  background: var(--cl-accent);
  border-radius: 100%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--cl-accent);
}

/* Hero headline */
section.hero.component .hero-content-col h1 {
  font-size: clamp(3rem, 6.5vw, 5.75rem) !important;
  font-weight: 900 !important;
  line-height: 1.0 !important;
  letter-spacing: -0.03em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

/* Subtitle */
.hero-subtitle-text {
  font-size: 1.05rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 1.65 !important;
  margin-bottom: 2rem !important;
  max-width: 460px;
}

/* Override pro.css link margin */
section.hero.component .hero-content-col a {
  margin-bottom: 0 !important;
}

/* Feature checklist 2-column grid */
.hero-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 2rem;
  margin-bottom: 2rem;
}

.hero-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.hero-feature-item svg {
  width: 0.8rem;
  height: 0.8rem;
  color: #000;
  flex-shrink: 0;
  background: var(--cl-accent);
  padding: 0.2rem;
  border-radius: 100%;
  box-sizing: content-box;
}

/* CTA buttons row */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

a.btn.hero-btn-primary,
button.btn.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 2rem;
  height: 3rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  box-shadow: 0 4px 24px rgba(34, 197, 94, 0.3);
}

a.btn.hero-btn-primary svg,
button.btn.hero-btn-primary svg {
  width: 0.85rem;
  height: 0.85rem;
}

a.btn.hero-btn-primary:hover,
button.btn.hero-btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.45);
  color: #000000 !important;
}

a.btn.hero-btn-dashboard,
button.btn.hero-btn-dashboard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 1.75rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
}

a.btn.hero-btn-dashboard svg,
button.btn.hero-btn-dashboard svg {
  width: 0.85rem;
  height: 0.85rem;
}

a.btn.hero-btn-dashboard:hover,
button.btn.hero-btn-dashboard:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: #ffffff !important;
}

/* Search pill */
.hero-search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.65rem 1.1rem;
  width: 100%;
  max-width: 420px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.hero-search:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.5);
}

/* Stats row */
section.hero.component .stats-wrapper {
  margin-top: 0;
}

section.hero.component .hero-content-col .stats {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.75rem;
  padding: 1rem 1.75rem !important;
  display: inline-flex;
  gap: 0;
  max-width: none !important;
  backdrop-filter: blur(12px);
}

section.hero.component .hero-content-col .stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 1.75rem;
}

section.hero.component .hero-content-col .stats div:first-child {
  padding-left: 0;
}

section.hero.component .hero-content-col .stats div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  margin-right: 0;
  padding-right: 1.75rem;
}

section.hero.component .hero-content-col .stats div .value {
  font-size: 1.35rem !important;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  line-height: 1.2;
}

section.hero.component .hero-content-col .stats div .value svg {
  width: 1rem;
  height: 1rem;
  color: var(--cl-accent);
}

section.hero.component .hero-content-col .stats div .label {
  font-size: 0.58rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.2rem;
}

/* 2x2 product tile grid */
.hero-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hero-product-tile {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.18s, border-color 0.18s;
}

.hero-product-tile:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-tile-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
}

.hero-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0.75rem 0.6rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

/* Side image fallback */
.hero-side-img img {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* YouTube embed */
.hero-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.875rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.hero-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile hero */
@media (max-width: 991px) {
  section.hero.component > .container.hero-row {
    flex-direction: column !important;
    padding: 7rem 1rem 3rem !important;
    gap: 2.5rem;
  }

  .hero-content-col {
    flex: 1 1 100%;
  }

  .hero-visual-col {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  section.hero.component .hero-content-col h1 {
    font-size: clamp(2.5rem, 8vw, 4rem) !important;
  }

  .hero-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
  }
}

@media (max-width: 575px) {
  section.hero.component > .container.hero-row {
    padding: 6rem 1rem 2.5rem !important;
  }

  section.hero.component .hero-content-col h1 {
    font-size: 2.5rem !important;
  }

  .hero-features-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  a.btn.hero-btn-primary,
  button.btn.hero-btn-primary,
  a.btn.hero-btn-dashboard,
  button.btn.hero-btn-dashboard {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Section Titles ---------- */
.section-title {
  justify-content: center !important;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title h1,
.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  color: #ffffff;
  margin-bottom: 0.75rem;
  display: block;
}

/* Accent underline on section headings */
.section-title h1::after,
.section-title h2::after {
  content: '';
  display: block;
  width: 2.25rem;
  height: 2px;
  background: var(--cl-accent);
  border-radius: 2px;
  margin: 0 auto;
}

.section-title p {
  color: rgba(255, 255, 255, 0.35);
  border-left: none !important;
  padding-left: 0 !important;
}

.section-subtitle {
  justify-content: center !important;
  text-align: center;
  margin-top: 0.2rem;
  margin-bottom: 2.5rem;
}

.section-subtitle p {
  color: rgba(255, 255, 255, 0.38);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Add spacing between sections ---------- */
section.component.py-20 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

/* ---------- Product Cards ---------- */
.products.row {
  justify-content: center;
  row-gap: 0.875rem;
}

/* Card shell */
.products .card {
  background: linear-gradient(160deg, rgba(18, 18, 26, 1) 0%, rgba(10, 10, 14, 1) 60%) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 0.875rem;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  will-change: transform;
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(0deg) rotateY(0deg) scale(1);
}

.products .card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.7), transparent);
  opacity: 0.22;
  transition: opacity 0.3s;
  z-index: 2;
}

.products .card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 110%, rgba(34, 197, 94, 0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
  pointer-events: none;
}

/* 3D tilt is driven by JS â€” only shadow on hover as fallback */
.products .card:hover {
  border-color: rgba(34, 197, 94, 0.38) !important;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.75),
              0 0 0 1px rgba(34, 197, 94, 0.14),
              0 0 50px rgba(34, 197, 94, 0.08);
}

.products .card:hover::before {
  opacity: 1;
}

.products .card:hover::after {
  opacity: 1;
}

/* Image area */
.products .card .card-img-top,
.products .card .card-img-top.aspect-product-card-image {
  position: relative !important;
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.products .card .card-img-top img,
.products .card .card-img-top .object-product-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  aspect-ratio: unset !important;
  transition: transform 0.4s;
}

.products .card:hover .card-img-top img {
  transform: scale(1.04);
}

/* No bottom fade on image */

/* Overlay button */
.products .card .card-img-top .overlay {
  z-index: 3;
}

.products .card .card-img-top .overlay .btn {
  background: var(--cl-accent) !important;
  color: #000 !important;
  border: none !important;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 0.35rem;
  transition: filter 0.18s;
}

.products .card .card-img-top .overlay .btn:hover {
  filter: brightness(1.12);
}

/* Badges (category tags) â€“ hidden on cards, shown on product page only */
.products .card .card-img-top .badges {
  display: none;
}

.products .card .card-img-top .badges div {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  border-radius: 0.3rem;
  padding: 0.25rem 0.55rem;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

/* Placeholder */
.products .card .product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.025);
}

/* Card body */
.products .card .card-body {
  padding: 0.75rem 0.9rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
  position: relative;
  z-index: 1;
}

/* Price label â€” only renders in template when it's a range */
.products .card .info {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.35rem;
}

.products .card .info .price-label {
  font-size: 0.525rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  margin-bottom: 0.15rem;
  display: block;
}

.products .card .info .price {
  font-size: 1rem;
  color: var(--cl-accent);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0;
}

.products .card .info .price s {
  font-size: 0.75rem;
  font-weight: 500;
}

/* In-stock / out-of-stock text colours */
.products .card .info p.text-primary {
  font-size: 0.62rem !important;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #22c55e !important;   /* default = in stock green */
  margin: 0.25rem 0 0;
}

/* Out of stock â€” red */
.products .card .info p.text-primary:has(> span:only-child:not(.stock-unlimited)):not(:has(.stock-unlimited)) {
  /* fallback handled below via Nunjucks class */
}

/* Stock pill */
.products .card .info .stock-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 0.25rem 0 0;
}

.products .card .info .stock-tag.in  { color: #22c55e; }
.products .card .info .stock-tag.out { color: #f87171; }

.products .card .info .stock-tag .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.products .card .info .stock-tag.in  .dot { background: #22c55e; box-shadow: 0 0 5px #22c55e88; }
.products .card .info .stock-tag.out .dot { background: #f87171; box-shadow: 0 0 5px #f8717188; }

.products .card .info .stock-unlimited svg {
  width: 0.65rem;
  height: 0.65rem;
}

/* Product name */
.products .card .card-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin: 0;
  line-height: 1.35;
  order: -1;
  margin-bottom: 0.3rem;
}

/* ---------- Features ---------- */
.features.component {
  max-width: 1200px !important;
}

.features .list {
  justify-content: center;
  row-gap: 1.25rem;
}

.features .list > div {
  display: flex;
}

.features .list .feature {
  background: linear-gradient(145deg, rgba(16, 16, 16, 1) 0%, rgba(10, 10, 10, 1) 65%) !important;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  text-align: left;
  align-items: flex-start;
  padding: 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: inset 3px 0 0 rgba(34, 197, 94, 0.25);
}

/* Top accent bar on hover */
.features .list .feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cl-accent), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.features .list .feature:hover::before {
  opacity: 1;
}

.features .list .feature:hover {
  border-color: rgba(34, 197, 94, 0.30);
  background: linear-gradient(145deg, rgba(18, 18, 18, 1) 0%, rgba(12, 12, 12, 1) 65%) !important;
  box-shadow: inset 3px 0 0 rgba(34, 197, 94, 0.75),
              0 20px 55px rgba(0, 0, 0, 0.5),
              -4px 0 25px rgba(34, 197, 94, 0.07);
}

/* Watermark icon */
.features .list .feature .feat-watermark {
  position: absolute;
  bottom: -0.75rem;
  right: 0.5rem;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.features .list .feature .feat-watermark i {
  font-size: 7rem !important;
  opacity: 0.06;
  color: #ffffff !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  display: block !important;
}

/* Icon box */
.features .list .feature i {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 0.65rem;
  color: var(--cl-accent) !important;
  font-size: 1.1rem !important;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.14);
}

.features .list .feature:hover i {
  background: rgba(34, 197, 94, 0.20);
  border-color: rgba(34, 197, 94, 0.50);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.32);
}

.features .list .feature svg {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--cl-accent);
  margin-bottom: 1.25rem;
}

.features .list .feature .title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #ffffff;
  margin-bottom: 0.625rem;
  position: relative;
  z-index: 1;
}

.features .list .feature .description {
  color: rgba(255, 255, 255, 0.50);
  font-size: 0.8125rem;
  line-height: 1.75;
  padding: 0;
  position: relative;
  z-index: 1;
}

/* ---------- Feedbacks / Reviews ---------- */
.feedbacks-wrapper .card,
.feedback-card,
section.py-20 .row {
  justify-content: center;
}

/* Review card â€” matches feature card aesthetic */
.feedbacks-wrapper .card,
.feedback-card,
section.py-20 .col-12 .card,
.reviews-card-wrap .testimonial {
  background: linear-gradient(145deg, rgba(16,16,16,1) 0%, rgba(10,10,10,1) 65%) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 1rem !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
  box-shadow: inset 3px 0 0 rgba(34,197,94,0.25) !important;
  margin-bottom: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.feedbacks-wrapper .card:hover,
.feedback-card:hover,
section.py-20 .col-12 .card:hover,
.reviews-card-wrap .testimonial:hover {
  border-color: rgba(34,197,94,0.3) !important;
  box-shadow: inset 3px 0 0 rgba(34,197,94,0.75),
              0 20px 55px rgba(0,0,0,0.5),
              -4px 0 25px rgba(34,197,94,0.07) !important;
}

/* Quote icon â€” styled like feature icon box */
.reviews-card-wrap .testimonial .header svg.quote,
.testimonial .header svg.quote {
  width: 2.5rem !important;
  height: 2.5rem !important;
  color: var(--cl-accent) !important;
  background: rgba(34,197,94,0.1) !important;
  border: 1px solid rgba(34,197,94,0.28) !important;
  border-radius: 0.65rem !important;
  padding: 0.5rem !important;
  box-shadow: 0 0 14px rgba(34,197,94,0.14) !important;
  flex-shrink: 0 !important;
}

/* Stars */
.testimonial .stars {
  display: flex !important;
  align-items: center !important;
  gap: 0.1rem !important;
}

.testimonial .stars svg {
  width: 0.9rem !important;
  height: 0.9rem !important;
}

/* Header layout */
.testimonial .header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1.25rem 1.5rem 0.875rem !important;
  margin-bottom: 0 !important;
}

/* Message text */
.testimonial .content {
  padding: 0 1.5rem 1rem !important;
}

.testimonial .content .message p,
.testimonial .content .message span {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* Hide reply block inside marquee cards so all cards stay the same height */
.reviews-card-wrap .testimonial .content .reply {
  display: none !important;
}

/* Footer bar */
.reviews-card-wrap .testimonial .footer,
.testimonial .footer {
  background: rgba(0,0,0,0.2) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.72rem !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 0 0 1rem 1rem !important;
}

/* Product name */
.testimonial .footer .items {
  color: rgba(255,255,255,0.5) !important;
  font-weight: 600 !important;
  font-size: 0.72rem !important;
}

/* Date */
.testimonial .footer .date {
  color: var(--cl-accent) !important;
  font-weight: 700 !important;
  opacity: 0.7;
}

/* ---------- Socials ---------- */
.socials {
  background: rgba(255, 255, 255, 0.015) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.socials .section-title {
  justify-content: center !important;
  text-align: center;
}

.socials .list .social {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  transition: border-color 0.22s, background 0.22s;
}

.socials .list .social:hover {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.04) !important;
  color: var(--cl-accent);
}

/* ---------- Announcement ---------- */
.announcement {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Discord Community Banner ---------- */
.discord-banner-wrap {
  background: #000000;
  padding: 2.5rem 0;
}

.discord-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.875rem;
  padding: 1.75rem 2rem;
}

.discord-banner-text {
  flex: 1;
}

.discord-banner-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

.discord-banner-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  max-width: 42ch;
  line-height: 1.6;
}

.discord-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #5865F2;
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: filter 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(88,101,242,0.35);
}

.discord-banner-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(88,101,242,0.5);
}

/* ============================================================
   BENTO FEATURES GRID
   ============================================================ */

/* ---------- Grid layout ---------- */
.bento-features {
  max-width: 1200px !important;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 420px 310px;
  gap: 1rem;
}

/* ---------- Card base ---------- */
.bento-card {
  border-radius: 1.1rem;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(160deg, #101010 0%, #0a0a0a 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
  min-height: 0;
}

.bento-card:hover {
  border-color: rgba(var(--cl-accent-rgb), 0.30);
  box-shadow: 0 20px 55px rgba(0,0,0,0.55), 0 0 0 1px rgba(var(--cl-accent-rgb), 0.08);
}

/* ---------- Visual area (top, animated) ---------- */
.bento-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #080808;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  min-height: 0;
}

/* ---------- Footer area (text) ---------- */
.bento-footer {
  padding: 1.1rem 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex-shrink: 0;
}

.bento-feat-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.bento-feat-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ---------- Overlay helper ---------- */
.bento-overlay-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* ---------- Glow blobs ---------- */
.bento-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.35;
}

.bento-glow--green {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(var(--cl-accent-rgb), 0.7) 0%, transparent 70%);
}

.bento-glow--indigo {
  width: 220px;
  height: 120px;
  background: radial-gradient(circle, rgba(99,102,241,0.55) 0%, transparent 70%);
}

.bento-glow--white {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
}

/* ============================================================
   CARD 1 — Instant Delivery: scrolling code bg + check circle
   ============================================================ */

.bento-code-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.22;
}

.bento-code-gradient-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3rem;
  background: linear-gradient(to bottom, #080808, transparent);
  z-index: 2;
  pointer-events: none;
}

.bento-code-gradient-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3rem;
  background: linear-gradient(to top, #080808, transparent);
  z-index: 2;
  pointer-events: none;
}

@keyframes bento-code-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.bento-code-scroll {
  animation: bento-code-scroll 10s linear infinite;
  padding: 1rem 1.25rem;
  will-change: transform;
}

.bento-code-line {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.7rem;
  line-height: 1.85;
  white-space: nowrap;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.6);
}

.bcc-kw  { color: rgba(129,140,248,0.9); }
.bcc-var { color: rgba(255,255,255,0.75); }
.bcc-val { color: rgba(var(--cl-accent-rgb),0.95); }

/* ---- Progress ring (Instant Delivery) ---- */
@property --bento-pct {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

.bento-progress-wrap {
  position: relative;
  width: 5rem;
  height: 5rem;
  z-index: 2;
  flex-shrink: 0;
}

.bento-prog-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.bento-prog-track {
  stroke: rgba(255,255,255,0.08);
  stroke-width: 3;
  fill: rgba(var(--cl-accent-rgb), 0.05);
}

.bento-prog-ring {
  stroke: var(--cl-accent);
  stroke-width: 3;
  fill: rgba(var(--cl-accent-rgb), 0.06);
  stroke-dasharray: 188.5;
  stroke-dashoffset: 188.5;
  stroke-linecap: round;
  animation: bento-ring-fill 6s ease-in-out infinite;
}

.bento-prog-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-prog-pct {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--cl-accent);
  --bento-pct: 0;
  animation: bento-count-up 6s linear infinite;
  counter-reset: pct var(--bento-pct);
}

.bento-prog-pct::after {
  content: counter(pct) "%";
}

@keyframes bento-ring-fill {
  0%, 2%    { stroke-dashoffset: 188.5; }
  50%       { stroke-dashoffset: 0; }
  75%       { stroke-dashoffset: 0; }
  92%, 100% { stroke-dashoffset: 188.5; }
}

@keyframes bento-count-up {
  0%, 2%    { --bento-pct: 0; }
  50%       { --bento-pct: 100; }
  75%       { --bento-pct: 100; }
  92%, 100% { --bento-pct: 0; }
}

@keyframes bento-tag-appear {
  0%, 48%        { opacity: 0; transform: translateY(8px) scale(0.92); }
  60%, 74%       { opacity: 1; transform: translateY(0) scale(1); }
  90%, 100%      { opacity: 0; transform: translateY(8px) scale(0.92); }
}

.bento-delivered-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: bento-tag-appear 6s ease-in-out infinite;
}

.bento-tag-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bento-tag-value {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cl-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   CARD 2 — Secure Payments: dual-row marquee
   ============================================================ */

.bento-pay-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  overflow: hidden;
}

@keyframes bento-marquee-fwd {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes bento-marquee-rev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.bento-marquee-row {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.bento-marquee-inner {
  display: flex;
  gap: 0.5rem;
  width: max-content;
  will-change: transform;
}

.bento-marquee-inner.bento-marquee-fwd { animation: bento-marquee-fwd 40s linear infinite; }
.bento-marquee-inner.bento-marquee-rev { animation: bento-marquee-rev 40s linear infinite; }

/* Brand payment tiles — all white background */
.bento-pay-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 2.5rem;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.bento-pay-tile--visa {
  font-size: 0.9rem;
  font-weight: 900;
  font-style: italic;
  color: #1a1f71;
  letter-spacing: -0.03em;
}

.bento-mc-l,
.bento-mc-r {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  position: absolute;
}

.bento-mc-l {
  background: #eb001b;
  left: 50%;
  transform: translateX(-70%);
}

.bento-mc-r {
  background: #f79e1b;
  left: 50%;
  transform: translateX(-30%);
}

.bento-marquee-fade-l,
.bento-marquee-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 3;
  pointer-events: none;
}

.bento-marquee-fade-l {
  left: 0;
  background: linear-gradient(to right, #080808, transparent);
}

.bento-marquee-fade-r {
  right: 0;
  background: linear-gradient(to left, #080808, transparent);
}

/* ============================================================
   CARDS 3 & 6 — Ping rings + icon pill
   ============================================================ */

@keyframes bento-ping {
  0%        { transform: translate(-50%,-50%) scale(1);   opacity: 0.8; }
  75%, 100% { transform: translate(-50%,-50%) scale(2.1); opacity: 0; }
}

.bento-ping-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  pointer-events: none;
}

.bento-ping-ring--lg {
  width: 120px;
  height: 120px;
  animation: bento-ping 3s cubic-bezier(0,0,0.2,1) infinite;
}

.bento-ping-ring--md {
  width: 85px;
  height: 85px;
  animation: bento-ping 3s cubic-bezier(0,0,0.2,1) 1s infinite;
}

.bento-ping-ring--accent {
  border-color: rgba(var(--cl-accent-rgb),0.45);
}

.bento-icon-pill {
  position: relative;
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-icon-pill i {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.85);
}

.bento-icon-pill--lg {
  width: 4rem;
  height: 4rem;
}

.bento-icon-pill--lg i {
  font-size: 1.6rem;
}

.bento-icon-pill--accent {
  background: rgba(var(--cl-accent-rgb),0.15);
  border-color: rgba(var(--cl-accent-rgb),0.5);
}

.bento-icon-pill--accent i {
  color: var(--cl-accent);
}

/* ============================================================
   CARD 4 — No Hidden Fees: ghosted watermark text
   ============================================================ */

.bento-nofees-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
  color: rgba(255,255,255,0.055);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  padding: 1rem;
}

/* ============================================================
   CARD 5 — Dashboard mockup
   ============================================================ */

.bento-dash-mockup {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: -1.5rem;
  bottom: -1.5rem;
  background: #0d0d10;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0.75rem 0 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: -4px -4px 30px rgba(0,0,0,0.4);
}

.bento-dash-topbar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #080808;
  flex-shrink: 0;
}

.bento-dash-brand {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cl-accent);
}

.bento-dash-sep {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.25);
}

.bento-dash-page {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

.bento-dash-body {
  flex: 1;
  display: flex;
  min-height: 0;
}

.bento-dash-sidebar {
  width: 4.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  background: #0a0a0c;
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex-shrink: 0;
}

.bento-dash-nav {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  padding: 0.4rem 0.6rem;
  border-radius: 0.3rem;
  margin: 0 0.35rem;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bento-dash-nav--active {
  background: rgba(var(--cl-accent-rgb),0.12);
  color: var(--cl-accent);
}

.bento-dash-content {
  flex: 1;
  padding: 0.75rem 0.9rem;
  min-width: 0;
}

.bento-dash-heading {
  font-size: 0.7rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}

.bento-dash-sub {
  font-size: 0.52rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.75rem;
}

.bento-dash-stats {
  display: flex;
  gap: 0.6rem;
}

.bento-dash-stat {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.4rem;
  padding: 0.45rem 0.55rem;
}

.bento-dash-stat-n {
  font-size: 0.85rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.bento-dash-stat-l {
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 0.1rem;
}

/* ============================================================
   RESPONSIVE — stack on mobile
   ============================================================ */

@media (max-width: 1023px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 300px);
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 280px);
  }

  .bento-nofees-bg {
    font-size: 2.5rem;
  }
}

@media (max-width: 575px) {
  .discord-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* ---------- Footer ---------- */
footer.footer {
  background: #000000 !important;
  border-top: none !important;
  padding-bottom: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3rem 0 2rem;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-inner {
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
  }
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.footer-brand-logo img {
  max-height: 1.75rem;
}

.footer-brand-name {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.footer-brand-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 1rem;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.375rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.footer-social-link:hover {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: var(--cl-accent);
}

.footer-social-link svg {
  width: 0.85rem;
  height: 0.85rem;
}

.footer-col-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 1rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links-list a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-links-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.125rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.22);
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Global Buttons ---------- */
.btn-primary {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border-radius: 0.4rem;
  color: #000 !important;
}

.btn-primary:hover {
  color: #000 !important;
  filter: brightness(1.08);
}

/* ---------- Cards / Modals ---------- */
.modal-content {
  background: #0d0d10 !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-header {
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.modal-footer {
  border-top-color: rgba(255, 255, 255, 0.07);
}

/* ---------- Forms ---------- */
.form-control,
.form-select {
  background-color: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

.form-control::placeholder { color: rgba(255, 255, 255, 0.28); }

.form-control:focus,
.form-select:focus {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border-color: var(--cl-accent) !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12) !important;
}

/* ---------- Search Modal fix ---------- */
.hero .search-modal .searchbar input {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* ---------- Chips / tabs (product categories) ---------- */
.chips .btn {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
}

/* ---------- Misc ---------- */
.bg-image {
  filter: brightness(0.4);
}

/* Customer dashboard sidebar, pages */
.card {
  background: var(--cl-background-secondary);
  border-color: rgba(255, 255, 255, 0.06);
}

/* Product page styles */
.product-wrapper .badges div,
.product-wrapper .badges a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
}

/* ============================================================
   PRODUCT PAGE â€” Full Redesign
   ============================================================ */

.prod-page-container {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

/* â”€â”€ TOP ROW â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-top-row {
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

/* â”€â”€ IMAGE COL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-image-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(34,197,94,0.06),
              0 32px 64px rgba(0,0,0,0.55),
              0 0 80px rgba(34,197,94,0.04);
}

.prod-main-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.prod-image-wrap:hover .prod-main-img {
  transform: scale(1.025);
}

.prod-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,0.025);
  color: rgba(255,255,255,0.2);
}

.prod-thumbnails {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.prod-thumbnails button {
  width: 4rem;
  height: 2.75rem;
  border: 2px solid transparent;
  border-radius: 0.375rem;
  overflow: hidden;
  padding: 0;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: border-color 0.18s;
  flex-shrink: 0;
}

.prod-thumbnails button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-thumbnails button.active,
.prod-thumbnails button:hover {
  border-color: var(--cl-accent);
}

/* â”€â”€ INFO COL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-info-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badges */
.prod-badges-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.875rem;
}

.prod-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0;
}

.prod-badges-row .prod-live-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0;
}

.prod-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.prod-badge-cat {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: var(--cl-accent);
}

/* Divider */
.prod-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(34,197,94,0.35), rgba(255,255,255,0.06), transparent);
  margin: 0.75rem 0 1rem;
}

/* Title */
.prod-title {
  font-size: clamp(1.4rem, 2.75vw, 2.1rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.12;
  margin: 0 0 0.35rem;
}

/* Price row */
.prod-price-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
  padding: 0.875rem 1rem;
  background: rgba(34,197,94,0.04);
  border: 1px solid rgba(34,197,94,0.12);
  border-radius: 0.65rem;
}

.prod-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  flex: 1;
}

.prod-price-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cl-accent);
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(34,197,94,0.35);
}

/* Stock badges */
.prod-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.prod-stock-in {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--cl-accent);
}

.prod-stock-out {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

.prod-stock-hold {
  background: rgba(234,179,8,0.12);
  border: 1px solid rgba(234,179,8,0.3);
  color: #fbbf24;
}

.prod-stock-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* Status row */
.prod-status-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.prod-status-dot-pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

/* Live stats */
.prod-live-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.prod-live-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.35rem;
  padding: 0.3rem 0.65rem;
}

/* Section labels */
.prod-section-label {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 0.5rem;
}

/* â”€â”€ VARIANT SELECTOR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-variants {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.prod-variant-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.09);
  border-radius: 0.65rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
  gap: 0.75rem;
}

.prod-variant-btn:hover:not(.active):not(:disabled) {
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.04);
}

.prod-variant-btn.active {
  border-color: var(--cl-accent) !important;
  background: rgba(34,197,94,0.07) !important;
  box-shadow: inset 0 0 0 1px rgba(34,197,94,0.12), 0 0 18px rgba(34,197,94,0.06);
}

.prod-variant-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pv-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.pv-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.pv-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  display: block;
}

.pv-stock {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cl-accent);
  text-transform: uppercase;
}

.pv-stock.out {
  color: #f87171;
}

.pv-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  flex-shrink: 0;
}

.pv-price {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
}

.pv-slash {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
}

.pv-check {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  color: var(--cl-accent);
}

/* â”€â”€ QUANTITY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-quantity {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.qty-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-input {
  width: 3rem;
  height: 2.4rem;
  background: transparent !important;
  border: none !important;
  border-left: 1px solid rgba(255,255,255,0.08) !important;
  border-right: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 0 !important;
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #ffffff;
  outline: none !important;
  box-shadow: none !important;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.prod-volume-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin-top: -0.75rem;
  margin-bottom: 1rem;
}

/* â”€â”€ BUY BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-buy-buttons {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.prod-btn-buy {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3.25rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 0.6rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000 !important;
  cursor: pointer;
  transition: filter 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(34,197,94,0.25);
}

.prod-btn-buy:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.35);
}

.prod-btn-buy:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.prod-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 0.6rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  flex-shrink: 0;
}

.prod-btn-cart:hover:not(:disabled) {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.25);
  color: #ffffff;
}

.prod-btn-cart:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* â”€â”€ SECURE PAYMENT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-secure-payment {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.prod-secure-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.prod-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 1.6rem;
  padding: 0 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.3rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: background 0.15s, color 0.15s;
}

/* â”€â”€ INLINE UPSELLS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â”€â”€ UPSELL CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-upsells {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.prod-upsells-title {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.prod-upsells-title::before {
  content: '';
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--cl-accent);
  box-shadow: 0 0 6px var(--cl-accent);
}

.prod-upsells-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* --- Horizontal upsell card --- */
.prod-upsells-grid .card {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  margin: 0 !important;
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 0.65rem !important;
  overflow: hidden !important;
  text-decoration: none !important;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s !important;
  padding: 0 !important;
  gap: 0 !important;
  box-shadow: none !important;
}

.prod-upsells-grid .card:hover {
  border-color: rgba(34,197,94,0.35) !important;
  background: rgba(34,197,94,0.04) !important;
  box-shadow: 0 0 0 1px rgba(34,197,94,0.1) !important;
}

/* Thumbnail wrapper */
.prod-upsells-grid .card .card-img-top,
.prod-upsells-grid .card .card-img-top.aspect-product-card-image {
  width: 4.5rem !important;
  min-width: 4.5rem !important;
  height: auto !important;
  aspect-ratio: 1 !important;
  border-radius: 0 !important;
  border-right: 1px solid rgba(255,255,255,0.07) !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  position: relative !important;
  background: rgba(0,0,0,0.3) !important;
}

.prod-upsells-grid .card .card-img-top img,
.prod-upsells-grid .card .card-img-top.aspect-product-card-image img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  aspect-ratio: unset !important;
}

.prod-upsells-grid .card .card-img-top .badges {
  display: none !important;
}

.prod-upsells-grid .card .card-img-top .product-img-placeholder {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  aspect-ratio: unset !important;
  width: 100% !important;
  height: 100% !important;
}

/* Card body */
.prod-upsells-grid .card .card-body {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 0.6rem 0.85rem !important;
  flex: 1 !important;
  min-width: 0 !important;
  gap: 0.2rem !important;
}

/* Name â€” top, prominent */
.prod-upsells-grid .card .card-title {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.9) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin: 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.3 !important;
  order: -1 !important;
}

/* Info row: price + stock */
.prod-upsells-grid .card .card-body .info {
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
}

.prod-upsells-grid .card .price {
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  color: var(--cl-accent) !important;
  white-space: nowrap !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.prod-upsells-grid .card .price s {
  font-weight: 400 !important;
  color: rgba(255,255,255,0.3) !important;
  font-size: 0.7rem !important;
}

.prod-upsells-grid .card .stock-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  font-size: 0.58rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 0.18rem 0.5rem !important;
  border-radius: 100px !important;
  line-height: 1 !important;
}

.prod-upsells-grid .card .stock-tag.in {
  background: rgba(34,197,94,0.1) !important;
  border: 1px solid rgba(34,197,94,0.25) !important;
  color: var(--cl-accent) !important;
}

.prod-upsells-grid .card .stock-tag.out {
  background: rgba(248,113,113,0.1) !important;
  border: 1px solid rgba(248,113,113,0.25) !important;
  color: #f87171 !important;
}

.prod-upsells-grid .card .stock-tag .dot {
  display: none !important;
}

.pay-icon:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

/* â”€â”€ BOTTOM PANELS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-panels-row {
  margin-bottom: 0;
}

.prod-desc-section {
  margin-bottom: 3rem;
}

/* â”€â”€ BELOW-IMAGE TABS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.prod-below-image {
  margin-top: 1rem;
  background: linear-gradient(145deg, rgba(16,16,16,1) 0%, rgba(10,10,10,1) 65%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: inset 3px 0 0 rgba(34,197,94,0.2);
}

.prod-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.2);
}

.prod-tab-btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.prod-tab-btn:hover {
  color: rgba(255,255,255,0.7);
}

.prod-tab-btn.active {
  color: #ffffff;
  border-bottom-color: var(--cl-accent);
}

.prod-tab-content {
  padding: 0;
}

.prod-panel {
  background: linear-gradient(160deg, rgba(16,16,22,1) 0%, rgba(10,10,14,1) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  height: 100%;
}

.prod-panel-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.prod-panel-header svg {
  color: var(--cl-accent);
  opacity: 0.8;
  flex-shrink: 0;
}

.prod-panel-content {
  padding: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

.prod-panel-content p,
.prod-panel-content li {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
}

.prod-panel-content ul,
.prod-panel-content ol {
  padding-left: 1.25rem;
}

.prod-panel-content h1,
.prod-panel-content h2,
.prod-panel-content h3,
.prod-panel-content h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.prod-panel-content a {
  color: var(--cl-accent);
  text-decoration: none;
}

.prod-panel-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
  .prod-page-container {
    padding-top: 5.5rem;
  }

  .prod-image-wrap {
    position: static;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .prod-title {
    font-size: 1.75rem !important;
  }

  .prod-price-value {
    font-size: 2rem;
  }
}


/* Out of stock banner */
.prod-oos-banner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.25rem;
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 0.5rem;
  color: #f87171;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

.prod-oos-banner svg {
  flex-shrink: 0;
  opacity: 0.8;
}

/* â”€â”€ SNIPPET FORM OVERRIDES (product-form.njk output) â”€â”€â”€â”€â”€â”€â”€
   Scoped to .prod-info-inner so no other page is affected.
   The snippet renders: .variants > .variant, .input-group,
   .buy-buttons, .form-label, .active-indicator
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Section labels */
.prod-info-inner .form-label {
  font-size: 0.58rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.35) !important;
  margin-bottom: 0.5rem !important;
}

/* Variant list â€” override Bootstrap d-flex flex-wrap */
.prod-info-inner .variants {
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

/* Each variant button â€” card row style */
.prod-info-inner .variant {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 0.875rem 1.1rem !important;
  background: rgba(255,255,255,0.04) !important;
  border: 2px solid rgba(255,255,255,0.09) !important;
  border-radius: 0.6rem !important;
  cursor: pointer !important;
  gap: 0.75rem !important;
  color: #fff !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  text-align: left !important;
  transition: border-color 0.2s, background 0.2s !important;
  position: relative !important;
}

.prod-info-inner .variant:hover:not(:disabled) {
  border-color: rgba(34,197,94,0.4) !important;
  background: rgba(34,197,94,0.05) !important;
}

.prod-info-inner .variant.active {
  border-color: var(--cl-accent) !important;
  background: rgba(34,197,94,0.08) !important;
}

.prod-info-inner .variant:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
}

/* Variant inner layout */
.prod-info-inner .variant .name-stock {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.15rem !important;
  flex: 1 !important;
}

.prod-info-inner .variant .name-stock .name {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
}

.prod-info-inner .variant .name-stock .description {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.38) !important;
  margin: 0 !important;
}

.prod-info-inner .variant .name-stock .stock {
  font-size: 0.58rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  color: var(--cl-accent) !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.prod-info-inner .variant .name-stock .stock span {
  color: inherit !important;
}

.prod-info-inner .variant .price {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  white-space: nowrap !important;
  text-align: right !important;
  flex-shrink: 0 !important;
}

.prod-info-inner .variant .price s {
  display: block !important;
  font-size: 0.72rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.35) !important;
}

.prod-info-inner .variant .active-indicator {
  position: absolute !important;
  top: 0.5rem !important;
  right: 0.5rem !important;
  color: var(--cl-accent) !important;
}

.prod-info-inner .variant .active-indicator svg {
  width: 16px !important;
  height: 16px !important;
}

/* Quantity input-group */
.prod-info-inner .input-group {
  width: auto !important;
  max-width: 9rem !important;
  flex-wrap: nowrap !important;
}

.prod-info-inner .input-group .input-group-btn {
  width: 2.5rem !important;
  height: 2.5rem !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.7) !important;
}

.prod-info-inner .input-group .input-group-btn:first-child {
  border-radius: 0.5rem 0 0 0.5rem !important;
  border-right: none !important;
}

.prod-info-inner .input-group .input-group-btn:last-child {
  border-radius: 0 0.5rem 0.5rem 0 !important;
  border-left: none !important;
}

.prod-info-inner .input-group .input-group-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
}

.prod-info-inner .input-group .input-group-btn svg {
  width: 13px !important;
  height: 13px !important;
}

.prod-info-inner .input-group .form-control {
  width: 3.5rem !important;
  height: 2.5rem !important;
  min-height: 2.5rem !important;
  text-align: center !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(255,255,255,0.04) !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  color: #fff !important;
  -moz-appearance: textfield !important;
}

.prod-info-inner .input-group .form-control::-webkit-outer-spin-button,
.prod-info-inner .input-group .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Buy buttons row â€” snippet renders Add to Cart first (btn-primary)
   and Buy Now second (btn-outline-primary). We invert the visual
   weights so Buy Now is the dominant green CTA. */
.prod-info-inner .buy-buttons {
  gap: 0.625rem !important;
  margin-top: 1.25rem !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

.prod-info-inner .buy-buttons .col {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Add to Cart â€” secondary (green outline) */
.prod-info-inner .buy-buttons .btn-primary {
  background: rgba(34,197,94,0.08) !important;
  border: 1.5px solid var(--cl-accent) !important;
  color: var(--cl-accent) !important;
  height: 3.25rem !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  border-radius: 0.6rem !important;
  box-shadow: none !important;
  transition: background 0.18s, transform 0.18s !important;
}

.prod-info-inner .buy-buttons .btn-primary:hover:not(:disabled) {
  background: rgba(34,197,94,0.15) !important;
  transform: translateY(-1px) !important;
}

/* Buy Now â€” primary CTA (filled green) */
.prod-info-inner .buy-buttons .btn-outline-primary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  border: 1.5px solid var(--cl-accent) !important;
  color: #000000 !important;
  height: 3.25rem !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  border-radius: 0.6rem !important;
  box-shadow: 0 4px 20px rgba(34,197,94,0.25) !important;
  transition: filter 0.18s, transform 0.18s, box-shadow 0.18s !important;
}

.prod-info-inner .buy-buttons .btn-outline-primary:hover:not(:disabled) {
  filter: brightness(1.08) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(34,197,94,0.35) !important;
  color: #000000 !important;
}

.prod-info-inner .buy-buttons .btn-primary:disabled,
.prod-info-inner .buy-buttons .btn-outline-primary:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* Payment note */
.prod-info-inner .prod-payment-note {
  margin-top: 0.6rem !important;
  margin-bottom: 0.75rem !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  color: rgba(255,255,255,0.32) !important;
  text-align: center !important;
}

.prod-info-inner .prod-payment-note strong {
  color: rgba(255,255,255,0.5) !important;
  font-weight: 700 !important;
}

/* â”€â”€ REVIEWS MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes reviews-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes reviews-scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.reviews-section {
  overflow: hidden;
}

.reviews-section.py-20 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.reviews-section .section-subtitle {
  margin-bottom: 1.25rem;
}

.reviews-marquee-wrap {
  position: relative;
  /* clip to the container so cards don't bleed outside the page */
  max-width: 100vw;
  overflow: hidden;
}

.reviews-marquee-wrap::before,
.reviews-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  /* fade width = container padding (matches Bootstrap .container gutter) */
  width: clamp(1.5rem, calc((100vw - 1320px) / 2 + 3rem), 15vw);
}

.reviews-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--cl-background-primary) 60%, transparent 100%);
}

.reviews-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--cl-background-primary) 60%, transparent 100%);
}

.reviews-marquee-row {
  overflow: hidden;
  margin-bottom: 1rem;
}

.reviews-marquee-row:last-child {
  margin-bottom: 0;
}

.reviews-marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
}

.reviews-scroll-left {
  animation: reviews-scroll-left 40s linear infinite;
}

.reviews-scroll-right {
  animation: reviews-scroll-right 40s linear infinite;
}

.reviews-marquee-wrap:hover .reviews-marquee-track {
  animation-play-state: paused;
}

.reviews-card-wrap {
  width: 300px;
  flex-shrink: 0;
  padding: 0 0.5rem 0.25rem;
}

/* Alternative pay buttons */
.prod-info-inner .prod-alt-pay-buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  margin-top: 0.5rem !important;
}

.prod-info-inner .prod-btn-robux {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  width: 100% !important;
  height: 3rem !important;
  background: rgba(226,34,34,0.1) !important;
  border: 1.5px solid rgba(226,34,34,0.4) !important;
  color: #f87171 !important;
  border-radius: 0.6rem !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  transition: background 0.18s, border-color 0.18s, transform 0.18s !important;
}

.prod-info-inner .prod-btn-robux:hover {
  background: rgba(226,34,34,0.18) !important;
  border-color: rgba(226,34,34,0.65) !important;
  transform: translateY(-1px) !important;
  color: #fca5a5 !important;
}

/* ---- How It Works ---- */
/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-it-works {
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* ---- Background decoration ---- */
.hiw-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(var(--cl-accent-rgb), 0.055) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hiw-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(var(--cl-accent-rgb), 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hiw-container {
  position: relative;
  z-index: 1;
}

/* ---- Heading entrance animation ---- */
.hiw-heading-wrap {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hiw-heading-wrap--sub {
  transition-delay: 0.08s;
}

.hiw-heading-wrap.hiw-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Steps row ---- */
.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 2.75rem;
}

/* ---- Individual step card ---- */
.hiw-step {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.75rem 2rem;
  background: linear-gradient(160deg, #111111 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.35rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

/* Card bottom-edge accent glow on hover */
.hiw-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(var(--cl-accent-rgb), 0.5), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hiw-step:hover::after {
  opacity: 1;
}

.hiw-step:hover {
  border-color: rgba(var(--cl-accent-rgb), 0.28);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(var(--cl-accent-rgb), 0.06), 0 20px 60px rgba(var(--cl-accent-rgb), 0.05);
}

.hiw-step.hiw-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Icon area ---- */
.hiw-icon-wrap {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Radial glow that pulses behind the icon */
@keyframes hiw-glow-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.25; }
  50%       { transform: scale(1.18); opacity: 0.5;  }
}

.hiw-icon-glow {
  position: absolute;
  inset: -1.25rem;
  background: radial-gradient(circle, rgba(var(--cl-accent-rgb), 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: hiw-glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

/* Step number pill — sits at top-right corner of icon */
.hiw-step-num {
  position: absolute;
  top: -0.55rem;
  right: -0.7rem;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  color: var(--cl-accent);
  background: rgba(var(--cl-accent-rgb), 0.12);
  border: 1px solid rgba(var(--cl-accent-rgb), 0.32);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  line-height: 1;
  z-index: 2;
}

/* Icon box */
.hiw-icon {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--cl-accent-rgb), 0.08);
  border: 1.5px solid rgba(var(--cl-accent-rgb), 0.28);
  border-radius: 1.1rem;
  position: relative;
  z-index: 1;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.hiw-step:hover .hiw-icon {
  background: rgba(var(--cl-accent-rgb), 0.14);
  border-color: rgba(var(--cl-accent-rgb), 0.45);
  box-shadow: 0 0 24px rgba(var(--cl-accent-rgb), 0.2);
}

.hiw-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--cl-accent);
  stroke-width: 1.5;
  transition: transform 0.3s ease;
}

.hiw-step:hover .hiw-icon svg {
  transform: scale(1.1);
}

/* ---- Text ---- */
.hiw-step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.hiw-step-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin: 0;
}

/* ---- Animated connector ---- */
.hiw-connector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 3.5rem;
  margin-top: 2.75rem; /* aligns with icon vertical center */
  gap: 0;
}

.hiw-conn-track {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  border-radius: 999px;
}

@keyframes hiw-beam {
  0%   { transform: translateX(-100%); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateX(400%);  opacity: 0; }
}

.hiw-conn-beam {
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 35%;
  background: linear-gradient(to right, transparent, var(--cl-accent), transparent);
  animation: hiw-beam 2.4s ease-in-out infinite;
  box-shadow: 0 0 6px var(--cl-accent);
  border-radius: 999px;
}

.hiw-conn-tip {
  width: 0.8rem;
  height: 0.8rem;
  color: rgba(var(--cl-accent-rgb), 0.55);
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .hiw-steps {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hiw-step {
    max-width: 100%;
    width: 100%;
  }

  .hiw-connector {
    transform: rotate(90deg);
    margin-top: 0;
    width: 2.5rem;
  }
}


/* Error alert */
.prod-info-inner .alert-warning {
  background: rgba(239,68,68,0.08) !important;
  border: 1px solid rgba(239,68,68,0.25) !important;
  color: #f87171 !important;
  border-radius: 0.5rem !important;
  font-size: 0.82rem !important;
}

/* ============================================================
   PRODUCT PAGE — Entrance Animations
   ============================================================ */

@keyframes prod-fade-left {
  from { opacity: 0; transform: translateX(-22px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes prod-fade-right {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes prod-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes prod-scale-in {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

/* Left column slides in from the left */
.prod-image-col {
  animation: prod-fade-left 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.05s;
}

/* Right column slides in from the right */
.prod-info-col {
  animation: prod-fade-right 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.1s;
}

/* Stagger children inside the info column */
.prod-badges-row {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.18s;
}

.prod-title {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.24s;
}

.prod-divider {
  transform-origin: left center;
  animation: prod-scale-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.28s;
}

.prod-price-row {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.32s;
}

.prod-status-row {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.35s;
}

.prod-info-inner > [x-data] {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.38s;
}

.prod-secure-payment {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.44s;
}

.prod-upsells {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.5s;
}

/* Below-image tabs stagger after image column */
.prod-below-image {
  animation: prod-fade-up 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.3s;
}

/* Robux price as primary display (wraps pill + fiat secondary) */
.prod-robux-price-primary {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}

/* Robux price pill in product page price row */
.prod-robux-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(226,34,34,0.1);
  border: 1px solid rgba(226,34,34,0.3);
  border-radius: 0.5rem;
  padding: 0.25rem 0.6rem;
  color: #f87171;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.prod-robux-price-pill svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* Fiat price shown as dimmed secondary when Robux price is present */
.prod-price-secondary .prod-price-value {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.35) !important;
  font-weight: 500 !important;
}

/* Robux price badge on variant buttons */
.variant-robux-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(226,34,34,0.12);
  border: 1px solid rgba(226,34,34,0.28);
  border-radius: 0.3rem;
  padding: 0.12rem 0.4rem;
  color: #f87171;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
  white-space: nowrap;
  width: fit-content;
}

/* ============================================================
   ROBUX CHECKOUT PAGE
   ============================================================ */

.rxco-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 5.5rem;
  padding-bottom: 4rem;
}

.rxco-container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Page title */
.rxco-page-title {
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.5) !important;
  text-align: center;
  margin: 0;
}

/* Main card */
.rxco-card {
  width: 100%;
  background: linear-gradient(160deg, rgba(16,16,22,1) 0%, rgba(10,10,14,1) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.15rem;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5),
              0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

/* Subtle top accent bar */
.rxco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.5), transparent);
  opacity: 0.6;
}

.rxco-card-center {
  text-align: center;
  padding: 3rem 1.75rem;
}

/* Icon wrapper */
.rxco-icon-wrap {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.rxco-icon-robux {
  background: rgba(34,197,94,0.12);
  border: 1.5px solid rgba(34,197,94,0.3);
  box-shadow: 0 0 30px rgba(34,197,94,0.12);
  color: var(--cl-accent);
}

.rxco-icon-robux svg {
  width: 2rem;
  height: 2rem;
}

.rxco-icon-paid {
  background: rgba(34,197,94,0.12);
  border: 1.5px solid rgba(34,197,94,0.35);
  color: var(--cl-accent);
}

.rxco-icon-paid svg {
  width: 2.25rem;
  height: 2.25rem;
}

.rxco-icon-error {
  background: rgba(239,68,68,0.1);
  border: 1.5px solid rgba(239,68,68,0.3);
  color: #f87171;
}

.rxco-icon-error svg {
  width: 2.25rem;
  height: 2.25rem;
}

/* Heading + subtext */
.rxco-heading {
  font-size: 1.75rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-align: center;
  margin: 0 0 0.4rem !important;
}

.rxco-subtext {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.6;
  max-width: 36ch;
  margin: 0 0 1.75rem;
}

/* Steps */
.rxco-steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}

.rxco-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.rxco-step-connector {
  width: 2px;
  height: 1.25rem;
  background: rgba(255,255,255,0.07);
  margin-left: calc(1.15rem - 1px);
  flex-shrink: 0;
}

/* Step number circle */
.rxco-step-num {
  flex-shrink: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.rxco-step-active .rxco-step-num {
  background: var(--cl-accent);
  color: #000000;
  box-shadow: 0 0 16px rgba(34,197,94,0.35);
}

.rxco-step-pending .rxco-step-num {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.35);
}

/* Step content */
.rxco-step-content {
  flex: 1;
  padding-bottom: 0;
  min-width: 0;
}

.rxco-step-title {
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  color: #ffffff;
  margin: 0.3rem 0 0.25rem !important;
  letter-spacing: 0;
}

.rxco-step-pending .rxco-step-title {
  color: rgba(255,255,255,0.55);
}

.rxco-step-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

/* Game pass button */
.rxco-btn-gamepass {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cl-accent);
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #000000 !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 0 0.75rem 0 1rem;
  height: 2.65rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: filter 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 18px rgba(34,197,94,0.3);
  margin-bottom: 0.25rem;
}

.rxco-btn-gamepass:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.4);
  color: #000000 !important;
}

.rxco-gamepass-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  border-radius: 0.3rem;
  padding: 0.1rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
  height: 1.5rem;
}

/* Order summary */
.rxco-summary {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.75rem;
  padding: 0.25rem 1.1rem;
  margin-bottom: 1rem;
}

.rxco-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 0.75rem;
}

.rxco-summary-row + .rxco-summary-row {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.rxco-summary-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
}

.rxco-summary-value {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  text-align: right;
}

.rxco-summary-accent {
  color: var(--cl-accent) !important;
  font-weight: 700 !important;
}

/* Awaiting status badge */
.rxco-status-awaiting {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fbbf24;
}

.rxco-status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 6px #fbbf2488;
  flex-shrink: 0;
  animation: rxcoPulse 2s infinite;
}

@keyframes rxcoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* Expiry line */
.rxco-expiry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.rxco-expiry svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.rxco-expiry-time {
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  font-variant-numeric: tabular-nums;
}

/* Loading spinner */
.rxco-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid rgba(255,255,255,0.08);
  border-top-color: var(--cl-accent);
  border-radius: 50%;
  animation: rxcoSpin 0.75s linear infinite;
  margin-bottom: 1rem;
}

@keyframes rxcoSpin {
  to { transform: rotate(360deg); }
}

.rxco-loading-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

/* Back / action buttons */
.rxco-btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 2.75rem;
  padding: 0 1.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 0.5rem;
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  margin-top: 0.75rem;
}

.rxco-btn-back:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: #ffffff !important;
}

/* Email collection state */
.rxco-email-wrap {
  width: 100%;
  text-align: left;
  margin-bottom: 1.1rem;
}

.rxco-field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.2rem;
}

.rxco-required {
  color: var(--cl-accent);
}

.rxco-field-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.32);
  margin-bottom: 0.55rem;
  line-height: 1.5;
}

.rxco-input {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 0.6rem !important;
  color: rgba(255,255,255,0.87) !important;
  padding: 0.7rem 1rem !important;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.rxco-input:focus {
  border-color: var(--cl-accent) !important;
  box-shadow: 0 0 0 0.2rem rgba(34,197,94,0.12) !important;
  background: rgba(34,197,94,0.03) !important;
}

.rxco-input::placeholder {
  color: rgba(255,255,255,0.18) !important;
}

.rxco-btn-row {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  margin-bottom: 1.1rem;
}

.rxco-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.68rem 1.1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}

.rxco-btn-secondary:hover {
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.87);
}

.rxco-btn-continue {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 0.6rem;
  color: #000;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0.68rem 1rem;
  cursor: pointer;
  transition: filter 0.18s, transform 0.12s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
}

.rxco-btn-continue:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.4);
}

.rxco-btn-continue:active:not(:disabled) {
  transform: translateY(0);
}

.rxco-btn-continue:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.rxco-footnote {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  text-align: left;
  line-height: 1.55;
  width: 100%;
  margin: 0;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .rxco-page {
    padding-top: 5rem;
  }

  .rxco-card {
    padding: 1.5rem 1.25rem 1.35rem;
  }

  .rxco-heading {
    font-size: 1.45rem !important;
  }
}