@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

/* Numeric display font (stat values, balance, OTP) */
:root { --rsl-num: 'Space Grotesk', 'Inter', system-ui, sans-serif; }

canvas {position: fixed;top: 0;left: 0;z-index: -1;}

/* ============================================================
   Resellshop — Red stasis-style theme
   ============================================================ */

/* ---- Fonts: Inter everywhere, Sora for headings ---- */
body, p, span, a, li, td, th, input, button, label, .dSR {
  font-family: 'Inter', system-ui, sans-serif !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', 'Inter', sans-serif !important;
  letter-spacing: -0.02em;
}

/* ---- Page background ---- */
body { background-color: #05060a !important; }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background: radial-gradient(80% 55% at 50% 114%, rgba(210, 0, 0, 0.08), transparent 60%);
}

/* ---- Sticky header ---- */
/* Transparent scrim so the navbar reads as a FLOATING capsule: a soft dark
   fade at the very top keeps content legible as it scrolls underneath. */
header.sticky {
  z-index: 40 !important;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.92) 0%, rgba(5, 6, 10, 0.55) 55%, rgba(5, 6, 10, 0) 100%) !important;
}

/* ============================================================
   NAVBAR — glass redesign
   ============================================================ */

/* Outer bar is now just a spacer — the visible surface is the floating capsule
   (.rsl-navbar-capsule) below, so strip the old full-width glass panel. */
nav[data-component-id="navbar"] > div > div {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  position: relative;
}
nav[data-component-id="navbar"] > div > div::after { content: none !important; }
/* Shop name — R-cut, unified Sora, glass gradient */
.rsl-brand {
  display: inline-flex; align-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem; font-weight: 800;
  letter-spacing: -0.025em; line-height: 1;
}
.rsl-brand-r, .rsl-brand-rest {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.52) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.rsl-brand-sep { display: none; }
/* Nav links — subtle, no heavy pill border */
nav[data-component-id="navbar"] a[class*="rounded-full"][class*="border-2"] {
  border-width: 1.5px !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
nav[data-component-id="navbar"] a[class*="rounded-full"][class*="border-2"]:hover {
  border-color: rgba(255, 0, 0, 0.16) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}
/* Active nav link — red tint */
nav[data-component-id="navbar"] a[class*="rounded-full"][class*="bg-accent-500"],
nav[data-component-id="navbar"] a[class*="rounded-full"][class*="text-accent-500"] {
  background: rgba(255, 0, 0, 0.14) !important;
  border-color: rgba(255, 0, 0, 0.28) !important;
  color: #ff3333 !important;
}

/* ---- Center nav: clean text links (reference look), sliding red underline ---- */
@media (max-width: 1023px) { .rsl-nav-text { display: none !important; } }
.rsl-nav-text { position: relative; display: inline-flex; align-items: center; gap: .15rem; }
/* the single underline that slides between links (positioned by JS) */
.rsl-nav-indicator {
  position: absolute; left: 0; bottom: 5px; height: 2px; width: 0; border-radius: 2px;
  background: linear-gradient(90deg, #ff2b2b, #ff6a6a);
  box-shadow: 0 0 10px rgba(255, 0, 0, .8);
  opacity: 0; pointer-events: none; transform: translateX(0);
  transition: transform .28s cubic-bezier(.34, .01, .2, 1), width .28s cubic-bezier(.34, .01, .2, 1), opacity .2s ease;
  will-change: transform, width;
}
nav[data-component-id="navbar"] .rsl-nav-text a.rsl-nav-link {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: .5rem .95rem !important;
  border-radius: 999px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .92rem !important; font-weight: 600 !important;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, .58) !important;
  opacity: 1 !important;
  position: relative;
  transition: color .18s ease, background .18s ease !important;
}
nav[data-component-id="navbar"] .rsl-nav-text a.rsl-nav-link:hover {
  color: #fff !important;
  background: transparent !important;
}
nav[data-component-id="navbar"] .rsl-nav-text a.rsl-nav-link.rsl-active {
  color: #fff !important;
  background: transparent !important;
}
/* static underline — fallback only; hidden once JS drives the sliding indicator */
.rsl-nav-text a.rsl-nav-link.rsl-active::after {
  content: '';
  position: absolute; left: 50%; bottom: 5px; transform: translateX(-50%);
  width: 24px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #ff2b2b, #ff6a6a);
  box-shadow: 0 0 10px rgba(255, 0, 0, .8);
}
.rsl-nav-text.rsl-js a.rsl-nav-link.rsl-active::after { display: none !important; }

/* ---- Login / My Account button + Cart button ---- */
.rsl-login-btn {
  height: 44px; padding: 0 1.35rem !important;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 999px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important; font-size: .9rem !important;
  color: #fff !important;
  background: linear-gradient(180deg, rgba(255, 45, 45, .16), rgba(255, 45, 45, .05)) !important;
  border: 1px solid rgba(255, 60, 60, .32) !important;
  box-shadow: 0 8px 22px -14px rgba(255, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .15s ease !important;
}
.rsl-login-btn:hover {
  background: linear-gradient(180deg, rgba(255, 45, 45, .3), rgba(255, 45, 45, .13)) !important;
  border-color: rgba(255, 60, 60, .6) !important;
  color: #fff !important;
  box-shadow: 0 12px 30px -12px rgba(255, 0, 0, .7), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
}
.rsl-login-btn-icon { width: 17px; height: 17px; opacity: .92; flex: 0 0 auto; }
.rsl-cart-btn {
  width: 44px; height: 44px; padding: 0 !important; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px !important;
  color: #fff !important;
  background: rgba(255, 255, 255, .045) !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05) !important;
  transition: background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease, transform .15s ease !important;
}
.rsl-cart-btn:hover {
  background: rgba(255, 0, 0, .12) !important;
  border-color: rgba(255, 0, 0, .45) !important;
  color: #ff6a6a !important;
  box-shadow: 0 8px 20px -8px rgba(255, 0, 0, .55) !important;
}
.rsl-cart-btn svg { width: 20px; height: 20px; }
/* mobile cart: a touch smaller to fit the compact bar */
.rsl-cart-btn--m { width: 40px; height: 40px; }
.rsl-cart-btn--m svg { width: 19px; height: 19px; }
/* no hover-lift on touch (avoids sticky :hover state after tap) */
@media (hover: none) {
  .rsl-login-btn:hover, .rsl-cart-btn:hover, .rsl-icon-btn:hover { transform: none !important; }
}

/* ============================================================
   RSL_NAV_CAPSULE (2026-08-26) — floating pill navbar
   Reference: Cheapmarket clean capsule, adapted to red brand.
   The main flex row becomes a floating glass pill with a subtle
   red gradient border-ring. Icon buttons (search) + divider added.
   ============================================================ */
.rsl-navbar-capsule {
  padding: .7rem .8rem .7rem 1.25rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(22, 12, 14, 0.66) 0%, rgba(8, 6, 9, 0.72) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 18px 50px -18px rgba(0, 0, 0, 0.75),
    0 2px 10px -4px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
}
/* soft red gradient border-ring (masked so only the 1px edge shows) */
.rsl-navbar-capsule::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  pointer-events: none; z-index: 1;
  background: linear-gradient(100deg,
    rgba(255, 60, 60, 0) 15%,
    rgba(255, 45, 45, 0.35) 50%,
    rgba(255, 60, 60, 0) 85%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .8;
}
/* keep the row content above the ring */
.rsl-navbar-capsule > * { position: relative; z-index: 2; }
@media (max-width: 640px) {
  .rsl-navbar-capsule { padding: .5rem .6rem .5rem .85rem; border-radius: 24px; }
}

/* ---- Icon buttons (search) — match the cart button ---- */
.rsl-icon-btn {
  width: 44px; height: 44px; padding: 0 !important; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px !important;
  color: #fff;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease, transform .15s ease;
}
.rsl-icon-btn:hover {
  background: rgba(255, 0, 0, .12);
  border-color: rgba(255, 0, 0, .45);
  color: #ff6a6a;
  box-shadow: 0 8px 20px -8px rgba(255, 0, 0, .55);
}
.rsl-icon-btn svg { width: 20px; height: 20px; }
.rsl-icon-btn--m { width: 40px; height: 40px; }
.rsl-icon-btn--m svg { width: 19px; height: 19px; }

/* ---- Vertical divider between icon cluster and Log in ---- */
.rsl-nav-divider {
  width: 1px; height: 26px; flex: 0 0 auto; margin: 0 .1rem;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .16), transparent);
}

/* ---- Search host: hide the snippet's default input trigger; only the
   navbar icon opens the modal. The modal itself (2nd child) is untouched. ---- */
.rsl-search-host { line-height: 0; }
.rsl-search-host > div { margin: 0 !important; }
.rsl-search-host > div > div:first-child { display: none !important; }

/* ---- Hamburger (mobile menu toggle) ---- */
.rsl-burger {
  width: 42px; height: 42px; flex: 0 0 auto; padding: 0;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: background .2s ease, border-color .2s ease;
}
.rsl-burger:active { background: rgba(255, 0, 0, .12); border-color: rgba(255, 0, 0, .4); }
.rsl-burger span {
  display: block; width: 18px; height: 2px; border-radius: 2px; background: #fff;
  transition: transform .3s ease, opacity .2s ease;
}
.rsl-burger.is-open { background: rgba(255, 0, 0, .12); border-color: rgba(255, 0, 0, .4); }
.rsl-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rsl-burger.is-open span:nth-child(2) { opacity: 0; }
.rsl-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile menu panel + links ---- */
.rsl-mobile-menu {
  background: linear-gradient(180deg, rgba(20, 17, 24, .99), rgba(8, 8, 12, .99)) !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  box-shadow: 0 26px 64px -22px rgba(0, 0, 0, .85), 0 0 30px rgba(255, 0, 0, .05) !important;
  padding: .55rem !important;
}
.rsl-mobile-menu ul { gap: .25rem !important; }
.rsl-mlink {
  display: block; width: 100%;
  padding: .9rem 1rem !important;
  border-radius: .75rem !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important; font-weight: 600 !important;
  color: rgba(255, 255, 255, .72) !important;
  transition: background .2s ease, color .2s ease !important;
}
.rsl-mlink:hover, .rsl-mlink:active { background: rgba(255, 255, 255, .06) !important; color: #fff !important; }
.rsl-mlink.is-active {
  color: #fff !important;
  background: linear-gradient(180deg, rgba(255, 0, 0, .16), rgba(255, 0, 0, .08)) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 0, 0, .25);
}
.rsl-mlink--login {
  margin-top: .35rem;
  text-align: center !important;
  color: #fff !important;
  background: linear-gradient(180deg, #ff2b2b 0%, #d10606 100%) !important;
  box-shadow: 0 6px 16px -6px rgba(255, 0, 0, .6) !important;
}

/* ============================================================
   HERO
   ============================================================ */
.rsl-hero { position: relative; overflow: hidden; }
.rsl-hero > div { min-height: auto; position: relative; z-index: 1; padding-top: 5rem; padding-bottom: 5rem; }
.rsl-hero > div > [aria-hidden="true"] { display: none !important; }

.rsl-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    repeating-linear-gradient(118deg, rgba(255,255,255,0.14) 0 1px, transparent 1px 16px),
    radial-gradient(78% 72% at 62% -6%, rgba(255, 0, 0, 0.72), transparent 65%);
  -webkit-mask-image: radial-gradient(90% 90% at 62% -6%, #000 6%, transparent 82%);
          mask-image: radial-gradient(90% 90% at 62% -6%, #000 6%, transparent 82%);
}

/* eyebrow: red accent text + side lines */
.rsl-eyebrow { display: flex; align-items: center; justify-content: center; gap: 14px; }
.rsl-eyebrow span {
  font-weight: 600; font-size: 0.95rem; white-space: nowrap; font-family: 'Inter', sans-serif !important;
  background: linear-gradient(90deg,
    rgba(255, 50, 50, 0.60) 0%,
    rgba(255, 10, 10, 0.95) 35%,
    rgba(255, 80, 80, 0.80) 65%,
    rgba(255, 30, 30, 0.55) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.rsl-eyebrow::before, .rsl-eyebrow::after { content: ""; height: 1px; width: 70px; max-width: 12vw; }
.rsl-eyebrow::before { background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.6)); }
.rsl-eyebrow::after  { background: linear-gradient(90deg, rgba(255, 0, 0, 0.6), transparent); }

/* headline: white → red */
.rsl-hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5rem) !important;
  line-height: 1.04 !important;
  font-weight: 800 !important;
  background: linear-gradient(104deg, #ffffff 55%, #ff0000 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.rsl-hero p { font-size: 1.05rem !important; color: rgba(255, 255, 255, 0.5) !important; }

/* Primary button */
[class*="bg-accent-500"] {
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 8px 22px -12px rgba(255, 0, 0, .22);
}
a[class*="bg-accent-500"]:hover,
button[class*="bg-accent-500"]:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 12px 30px -12px rgba(255, 0, 0, .3);
}

/* Secondary ghost button */
.rsl-hero a[class*="border-background"] {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
  box-shadow: none !important;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.rsl-hero a[class*="border-background"]:hover {
  background: rgba(255, 255, 255, 0.09) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  transform: translateY(-2px);
}

.rsl-hero .flex.flex-col { max-width: 62rem !important; margin-inline: auto; }

/* ============================================================
   PRODUCTS SECTION — red cone spotlight
   ============================================================ */
#products { position: relative; overflow: visible; }

/* pull products section header up */
#products > div { padding-top: 2rem !important; }
#products { margin-top: -2rem !important; }
.rsl-prod-head { margin-bottom: 2.5rem !important; }

#products::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; height: 620px;
  background:
    radial-gradient(ellipse 120px 160px at 50% 22%, rgba(255, 255, 255, 0.10), transparent 55%),
    radial-gradient(ellipse 320px 280px at 50% 24%, rgba(255, 80, 80, 0.14), transparent 65%),
    radial-gradient(ellipse 700px 500px at 50% 22%, rgba(180, 0, 0, 0.08), transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* glass headline — large, white→slight red, translucent depth */
.rsl-prod-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.03em;
  font-family: 'Sora', sans-serif !important;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 230, 230, 0.82) 60%,
    rgba(255, 200, 200, 0.70) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.rsl-prod-sub {
  font-size: 1.12rem;
  line-height: 1.65;
  font-family: 'Inter', sans-serif !important;
  max-width: 38rem;
  margin-top: -0.6rem;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.78) 28%,
    rgba(255, 220, 220, 0.65) 60%,
    rgba(255, 255, 255, 0.42) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---- Product cards ---- */
/* 4-column grid */
#products [class*="flex-wrap"] { gap: 1.25rem !important; }

@media (max-width: 639px) {
  #products [class*="flex-wrap"] > div { width: 100% !important; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  #products [class*="flex-wrap"] > div { width: calc((100% - 1.25rem) / 2) !important; }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #products [class*="flex-wrap"] > div { width: calc((100% - 2.5rem) / 3) !important; }
}
@media (min-width: 1280px) {
  #products [class*="flex-wrap"] > div { width: calc((100% - 3.75rem) / 4) !important; }
}

.rsl-pcard {
  display: block;
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, .09);
  background: linear-gradient(160deg,
    rgba(255, 255, 255, .07) 0%,
    rgba(14, 12, 20, .95) 30%,
    rgba(10, 10, 15, .98) 100%);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
/* glass highlight line at top */
.rsl-pcard::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18) 40%, rgba(255,255,255,.10) 60%, transparent);
  pointer-events: none; z-index: 1;
}
.rsl-pcard:hover {
  transform: scale(1.012);
  border-color: rgba(255, 255, 255, .14);
  box-shadow:
    0 12px 28px -14px rgba(0, 0, 0, .6),
    0 0 16px 2px rgba(255, 0, 0, .035);
}

/* Image */
.rsl-pcard-img { position: relative; overflow: hidden; }
.rsl-pcard-thumb { width: 100%; display: block; object-fit: cover; }
.rsl-pcard-no-img {
  width: 100%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,0,0,.04); color: rgba(255,0,0,.4);
}
.rsl-pcard-no-img-icon { width: 5rem; height: 5rem; }

/* Stock badge — top right of image */
.rsl-pcard-sb {
  position: absolute; top: .65rem; right: .65rem;
  display: inline-flex; align-items: center; gap: .42rem;
  font-size: .76rem; font-weight: 600; white-space: nowrap;
  padding: .32rem .85rem; border-radius: 999px;
  font-family: 'Inter', sans-serif !important;
}
.rsl-pcard-sb--in {
  background: rgba(4, 18, 10, 0.82);
  border: 1px solid rgba(16, 185, 129, .22);
  color: #10b981;
}
.rsl-pcard-sb--out {
  background: rgba(18, 4, 4, 0.82);
  border: 1px solid rgba(255, 60, 60, .22);
  color: #ff5555;
}
.rsl-pcard-sb-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
}
.rsl-pcard-sb--in  .rsl-pcard-sb-dot { background: #10b981; box-shadow: 0 0 5px #10b981; }
.rsl-pcard-sb--out .rsl-pcard-sb-dot { background: #ff5555; box-shadow: 0 0 5px #ff5555; }

/* Body */
.rsl-pcard-body { padding: .95rem 1.1rem 1.05rem; border-top: 1px solid rgba(255, 255, 255, .10); text-align: left !important; }

/* Title row: name left, badge right */
.rsl-pcard-title-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: .6rem; margin-bottom: .75rem;
}
.rsl-pcard-name {
  font-size: 1.08rem; font-weight: 700; color: #fff; flex: 1;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  font-family: 'Sora', sans-serif !important;
}

/* Bottom row: left meta + right price */
.rsl-pcard-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
}
.rsl-pcard-meta { display: flex; flex-direction: column; gap: .14rem; }
.rsl-pcard-count {
  font-size: .92rem; font-weight: 700; color: rgba(255,255,255,.5);
  font-family: 'Inter', sans-serif !important;
}
.rsl-pcard-count--green { color: #10b981; }
.rsl-pcard-delivery { font-size: .78rem; color: rgba(255,255,255,.28); font-family: 'Inter', sans-serif !important; }

.rsl-pcard-price {
  font-size: 1.38rem; font-weight: 800;
  color: #ff1a1a; letter-spacing: -.02em; line-height: 1;
  font-family: 'Sora', sans-serif !important;
}


/* ============================================================
   WHY CHOOSE US — 3 bento cards
   ============================================================ */
.rsl-features { max-width: 1040px; margin: 0 auto; }
.rsl-features-head { display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center; margin-bottom: 2.25rem; }
.rsl-features-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; }
.rsl-features-head p { color: rgba(255, 255, 255, .5); max-width: 34rem; font-size: .95rem; }
.rsl-accent { color: rgb(var(--cl-accent)); }

.rsl-features-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 860px) {
  .rsl-features-grid { grid-template-columns: repeat(3, 1fr); }
}

.rsl-feature-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.rsl-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, .4);
  box-shadow: 0 20px 50px -22px rgba(255, 0, 0, .4);
}
.rsl-card-visual {
  position: relative;
  min-height: 140px;
  display: flex; align-items: center; justify-content: center;
  padding: 1.1rem;
  background: radial-gradient(120% 100% at 50% -10%, rgba(255, 0, 0, .10), transparent 60%);
}
.rsl-card-body { padding: .9rem 1.1rem 1.15rem; border-top: 1px solid rgba(255, 255, 255, .06); }
.rsl-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; font-family: 'Sora', sans-serif !important; }
.rsl-card-body p { color: rgba(255, 255, 255, .55); font-size: .82rem; line-height: 1.5; font-family: 'Inter', sans-serif !important; }

/* ============================================================
   PAYMENTS MARQUEE — 2 rows, real logos, opposite directions
   ============================================================ */
.rsl-pay-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}
.rsl-pay-track { display: flex; gap: .65rem; width: max-content; }
.rsl-pay-track--fwd { animation: rsl-mar-fwd 26s linear infinite; }
.rsl-pay-track--rev { animation: rsl-mar-rev 26s linear infinite; }
@keyframes rsl-mar-fwd { from { transform: translateX(0); }      to { transform: translateX(-50%); } }
@keyframes rsl-mar-rev { from { transform: translateX(-50%); }   to { transform: translateX(0); } }

.rsl-pay-pill {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: .55rem;
  height: 56px; padding: 0 1.1rem; border-radius: .75rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
}
.rsl-pay-pill img { height: 26px; width: auto; object-fit: contain; display: block; }
.rsl-pay-pill span { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.82); white-space: nowrap; letter-spacing: .02em; font-family: 'Inter', sans-serif !important; }
.rsl-pay-pill--text { padding: 0 1.2rem; }
.rsl-pay-pill--text span { font-size: .9rem; font-weight: 800; color: rgba(255,255,255,.9); }

/* ============================================================
   STATS — smooth count-up
   ============================================================ */
.rsl-stats-row { display: flex; flex-direction: column; gap: 1.2rem; justify-content: center; align-items: center; }
.rsl-stat { text-align: center; }
.rsl-stat-num {
  font-size: clamp(2rem, 3.2vw, 2.7rem); font-weight: 800; line-height: 1;
  background: linear-gradient(160deg, #ffffff 0%, #ff0000 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  letter-spacing: -.02em;
  font-family: 'Sora', sans-serif !important;
}
.rsl-stat-label { margin-top: .4rem; color: rgba(255, 255, 255, .52); font-size: .82rem; font-family: 'Inter', sans-serif !important; }

/* ============================================================
   ANIMATED SHIELD — Undetected & Safe
   ============================================================ */
.rsl-safe-anim {
  position: relative;
  width: 300px; height: 300px;
  display: flex; align-items: center; justify-content: center;
}
.rsl-safe-core {
  position: relative; z-index: 3;
  width: 124px; height: 124px; border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, #ff2020, #880000);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 3.2rem;
  animation: rsl-safe-pulse 2.2s ease-in-out infinite;
}
@keyframes rsl-safe-pulse {
  0%, 100% { box-shadow: 0 0 34px rgba(255, 0, 0, .5), 0 0 72px rgba(255, 0, 0, .22); }
  50%       { box-shadow: 0 0 60px rgba(255, 0, 0, .8), 0 0 120px rgba(255, 0, 0, .4); }
}
.rsl-safe-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(255, 0, 0, .5);
  animation: rsl-ring-out 3.6s ease-out infinite;
}
.rsl-safe-ring:nth-child(1) { animation-delay: 0s; }
.rsl-safe-ring:nth-child(2) { animation-delay: .6s; }
.rsl-safe-ring:nth-child(3) { animation-delay: 1.2s; }
.rsl-safe-ring:nth-child(4) { animation-delay: 1.8s; }
.rsl-safe-ring:nth-child(5) { animation-delay: 2.4s; }
.rsl-safe-ring:nth-child(6) { animation-delay: 3s; }
@keyframes rsl-ring-out {
  0%   { width: 124px; height: 124px; opacity: .85; border-color: rgba(255, 0, 0, .6); }
  100% { width: 320px; height: 320px; opacity: 0;   border-color: rgba(255, 0, 0, 0); }
}
.rsl-safe-orbit {
  position: absolute; border-radius: 50%;
  border: 1px dashed rgba(255, 0, 0, .28);
}
.rsl-safe-orbit--1 { width: 196px; height: 196px; animation: rsl-safe-spin 5s linear infinite; }
.rsl-safe-orbit--2 { width: 262px; height: 262px; border-color: rgba(255, 0, 0, .16); animation: rsl-safe-spin 8s linear infinite reverse; }
.rsl-safe-orbit::before {
  content: '';
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: #ff0000;
  box-shadow: 0 0 12px #ff0000, 0 0 5px #fff;
}
@keyframes rsl-safe-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ============================================================
   FAQ — glass + glow styling
   ============================================================ */
[data-component-id="faq"] h2 {
  font-family: 'Sora', sans-serif !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.03em !important;
  background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,220,220,.70) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
[data-component-id="faq"] p {
  color: rgba(255,255,255,.45) !important;
  font-family: 'Inter', sans-serif !important;
}
/* FAQ accordion items */
[data-component-id="faq"] button,
[data-component-id="faq"] [role="button"],
[data-component-id="faq"] > div > div > div {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: .85rem !important;
  backdrop-filter: blur(10px) !important;
  transition: border-color .3s, box-shadow .3s !important;
}
[data-component-id="faq"] button:hover,
[data-component-id="faq"] [role="button"]:hover {
  border-color: rgba(255,0,0,.22) !important;
  box-shadow: 0 0 18px rgba(255,0,0,.07) !important;
}
/* Question text — clean white bold */
[data-component-id="faq"] button span,
[data-component-id="faq"] [role="button"] span,
[data-component-id="faq"] h3 {
  font-family: 'Sora', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  color: rgba(255, 255, 255, .92) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .92) !important;
  background: none !important;
  text-shadow: none !important;
  filter: none !important;
  transition: color .25s ease, filter .25s ease !important;
}
/* Answer text */
[data-component-id="faq"] [aria-hidden],
[data-component-id="faq"] p:not(:first-of-type) {
  color: rgba(255,255,255,.48) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .92rem !important;
}
/* Icon/chevron — red */
[data-component-id="faq"] svg { color: #ff2020 !important; stroke: #ff2020 !important; }

/* ---- FAQ open state: red glow + brighter text ---- */
[data-component-id="faq"] button[aria-expanded="true"],
[data-component-id="faq"] [role="button"][aria-expanded="true"] {
  border-color: rgba(255, 0, 0, .32) !important;
  box-shadow: 0 0 26px rgba(255, 0, 0, .13), inset 0 0 12px rgba(255, 0, 0, .05) !important;
  background: rgba(255, 0, 0, .045) !important;
}
[data-component-id="faq"] button[aria-expanded="true"] span,
[data-component-id="faq"] [role="button"][aria-expanded="true"] span {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, .48)) !important;
}

/* ---- Map canvas z-index fix (global canvas rule sets z-index:-1) ---- */
#rsl-map-static { z-index: 2 !important; }   /* cobe WebGL canvas */
#rsl-map-anim   { z-index: 3 !important; }   /* red ping overlay above globe */

/* ---- Cursor glow ---- */
#rsl-cursor-glow {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  top: 0; left: 0;
  transform: translate(-250px, -250px);
  background: radial-gradient(circle, rgba(255,0,0,.10) 0%, rgba(255,0,0,.04) 40%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  will-change: transform, opacity;
}

/* ============================================================
   RELATED PRODUCTS — "You May Also Like" (product page bottom)
   ============================================================ */
.rsl-related {
  max-width: 1100px;
  margin: 4.5rem auto 0;
  position: relative;
}
.rsl-related::before {
  content: '';
  position: absolute; top: -2.25rem; left: 50%; transform: translateX(-50%);
  width: 140px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,0,0,.55), transparent);
}
.rsl-related-head {
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  text-align: center; margin-bottom: 2rem;
}
.rsl-related-eyebrow {
  font-family: 'Inter', sans-serif !important;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(255,50,50,.6), rgba(255,10,10,.95), rgba(255,80,80,.7));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.rsl-related-title {
  font-family: 'Sora', sans-serif !important;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.05;
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,220,220,.72));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.rsl-related-title .rsl-accent {
  -webkit-text-fill-color: rgb(var(--cl-accent));
  color: rgb(var(--cl-accent));
}
.rsl-related-sub {
  font-family: 'Inter', sans-serif !important;
  color: rgba(255,255,255,.45); font-size: .95rem; max-width: 34rem;
}
.rsl-related-grid {
  display: flex; flex-wrap: wrap; gap: 1.1rem; justify-content: center;
}
.rsl-related-grid > .rsl-pcard { width: 100%; }
@media (min-width: 640px) {
  .rsl-related-grid > .rsl-pcard { width: calc((100% - 1.1rem) / 2); }
}
@media (min-width: 1024px) {
  .rsl-related-grid > .rsl-pcard { width: calc((100% - 2.2rem) / 3); }
}

/* ============================================================
   PRODUCT PAGE — price card: stock bar, status, trust badges
   ============================================================ */
.rsl-stock-bar {
  height: 7px; border-radius: 999px; overflow: hidden;
  background: rgba(255,255,255,.07);
}
.rsl-stock-bar-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, #16a34a, #4ade80 70%, #86efac);
  box-shadow: 0 0 12px rgba(74,222,128,.45);
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.rsl-stock-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: 'Inter', sans-serif !important;
  font-size: .82rem; font-weight: 700; line-height: 1;
  padding: .42rem .9rem; border-radius: 999px;
  border: 1px solid transparent; white-space: nowrap;
}
.rsl-stock-badge--in {
  color: #4ade80; background: rgba(22,101,52,.18); border-color: rgba(74,222,128,.38);
}
.rsl-stock-badge--out {
  color: #f87171; background: rgba(127,29,29,.18); border-color: rgba(248,113,113,.38);
}
.rsl-stock-badge--hold {
  color: #fbbf24; background: rgba(120,80,10,.18); border-color: rgba(251,191,36,.38);
}
.rsl-trust-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.rsl-trust-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  flex: 1 1 0; min-width: max-content;
  font-family: 'Inter', sans-serif !important;
  font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.92);
  padding: .5rem .8rem; border-radius: .8rem;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.rsl-trust-pill:hover {
  border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.045); transform: translateY(-1px);
}
.rsl-trust-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; flex: 0 0 auto; border-radius: 7px;
  background: rgba(255,0,0,.12); border: 1px solid rgba(255,0,0,.24);
}
.rsl-trust-ico svg { width: 14px; height: 14px; color: #ff3b3b; }

/* ============================================================
   Volume Discounts tab — "Bulk savings" card (clickable tiers)
   ============================================================ */
/* Container matches the Description card (.rsl-desc-card): white gradient,
   red top accent line, red corner glow, soft shadow. */
.rsl-bulk {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.012));
  box-shadow: 0 14px 36px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(40px);
}
.rsl-bulk::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(130% 90% at 100% 0%, rgba(255,0,0,.07), transparent 58%);
}
.rsl-bulk::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; z-index: 2;
  background: linear-gradient(90deg, #ff0000, rgba(255,0,0,0));
}
.rsl-bulk > * { position: relative; z-index: 1; }
.rsl-bulk-head {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem 1.5rem 0.25rem;
}
.rsl-bulk-ico {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 13px;
  background: rgba(255,0,0,.10);
  border: 1px solid rgba(255,0,0,.30);
}
.rsl-bulk-ico svg { width: 24px; height: 24px; color: #ff3b3b; }
.rsl-bulk-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 1.375rem; font-weight: 700; color: #fff; line-height: 1.2;
}
.rsl-bulk-sub {
  font-family: 'Inter', sans-serif !important;
  margin-top: .3rem; max-width: 40rem;
  font-size: .95rem; line-height: 1.45; color: rgba(255,255,255,.55);
}
.rsl-bulk-scroll { overflow-x: auto; margin-top: 1.25rem; }
.rsl-bulk-table {
  width: 100%; border-collapse: collapse; min-width: 460px;
}
.rsl-bulk-table th {
  font-family: 'Inter', sans-serif !important;
  font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.42); text-align: left; white-space: nowrap;
  padding: .9rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.rsl-bulk-table td {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem; color: rgba(255,255,255,.9); white-space: nowrap;
  padding: 1.05rem 1.5rem; border-top: 1px solid rgba(255,255,255,.05);
}
.rsl-bulk-units { font-weight: 700; color: #fff; }
.rsl-bulk-right { text-align: right !important; }
.rsl-bulk-pill {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 3.25rem;
  font-family: 'Inter', sans-serif !important;
  font-size: .9rem; font-weight: 700; color: #fff;
  padding: .38rem .85rem; border-radius: 999px;
  background: linear-gradient(180deg, #ff4444, #e01414);
  box-shadow: 0 1px 6px rgba(255,0,0,.35);
}
.rsl-bulk-row {
  cursor: pointer;
  transition: background-color .15s ease, box-shadow .15s ease;
}
.rsl-bulk-row:hover { background: rgba(255,255,255,.04); }
.rsl-bulk-row:focus-visible {
  outline: none; background: rgba(255,255,255,.05);
  box-shadow: inset 0 0 0 2px rgba(255,0,0,.55);
}
.rsl-bulk-row.is-active { background: rgba(255,0,0,.09); }
.rsl-bulk-row.is-active td { box-shadow: none; }
.rsl-bulk-row.is-active td:first-child { box-shadow: inset 3px 0 0 #ff3b3b; }
.rsl-bulk-row.is-active .rsl-bulk-units { color: #ff6b6b; }

@media (max-width: 640px) {
  .rsl-bulk-head { padding: 1.15rem 1.15rem 0.15rem; gap: .75rem; }
  .rsl-bulk-ico { width: 44px; height: 44px; border-radius: 11px; }
  .rsl-bulk-ico svg { width: 20px; height: 20px; }
  .rsl-bulk-title { font-size: 1.2rem; }
  .rsl-bulk-sub { font-size: .875rem; }
  .rsl-bulk-table th { padding: .75rem 1.15rem; font-size: .72rem; }
  .rsl-bulk-table td { padding: .9rem 1.15rem; font-size: .9rem; }
}

/* ============================================================
   MOBILE PERFORMANCE — lighten expensive effects on small screens
   ============================================================ */
@media (max-width: 767px) {
  /* Freeze every continuous CSS animation (marquees, shield, glow pulses,
     floating pill, status dot…) — they keep the compositor busy and jank scroll. */
  [class*="rsl-"], [class*="rsl-"]::before, [class*="rsl-"]::after,
  .pulsating, .splide__track { animation: none !important; }
  /* Drop backdrop blur entirely — the single biggest scroll killer on phones. */
  [class*="backdrop-blur"] {
    -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
  }
  /* Trim heavy hover glows / transforms (no hover on touch anyway). */
  .rsl-feat-card:hover, .rsl-pcard:hover { box-shadow: none !important; transform: none !important; }
  /* Lighten the big ambient cone glow. */
  #products::before { opacity: .4; }
}

/* ============================================================
   GROUP PRODUCT MODAL — centered, themed, solid bg (no blur = no lag)
   ============================================================ */
.rsl-gm {
  position: fixed; inset: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.rsl-gm-overlay { position: absolute; inset: 0; background: rgba(2, 3, 8, .82); will-change: opacity; }
.rsl-gm-panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 46rem; max-height: 86vh;
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10); border-radius: 1.25rem;
  background: linear-gradient(165deg, rgba(22, 16, 24, .99) 0%, rgba(9, 9, 13, 1) 55%);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .85), 0 0 44px rgba(255, 0, 0, .07);
  /* promote to its own GPU layer so the open/close scale-fade stays smooth */
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.rsl-gm-panel.is-grid { max-width: 72rem; }
.rsl-gm-head {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.3rem; border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.rsl-gm-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 1.15rem; font-weight: 800; color: #fff; letter-spacing: -.02em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.rsl-gm-close {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 9px; color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08);
  transition: background .2s, color .2s, border-color .2s;
}
.rsl-gm-close:hover { background: rgba(255, 0, 0, .12); border-color: rgba(255, 0, 0, .3); color: #ff5a5a; }
.rsl-gm-body {
  padding: 1.1rem 1.3rem 1.4rem; overflow-y: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: rgba(255, 0, 0, .35) transparent;
}
.rsl-gm-body::-webkit-scrollbar { width: 6px; }
.rsl-gm-body::-webkit-scrollbar-thumb { background: rgba(255, 0, 0, .3); border-radius: 999px; }
.rsl-gm-grid { display: grid; grid-template-columns: 1fr; gap: .9rem; }
@media (min-width: 640px)  { .rsl-gm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rsl-gm-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .rsl-gm-panel.is-grid .rsl-gm-grid { grid-template-columns: repeat(4, 1fr); } }
.rsl-gm-list { display: flex; flex-direction: column; gap: .75rem; }
@media (max-width: 639px) {
  .rsl-gm { padding: .7rem; }
  .rsl-gm-panel { max-height: 90vh; border-radius: 1.1rem; }
  .rsl-gm-head { padding: .9rem 1rem; }
  .rsl-gm-body { padding: .9rem 1rem 1.1rem; }
}

/* ---- Variant list — premium grid, ALL visible (no inner scroll) ---- */
.rsl-variant-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: .55rem; }
.rsl-variant-list > button {
  align-items: flex-start !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.038), rgba(255,255,255,.012)) !important;
  padding: .72rem .85rem !important;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease !important;
}
.rsl-variant-list > button:not(:disabled):hover {
  border-color: rgba(255,45,45,.42) !important;
  background: rgba(255,45,45,.06) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,0,0,.12);
}
.rsl-variant-list > button.rsl-vsel {
  border-color: rgba(255,45,45,.7) !important;
  background: linear-gradient(180deg, rgba(255,45,45,.13), rgba(255,45,45,.035)) !important;
  box-shadow: 0 0 0 1px rgba(255,45,45,.3), 0 10px 26px rgba(255,0,0,.2) !important;
}
.rsl-variant-list > button:disabled { opacity: .45; }
.rsl-variant-list > button > div:last-child { text-align: right; white-space: nowrap; }
.rsl-variant-list > button > div:last-child .font-medium {
  font-family: var(--rsl-num), sans-serif; font-variant-numeric: tabular-nums;
  font-weight: 700; font-size: 1.02rem; color: #fff;
}
.rsl-variant-list > button.rsl-vsel > div:last-child .font-medium { color: #ff6a6a; }

/* ---- Feedback marquee edge fade + card size overrides ---- */
.rsl-fb-marquee-wrap {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.rsl-fb-text { font-size: .88rem !important; line-height: 1.55 !important; }

/* ============================================================
   Legal pages (Terms of Service / Privacy Policy) — .rsl-legal
   Shared premium styling to match the Refund Policy page.
   ============================================================ */
.rsl-legal { position: relative; overflow: hidden; }

/* ---- Hero ---- */
.rsl-legal-hero { position: relative; padding: 5.5rem 1rem 3rem; text-align: center; }
@media (min-width: 1024px) { .rsl-legal-hero { padding: 8rem 1rem 4rem; } }
.rsl-legal-glow {
  position: absolute; left: 50%; top: 0;
  width: 65%; max-width: 60rem; aspect-ratio: 1/1;
  transform: translate(-50%, -45%);
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(255,0,0,0.42) 0%, rgba(255,0,0,0.10) 42%, transparent 68%);
  filter: blur(140px); pointer-events: none; z-index: 0;
}
.rsl-legal-back {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: .4rem;
  margin-bottom: 2rem; padding: .5rem .95rem .5rem .7rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif !important;
  font-size: .82rem; font-weight: 600; letter-spacing: .01em;
  color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.rsl-legal-back svg { transition: transform .25s ease; }
.rsl-legal-back:hover { color: #fff; background: rgba(255,26,26,0.10); border-color: rgba(255,26,26,0.35); transform: translateY(-1px); }
.rsl-legal-back:hover svg { transform: translateX(-3px); }

.rsl-legal-head { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 1.15rem; }
.rsl-legal-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1.15rem; border-radius: 9999px;
  font-family: 'Inter', sans-serif !important;
  font-size: .8rem; font-weight: 600; letter-spacing: .02em;
  color: #ffd9d9; background: rgba(255,0,0,0.08);
  border: 1px solid rgba(255,26,26,0.32);
  box-shadow: 0 0 24px rgba(255,0,0,0.28), inset 0 0 12px rgba(255,0,0,0.06);
}
.rsl-legal-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff1a1a; box-shadow: 0 0 10px #ff1a1a, 0 0 4px #fff; }
.rsl-legal-title {
  margin: 0; font-family: 'Sora', sans-serif !important;
  font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.05; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(104deg, #ffffff 48%, #ff1a1a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.rsl-legal-subtitle { margin: 0; max-width: 34rem; font-family: 'Inter', sans-serif !important; font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,0.48); }

/* ---- Card ---- */
.rsl-legal-wrap { max-width: 56rem; margin: 0 auto; padding: 0 1rem 5rem; }
@media (min-width: 1024px) { .rsl-legal-wrap { padding-bottom: 8rem; } }
.rsl-legal-card {
  position: relative; overflow: hidden; border-radius: 1.25rem; padding: 2.25rem 1.75rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.015) 100%), #0b0c11;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) { .rsl-legal-card { padding: 3rem 2.75rem; } }
.rsl-legal-card::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,26,26,0.75), transparent); }
.rsl-legal-card-glow { position: absolute; left: 50%; top: -30%; width: 70%; height: 60%; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(255,0,0,0.10) 0%, transparent 70%); pointer-events: none; }

/* ---- Content typography ---- */
.rsl-legal-editor { position: relative; z-index: 1; font-family: 'Inter', sans-serif !important; color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.85; }
.rsl-legal-editor > :first-child { margin-top: 0 !important; }
.rsl-legal-editor > :last-child { margin-bottom: 0 !important; }

/* title / lead */
.rsl-legal-editor .rsl-legal-lead {
  font-family: 'Sora', sans-serif !important;
  font-size: 1.4rem; font-weight: 700; line-height: 1.3; color: #f5f5f7; letter-spacing: -0.01em;
  margin: 0 0 1.75rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* section heading */
.rsl-legal-editor .rsl-legal-h {
  position: relative;
  font-family: 'Sora', sans-serif !important;
  font-size: 1.2rem; font-weight: 700; line-height: 1.35; color: #f5f5f7; letter-spacing: -0.01em;
  margin: 2.4rem 0 1rem; padding-left: .9rem;
}
.rsl-legal-editor .rsl-legal-h::before {
  content: ''; position: absolute; left: 0; top: .2em; bottom: .2em; width: 3px; border-radius: 2px;
  background: linear-gradient(180deg, #ff3b3b, #b91c1c); box-shadow: 0 0 10px rgba(255,26,26,0.55);
}

/* prose points -> red arrowhead marker + separator line (matches Refund page) */
.rsl-legal-editor .rsl-legal-p {
  position: relative; margin: 0;
  padding: .95rem 0 .95rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  transition: color .25s ease;
}
.rsl-legal-editor .rsl-legal-p:hover { color: rgba(255,255,255,0.92); }
.rsl-legal-editor .rsl-legal-p::before {
  content: ""; position: absolute; left: .15rem; top: 1.58rem;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #ff1a1a;
  filter: drop-shadow(0 0 5px rgba(255,26,26,0.7));
  transition: transform .25s ease;
}
.rsl-legal-editor .rsl-legal-p:hover::before { transform: translateX(3px); }
/* intro line before a sub-list: keep the arrow, drop the separator so it flows into the list */
.rsl-legal-editor .rsl-legal-p.is-introline { border-bottom: 0; padding-bottom: .3rem; }
/* last point shouldn't double up with the footer's top border */
.rsl-legal-editor > .rsl-legal-p:last-child { border-bottom: 0; }

/* sub-list items (nested under an intro line) -> red dot, extra indent */
.rsl-legal-editor .rsl-legal-li {
  position: relative; margin: 0; padding: .4rem 0 .4rem 2.5rem;
  color: rgba(255,255,255,0.82);
}
.rsl-legal-editor .rsl-legal-li::before {
  content: ''; position: absolute; left: 1rem; top: 1.05rem;
  width: 7px; height: 7px; border-radius: 50%; background: #ff1a1a; box-shadow: 0 0 8px rgba(255,26,26,0.6);
}
.rsl-legal-editor .rsl-legal-li:last-of-type { margin-bottom: .85rem; }

/* links */
.rsl-legal-editor a {
  color: #ff5a5a; font-weight: 600; text-decoration: none; word-break: break-word;
  border-bottom: 1px solid rgba(255,90,90,0.35); transition: color .2s ease, border-color .2s ease;
}
.rsl-legal-editor a:hover { color: #ff8080; border-color: rgba(255,128,128,0.7); }
.rsl-legal-editor strong, .rsl-legal-editor b { color: #fff; font-weight: 700; }

/* footer note */
.rsl-legal-foot {
  position: relative; z-index: 1; display: flex; align-items: flex-start; gap: .6rem;
  margin-top: 2.25rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07);
  font-family: 'Inter', sans-serif !important; font-size: .85rem; line-height: 1.55; color: rgba(255,255,255,0.42);
}
.rsl-legal-foot-dot { flex-shrink: 0; margin-top: .45rem; width: 7px; height: 7px; border-radius: 50%; background: #ff1a1a; box-shadow: 0 0 8px rgba(255,26,26,0.6); }

/* ── RSL_SMM_SECTION (2026-08-15 v2): 14 per-platform "<Platform> Boost" products
   (variants = service types, buyer picks quantity). Keep them ONLY inside the
   "SMM · TEST" section and out of the main "Our Products" grid.
   Standalone product ids 835684, 835686-835698. To add a platform later, add its
   product id to BOTH lists below. (Old group ids 109227-109232/111670-111679 kept
   in the hide list as harmless leftovers.) */

/* "Our Products" (#products): hide the 14 SMM products (+ old empty SMM groups). */
#products [data-item-id="835684"],
#products [data-item-id="835686"],
#products [data-item-id="835687"],
#products [data-item-id="835688"],
#products [data-item-id="835689"],
#products [data-item-id="835690"],
#products [data-item-id="835691"],
#products [data-item-id="835692"],
#products [data-item-id="835693"],
#products [data-item-id="835694"],
#products [data-item-id="835695"],
#products [data-item-id="835696"],
#products [data-item-id="835697"],
#products [data-item-id="835698"],
#products [data-item-id="839999"],
#products [data-item-id="109227"], #products [data-item-id="109228"],
#products [data-item-id="109229"], #products [data-item-id="109230"],
#products [data-item-id="109231"], #products [data-item-id="109232"],
#products [data-item-id="111670"], #products [data-item-id="111671"],
#products [data-item-id="111672"], #products [data-item-id="111673"],
#products [data-item-id="111674"], #products [data-item-id="111675"],
#products [data-item-id="111676"], #products [data-item-id="111677"],
#products [data-item-id="111678"], #products [data-item-id="111679"] { display: none !important; }

/* "SMM · TEST" section: show ONLY the 14 SMM products. */
#boost-media-1768700000000 [data-item-id] { display: none !important; }
#boost-media-1768700000000 [data-item-id="835684"],
#boost-media-1768700000000 [data-item-id="835686"],
#boost-media-1768700000000 [data-item-id="835687"],
#boost-media-1768700000000 [data-item-id="835688"],
#boost-media-1768700000000 [data-item-id="835689"],
#boost-media-1768700000000 [data-item-id="835690"],
#boost-media-1768700000000 [data-item-id="835691"],
#boost-media-1768700000000 [data-item-id="835692"],
#boost-media-1768700000000 [data-item-id="835693"],
#boost-media-1768700000000 [data-item-id="835694"],
#boost-media-1768700000000 [data-item-id="835695"],
#boost-media-1768700000000 [data-item-id="835696"],
#boost-media-1768700000000 [data-item-id="835697"],
#boost-media-1768700000000 [data-item-id="835698"],
#boost-media-1768700000000 [data-item-id="839999"] { display: block !important; }
/* Discord first in SMM section */
#boost-media-1768700000000 [data-item-id="839999"] { order: -1 !important; }

/* ── RSL_FOLLOWERS_REVEAL removed 2026-08-20 (user: show SMM on the homepage).
   The section is always visible now; the "Followers" navbar link just scrolls to it. */
#boost-media-1768700000000 { scroll-margin-top: 96px; }

/* ── RSL: accepted-payments strip on the product page (under Buy buttons) ── */
.rsl-pay-strip { margin-top: 1.25rem; padding-top: 1.15rem; border-top: 1px solid rgba(255,255,255,.08); }
.rsl-pay-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .55rem; }
.rsl-pay-ico { position: relative; display: inline-flex; flex: 0 0 auto; line-height: 0; }
.rsl-pay-ico svg { width: auto; height: 34px; display: block; filter: drop-shadow(0 2px 5px rgba(0,0,0,.4)); transition: transform .2s ease; }
.rsl-pay-ico--card svg { height: 31px; }
.rsl-pay-ico:hover svg { transform: translateY(-2px); }
.rsl-pay-badge { position: absolute; top: -7px; right: -9px; background: #fff; color: #e00000; font-size: 9px; font-weight: 800; line-height: 1; padding: 2px 4px; border-radius: 6px; box-shadow: 0 2px 5px rgba(0,0,0,.45); border: 1px solid rgba(0,0,0,.1); letter-spacing: .2px; }
.rsl-pay-secure { display: flex; align-items: center; justify-content: center; gap: .4rem; margin-top: .9rem; font-size: .8rem; color: rgba(255,255,255,.42); }
.rsl-pay-secure svg { width: 15px; height: 15px; color: #22c55e; }
@media (max-width: 380px) { .rsl-pay-ico svg { width: 30px; height: 30px; } .rsl-pay-row { gap: .4rem; } }

/* ── RSL: product tabs (Description / Reviews) ───────────────────────────── */
.rsl-prod-tab {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.58);
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  cursor: pointer;
}
.rsl-prod-tab:hover { color: #fff; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); transform: translateY(-1px); }
.rsl-prod-tab.rsl-tab-on {
  color: #fff;
  background: linear-gradient(180deg, rgba(255,0,0,.22), rgba(255,0,0,.06));
  border-color: rgba(255,0,0,.55);
  box-shadow: 0 8px 22px rgba(255,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
}

/* ── RSL: description / tab content card ─────────────────────────────────── */
.rsl-desc-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.012));
  box-shadow: 0 14px 36px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
}
.rsl-desc-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(130% 90% at 100% 0%, rgba(255,0,0,.07), transparent 58%);
  pointer-events: none;
}
.rsl-desc-card::after {
  content: "";
  position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, #ff0000, rgba(255,0,0,0));
}
.rsl-desc-card > * { position: relative; z-index: 1; }
.rsl-desc-card .editor { line-height: 1.75; color: rgba(255,255,255,.86); }
.rsl-desc-card .editor strong { color: #fff; }

/* ── RSL: soft red ambiance on the sides of the Products page ────────────── */
.rsl-products-page::before,
.rsl-products-page::after {
  content: ""; position: fixed; top: 0; bottom: 0; z-index: -1;
  width: 32vw; max-width: 460px; pointer-events: none;
}
.rsl-products-page::before { left: 0;  background: radial-gradient(58% 60% at 0% 42%, rgba(255,0,0,.22), transparent 70%); }
.rsl-products-page::after  { right: 0; background: radial-gradient(58% 60% at 100% 42%, rgba(255,0,0,.22), transparent 70%); }

/* ============================================================
   RSL PACKS — bundle offers section
   ============================================================ */
.rsl-packs { max-width: 1280px; margin: 0 auto; padding: 4rem 1.25rem; }
.rsl-packs-head { margin-bottom: 2rem; }
.rsl-packs-eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  color: #ff6a6a; background: rgba(255,0,0,.10); border: 1px solid rgba(255,0,0,.22);
  padding: .35rem .75rem; border-radius: 999px; margin-bottom: 1rem;
}
.rsl-packs-title { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; color: #fff; }
.rsl-packs-title span { background: linear-gradient(100deg, #ff4d4d, #ff9a9a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rsl-packs-sub { color: rgba(255,255,255,.55); margin-top: .6rem; font-size: 1.02rem; }

.rsl-packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px){ .rsl-packs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .rsl-packs-grid { grid-template-columns: 1fr; } }

.rsl-pack {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: 18px; border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  box-shadow: 0 14px 34px -18px rgba(0,0,0,.7);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.rsl-pack:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--g) 55%, transparent); box-shadow: 0 22px 46px -20px rgba(0,0,0,.85), 0 0 26px -8px var(--g); }

/* featured = full-width horizontal banner */
.rsl-pack--feat { grid-column: 1 / -1; flex-direction: row; }
.rsl-pack--feat .rsl-pack-cover { width: 46%; height: auto; min-height: 230px; }
.rsl-pack--feat .rsl-pack-body { flex: 1; justify-content: center; }
.rsl-pack--feat .rsl-pack-cover-n { font-size: clamp(1.6rem, 3vw, 2.6rem); }
@media (max-width: 700px){ .rsl-pack--feat { flex-direction: column; } .rsl-pack--feat .rsl-pack-cover { width: 100%; min-height: 170px; } }

/* cover (text + icon) */
.rsl-pack-cover {
  position: relative; height: 150px; flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; overflow: hidden;
  background: radial-gradient(115% 85% at 50% 8%, var(--g), transparent 58%), linear-gradient(180deg, #15151d, #0a0a10);
}
.rsl-pack-cover::after { content:""; position:absolute; inset:0; background: radial-gradient(80% 60% at 50% 120%, rgba(0,0,0,.55), transparent 60%); }
.rsl-pack-emoji { font-size: 2.1rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); z-index:1; }
.rsl-pack-cover-t { font-family:'Sora',sans-serif; font-weight: 800; font-size: .7rem; letter-spacing: .35em; color: rgba(255,255,255,.6); z-index:1; margin-top:2px; }
.rsl-pack-cover-n { font-family:'Sora',sans-serif; font-weight: 900; font-size: 1.5rem; letter-spacing: .02em; color:#fff; line-height:1; z-index:1; text-shadow: 0 2px 14px rgba(0,0,0,.6); }

.rsl-pack-hot { position:absolute; top:.7rem; left:.7rem; z-index:2; font-size:.66rem; font-weight:800; letter-spacing:.04em; color:#fff; background: rgba(0,0,0,.45); border:1px solid rgba(255,255,255,.25); padding:.28rem .6rem; border-radius:999px; backdrop-filter: blur(6px); }
.rsl-pack-off { position:absolute; top:.7rem; right:.7rem; z-index:2; font-size:.74rem; font-weight:800; color:#062; background:#c9f7d8; padding:.24rem .5rem; border-radius:8px; box-shadow:0 2px 8px rgba(0,0,0,.4); }

.rsl-pack-body { padding: 1.05rem 1.15rem 1.15rem; display:flex; flex-direction:column; gap:.35rem; }
.rsl-pack-name { font-family:'Sora',sans-serif; font-weight:700; font-size:1.18rem; color:#fff; }
.rsl-pack-tag { font-size:.85rem; color: rgba(255,255,255,.5); }
.rsl-pack-price { display:flex; align-items:baseline; gap:.5rem; flex-wrap:wrap; margin-top:.35rem; }
.rsl-pack-now { font-family:'Sora',sans-serif; font-weight:800; font-size:1.7rem; color:#fff; }
.rsl-pack-was { font-size:.95rem; color: rgba(255,255,255,.4); text-decoration: line-through; }
.rsl-pack-save { font-size:.72rem; font-weight:700; color:#6ee7a8; background: rgba(34,197,94,.12); border:1px solid rgba(34,197,94,.25); padding:.14rem .45rem; border-radius:6px; }

.rsl-pack-actions { display:flex; gap:.55rem; margin-top:.85rem; }
.rsl-pack-btn { flex:1; text-align:center; cursor:pointer; font-weight:700; font-size:.92rem; padding:.62rem .8rem; border-radius:999px; border:1px solid transparent; transition: all .18s ease; }
.rsl-pack-btn--ghost { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.rsl-pack-btn--ghost:hover { background: rgba(255,255,255,.1); color:#fff; }
.rsl-pack-btn--buy { background: linear-gradient(180deg, color-mix(in srgb, var(--g) 90%, #fff 0%), color-mix(in srgb, var(--g) 78%, #000 12%)); color:#fff; box-shadow: 0 8px 20px -8px var(--g); }
.rsl-pack-btn--buy:hover { filter: brightness(1.08); transform: translateY(-1px); }
.rsl-pack-btn--full { width:100%; margin-top:.9rem; padding:.8rem; font-size:1rem; }

/* modal */
.rsl-pack-modal { position: fixed; inset: 0; z-index: 120; display:flex; align-items:center; justify-content:center; padding:1.25rem; background: rgba(3,4,8,.72); backdrop-filter: blur(8px); }
.rsl-pack-dialog { position:relative; width:100%; max-width: 620px; max-height: 88vh; overflow:auto; border-radius:20px; border:1px solid rgba(255,255,255,.1); background: linear-gradient(180deg, #121219, #0a0a10); box-shadow: 0 40px 90px -30px #000, 0 0 40px -14px var(--g); }
.rsl-pack-close { position:absolute; top:.9rem; right:.9rem; width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color:#fff; cursor:pointer; font-size:.85rem; }
.rsl-pack-close:hover { background: rgba(255,255,255,.14); }
.rsl-pack-dialog-head { display:flex; align-items:center; gap:.9rem; padding:1.4rem 1.5rem 1rem; border-bottom:1px solid rgba(255,255,255,.07); }
.rsl-pack-dialog-head .rsl-pack-emoji { font-size:2rem; filter:none; }
.rsl-pack-dialog-head h3 { font-family:'Sora',sans-serif; font-weight:800; font-size:1.4rem; color:#fff; }
.rsl-pack-dialog-head p { color: rgba(255,255,255,.5); font-size:.9rem; }
.rsl-pack-dialog-head .rsl-pack-off { position:static; margin-left:auto; }
.rsl-pack-dialog-body { display:grid; grid-template-columns: 1.3fr 1fr; gap:1.2rem; padding:1.3rem 1.5rem 1.6rem; }
@media (max-width: 560px){ .rsl-pack-dialog-body { grid-template-columns: 1fr; } }
.rsl-pack-included-h { font-size:.7rem; font-weight:700; letter-spacing:.14em; color: rgba(255,255,255,.4); margin-bottom:.7rem; }
.rsl-pack-row { display:flex; align-items:center; gap:.6rem; padding:.6rem .75rem; border-radius:11px; border:1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.025); margin-bottom:.5rem; }
.rsl-pack-row-dot { width:8px; height:8px; border-radius:50%; background: var(--g); box-shadow:0 0 8px var(--g); flex:0 0 auto; }
.rsl-pack-row-n { flex:1; color: rgba(255,255,255,.9); font-size:.9rem; }
.rsl-pack-row-p { color: rgba(255,255,255,.45); font-size:.82rem; }
.rsl-pack-summary { align-self:start; padding:1.1rem; border-radius:14px; border:1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); }
.rsl-pack-sum-row { display:flex; justify-content:space-between; color: rgba(255,255,255,.55); font-size:.9rem; margin-bottom:.5rem; }
.rsl-pack-strike { text-decoration: line-through; }
.rsl-pack-sum-price { display:flex; justify-content:space-between; align-items:baseline; color:#fff; margin:.4rem 0; }
.rsl-pack-sum-price b { font-family:'Sora',sans-serif; font-size:1.9rem; font-weight:800; }
.rsl-pack-sum-save { text-align:center; font-weight:700; color:#6ee7a8; background: rgba(34,197,94,.12); border:1px solid rgba(34,197,94,.25); padding:.4rem; border-radius:9px; font-size:.85rem; }
.rsl-pack-perks { list-style:none; margin:.9rem 0 0; padding:0; display:flex; flex-direction:column; gap:.4rem; }
.rsl-pack-perks li { color: rgba(255,255,255,.6); font-size:.82rem; }

/* RSL_PACKS_HIDE — temporarily hides the "Several accounts, one price" (✦ PACKS) section per user request 2026-07-30. Delete this block to bring the packs back. */
.rsl-packs { display: none !important; }

/* ============================================================
   RSL_LOGIN_MODAL — premium customer login / OTP modal
   (snippets/customer-login-modal.njk)
   ============================================================ */

/* Backdrop */
.rsl-login-overlay {
  background: rgba(3, 4, 8, .72) !important;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

/* Card */
.rsl-login-card {
  position: relative;
  max-width: 25.5rem !important;
  padding: 2.4rem 1.85rem 1.85rem !important;
  border-radius: 22px !important;
  background:
    radial-gradient(130% 85% at 50% -12%, rgba(255, 45, 45, .16), transparent 55%),
    linear-gradient(180deg, rgba(20, 16, 22, .97), rgba(9, 9, 13, .98)) !important;
  border: 1px solid rgba(255, 255, 255, .09) !important;
  box-shadow:
    0 44px 100px -30px rgba(0, 0, 0, .9),
    0 1px 0 rgba(255, 255, 255, .06) inset !important;
}
.rsl-login-card::before {
  content: ''; position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 45, .75), transparent);
}

/* Close */
.rsl-login-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .06);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.rsl-login-close:hover { color: #fff; background: rgba(255, 45, 45, .14); border-color: rgba(255, 45, 45, .4); }
.rsl-login-close svg { width: 18px; height: 18px; }

/* Icon badge */
.rsl-login-badge {
  width: 62px; height: 62px; margin: 0 auto 1.15rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(255, 60, 60, .24), rgba(200, 0, 0, .1));
  border: 1px solid rgba(255, 60, 60, .35);
  box-shadow: 0 14px 32px -14px rgba(255, 0, 0, .65), inset 0 1px 0 rgba(255, 255, 255, .16);
  color: #ff5a5a;
}
.rsl-login-badge svg { width: 28px; height: 28px; display: block; }

/* Titles */
.rsl-login-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 1.35rem !important; font-weight: 700 !important;
  text-align: center; color: #fff; letter-spacing: -.02em; margin: 0;
}
.rsl-login-sub {
  text-align: center; color: rgba(255, 255, 255, .5);
  font-size: .9rem; line-height: 1.5; margin: .5rem auto 0; max-width: 22rem;
}
.rsl-login-email { color: rgba(255, 255, 255, .9); font-weight: 600; }

/* Form */
.rsl-login-form { margin-top: 1.5rem; }
.rsl-field-label {
  display: block; font-size: .82rem; font-weight: 600;
  color: rgba(255, 255, 255, .72); margin-bottom: .5rem;
}
.rsl-modal-input {
  width: 100%; height: 48px; padding: 0 1rem;
  background: rgba(255, 255, 255, .04) !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 12px !important; color: #fff !important; font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.rsl-modal-input::placeholder { color: rgba(255, 255, 255, .3); }
.rsl-modal-input:focus {
  outline: none; border-color: rgba(255, 45, 45, .6) !important;
  background: rgba(255, 255, 255, .06) !important;
  box-shadow: 0 0 0 4px rgba(255, 45, 45, .14);
}

/* OTP inputs */
.rsl-otp-row { display: flex; gap: .55rem; justify-content: center; margin-top: .25rem; }
.rsl-otp-input {
  width: 48px !important; height: 56px !important; flex: 0 0 auto; padding: 0 !important;
  text-align: center; font-family: var(--rsl-num) !important; font-variant-numeric: tabular-nums;
  font-size: 1.5rem !important; font-weight: 600 !important; color: #fff !important;
  background: rgba(255, 255, 255, .04) !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 12px !important; caret-color: #ff4d4d;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}
.rsl-otp-input::placeholder { color: rgba(255, 255, 255, .18); font-weight: 400; }
.rsl-otp-input:focus {
  outline: none; border-color: rgba(255, 45, 45, .75) !important;
  background: rgba(255, 45, 45, .08) !important;
  box-shadow: 0 0 0 4px rgba(255, 45, 45, .16), 0 12px 26px -16px rgba(255, 0, 0, .8);
  transform: translateY(-2px);
}
.rsl-otp-input:not(:placeholder-shown) {
  border-color: rgba(255, 60, 60, .5) !important;
  background: rgba(255, 60, 60, .07) !important;
}
.rsl-otp-input--error {
  border-color: rgba(255, 60, 60, .85) !important;
  box-shadow: 0 0 0 4px rgba(255, 0, 0, .14) !important;
}
.rsl-otp-row--error { animation: rslOtpShake .4s cubic-bezier(.36, .07, .19, .97); }
@keyframes rslOtpShake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

/* Error text */
.rsl-modal-errortext { color: #ff6b6b; font-size: .85rem; margin-top: .8rem; }
.rsl-modal-errortext--center { text-align: center; }

/* Submit */
.rsl-modal-submit {
  width: 100%; height: 50px; margin-top: 1.4rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  border-radius: 14px !important; border: none !important;
  font-family: 'Inter', sans-serif !important; font-weight: 700 !important; font-size: .98rem !important;
  color: #fff !important; cursor: pointer;
  background: linear-gradient(180deg, #ff3838 0%, #cc0606 100%) !important;
  box-shadow: 0 14px 34px -12px rgba(255, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .22);
  transition: transform .18s ease, box-shadow .2s ease, filter .2s ease;
}
.rsl-modal-submit:hover:not(:disabled) {
  transform: translateY(-1px); filter: brightness(1.06);
  box-shadow: 0 18px 44px -12px rgba(255, 0, 0, .72), inset 0 1px 0 rgba(255, 255, 255, .26);
}
.rsl-modal-submit:disabled { opacity: .55; cursor: not-allowed; }
.rsl-modal-submit svg { width: 20px; height: 20px; transition: transform .2s ease; }
.rsl-modal-submit:hover:not(:disabled) svg { transform: translateX(3px); }
.rsl-modal-submit .rsl-spin { transition: none; }

/* Back link (step 2) */
.rsl-login-back {
  display: block; width: 100%; margin-top: 1rem; padding: .35rem;
  background: none; border: none; cursor: pointer;
  color: rgba(255, 255, 255, .45); font-size: .85rem; font-weight: 500;
  transition: color .2s ease;
}
.rsl-login-back:hover { color: rgba(255, 255, 255, .8); }

@media (hover: none) {
  .rsl-modal-submit:hover:not(:disabled) { transform: none; }
}

/* ============================================================
   RSL_CUSTOMER_DASH — redesigned customer dashboard
   (templates/customer-dashboard.njk + snippets/customer-sidebar.njk)
   ============================================================ */
.rsl-cdash { max-width: 78rem; }
.rsl-cdash-glow {
  position: absolute; top: -6%; left: 50%; transform: translateX(-50%);
  width: 60%; max-width: 44rem; aspect-ratio: 2 / 1; z-index: -1; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255, 45, 45, .15), transparent 72%);
  filter: blur(40px);
}

/* shared card */
.rsl-card {
  position: relative;
  background: linear-gradient(180deg, rgba(26, 18, 22, .9), rgba(11, 10, 14, .94));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  box-shadow: 0 24px 60px -34px rgba(0, 0, 0, .9), inset 0 1px 0 rgba(255, 255, 255, .04);
}

/* hero banner */
.rsl-cdash-hero {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  padding: 1.6rem 1.9rem; margin-bottom: 1.15rem; border-radius: 22px;
  background:
    radial-gradient(120% 180% at 0% 0%, rgba(255, 45, 45, .18), transparent 42%),
    linear-gradient(180deg, rgba(28, 19, 23, .94), rgba(12, 10, 14, .95));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 28px 70px -36px rgba(0, 0, 0, .9), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.rsl-cdash-hero-l { display: flex; align-items: center; gap: 1.1rem; }
.rsl-cdash-avatar {
  width: 62px; height: 62px; flex: 0 0 auto; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 700; color: #fff;
  background: linear-gradient(160deg, #ff3b3b, #b00505);
  box-shadow: 0 16px 34px -14px rgba(255, 0, 0, .65), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.rsl-cdash-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #ff6a6a; margin: 0; }
.rsl-cdash-title { font-family: 'Sora', sans-serif !important; font-size: 1.7rem !important; font-weight: 700 !important; color: #fff; margin: .15rem 0 .2rem; letter-spacing: -.02em; }
.rsl-cdash-email { font-size: .9rem; color: rgba(255, 255, 255, .55); margin: 0; }
.rsl-cdash-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem .95rem; border-radius: 999px;
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .75); font-size: .82rem; font-weight: 500;
}
.rsl-cdash-chip svg { width: 16px; height: 16px; color: #ff6a6a; }

/* layout */
.rsl-cdash-layout { display: grid; grid-template-columns: 300px 1fr; gap: 1.15rem; align-items: start; }
@media (max-width: 900px) { .rsl-cdash-layout { grid-template-columns: 1fr; } }
.rsl-cdash-main { display: flex; flex-direction: column; gap: 1.15rem; min-width: 0; }

/* sidebar */
.rsl-side { padding: .75rem; position: sticky; top: 90px; }
@media (max-width: 900px) { .rsl-side { position: static; } }
.rsl-side-head { display: flex; align-items: center; gap: .75rem; padding: .7rem .7rem 1rem; border-bottom: 1px solid rgba(255, 255, 255, .07); margin-bottom: .6rem; }
.rsl-side-avatar {
  width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.05rem; color: #fff;
  background: linear-gradient(160deg, #ff3b3b, #b00505);
  box-shadow: 0 10px 22px -10px rgba(255, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.rsl-side-head-txt { min-width: 0; }
.rsl-side-hello { font-size: .72rem; color: rgba(255, 255, 255, .45); margin: 0; }
.rsl-side-email { font-size: .84rem; color: #fff; font-weight: 500; margin: .1rem 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rsl-side-nav { display: flex; flex-direction: column; gap: .25rem; }
.rsl-side-item {
  display: flex; align-items: center; gap: .7rem; width: 100%;
  padding: .6rem .65rem; border-radius: 12px; cursor: pointer;
  color: rgba(255, 255, 255, .68); font-size: .92rem; font-weight: 500;
  border: 1px solid transparent; background: none; text-align: left;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.rsl-side-item:hover { background: rgba(255, 255, 255, .04); color: #fff; }
.rsl-side-item.rsl-active {
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 45, 45, .16), rgba(255, 45, 45, .05));
  border-color: rgba(255, 60, 60, .3);
}
.rsl-side-ico {
  width: 34px; height: 34px; flex: 0 0 auto; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .75); transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.rsl-side-ico svg { width: 18px; height: 18px; }
.rsl-side-item.rsl-active .rsl-side-ico { background: rgba(255, 45, 45, .2); border-color: rgba(255, 60, 60, .4); color: #ff6a6a; }
.rsl-side-item--split { justify-content: space-between; }
.rsl-side-item-l { display: flex; align-items: center; gap: .7rem; }
.rsl-side-bal { font-family: var(--rsl-num); font-variant-numeric: tabular-nums; font-size: .82rem; font-weight: 600; color: rgba(255, 255, 255, .85); }
.rsl-side-item--logout { color: rgba(255, 120, 120, .9); margin-top: .3rem; }
.rsl-side-item--logout:hover { background: rgba(255, 45, 45, .1); color: #ff6a6a; }
.rsl-side-item--logout:hover .rsl-side-ico { color: #ff6a6a; border-color: rgba(255, 60, 60, .35); }

/* stats */
.rsl-cdash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
@media (max-width: 720px) { .rsl-cdash-stats { grid-template-columns: 1fr; } }
.rsl-stat { padding: 1.4rem 1.5rem; overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.rsl-stat::after {
  content: ''; position: absolute; top: -30%; right: -20%; width: 60%; height: 90%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255, 45, 45, .12), transparent 70%);
}
.rsl-stat:hover { transform: translateY(-3px); border-color: rgba(255, 60, 60, .28); box-shadow: 0 30px 66px -34px rgba(255, 0, 0, .4); }
.rsl-stat-ico {
  width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  color: #ff6a6a; background: linear-gradient(180deg, rgba(255, 60, 60, .2), rgba(200, 0, 0, .06));
  border: 1px solid rgba(255, 60, 60, .28); margin-bottom: 1rem;
}
.rsl-stat-ico svg { width: 22px; height: 22px; }
.rsl-stat-label { font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255, 255, 255, .5); margin: 0; }
.rsl-stat-value { font-family: var(--rsl-num) !important; font-variant-numeric: tabular-nums; font-size: 1.85rem; font-weight: 700; color: #fff; margin: .35rem 0 0; letter-spacing: -.01em; }
.rsl-stat-cta { display: inline-flex; align-items: center; gap: .35rem; margin-top: .9rem; font-size: .85rem; font-weight: 600; color: #ff6a6a; transition: gap .2s ease, color .2s ease; }
.rsl-stat-cta svg { width: 16px; height: 16px; }
.rsl-stat-cta:hover { color: #ff8a8a; gap: .55rem; }

/* latest order */
.rsl-latest { padding: 1.6rem 1.7rem; }
.rsl-latest-head { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.rsl-latest-head .rsl-stat-ico { margin-bottom: 0; }
.rsl-latest-name { font-family: 'Sora', sans-serif !important; font-size: 1.4rem; font-weight: 700; color: #fff; margin: 0; letter-spacing: -.01em; }
.rsl-latest-meta { display: flex; align-items: center; gap: .55rem; margin-top: .55rem; font-size: .85rem; color: rgba(255, 255, 255, .5); flex-wrap: wrap; }
.rsl-latest-invoice { color: #ff6a6a; font-weight: 600; }
.rsl-latest-invoice:hover { color: #ff8a8a; }
.rsl-latest-dot { color: rgba(255, 255, 255, .25); }
.rsl-latest-empty { font-family: 'Sora', sans-serif !important; font-size: 1.4rem; font-weight: 700; color: rgba(255, 255, 255, .85); margin: 0; }
.rsl-latest-shop { display: inline-flex; align-items: center; gap: .4rem; margin-top: .75rem; font-size: .88rem; font-weight: 600; color: #ff6a6a; transition: gap .2s ease, color .2s ease; }
.rsl-latest-shop svg { width: 17px; height: 17px; }
.rsl-latest-shop:hover { gap: .6rem; color: #ff8a8a; }

/* footer actions */
.rsl-cdash-footer { display: flex; justify-content: flex-end; gap: .75rem; flex-wrap: wrap; margin-top: .25rem; }
.rsl-cdash-ghost, .rsl-cdash-danger {
  display: inline-flex; align-items: center; gap: .5rem; cursor: pointer;
  padding: .6rem 1.1rem; border-radius: 999px; font-size: .85rem; font-weight: 600;
  background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .09); color: rgba(255, 255, 255, .7);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.rsl-cdash-ghost svg, .rsl-cdash-danger svg { width: 16px; height: 16px; }
.rsl-cdash-ghost:hover { background: rgba(255, 255, 255, .06); color: #fff; }
.rsl-cdash-danger { color: rgba(255, 110, 110, .85); border-color: rgba(255, 60, 60, .22); }
.rsl-cdash-danger:hover { background: rgba(255, 45, 45, .12); border-color: rgba(255, 60, 60, .5); color: #ff6a6a; }

/* delete-account modal extras */
.rsl-login-badge--danger { color: #ff5a5a; background: linear-gradient(180deg, rgba(255, 60, 60, .24), rgba(200, 0, 0, .1)); }
.rsl-delete-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.5rem; }
.rsl-delete-cancel {
  height: 50px; border-radius: 14px; cursor: pointer; font-weight: 700; font-size: .95rem; color: #fff; font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
  transition: background .2s ease, border-color .2s ease;
}
.rsl-delete-cancel:hover { background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .18); }
.rsl-delete-actions .rsl-modal-submit { margin-top: 0; }

/* My Account button — avatar variant */
.rsl-account-avatar {
  width: 24px; height: 24px; flex: 0 0 auto; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(160deg, #ff4b4b, #c00707);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
}
.rsl-account-avatar svg { width: 15px; height: 15px; }
.rsl-side-avatar svg { width: 22px; height: 22px; }
.rsl-cdash-avatar svg { width: 30px; height: 30px; }

/* ---- Orders list ---- */
.rsl-inv { overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.rsl-inv:hover { border-color: rgba(255, 60, 60, .25); box-shadow: 0 26px 60px -34px rgba(255, 0, 0, .35); }
.rsl-inv-body { padding: 1.25rem 1.4rem; }
.rsl-inv-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.rsl-inv-name { font-family: 'Sora', sans-serif !important; font-size: 1.1rem; font-weight: 700; color: #fff; min-width: 0; }
.rsl-inv-name:hover { color: #ff8a8a; }
.rsl-inv-status { flex: 0 0 auto; font-size: .74rem; font-weight: 600; padding: .25rem .65rem; border-radius: 999px; border-width: 1px; border-style: solid; }
.rsl-inv-meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-top: .6rem; font-size: .85rem; color: rgba(255, 255, 255, .5); }
.rsl-inv-price { color: rgba(255, 255, 255, .85); font-weight: 600; font-family: var(--rsl-num); font-variant-numeric: tabular-nums; }
.rsl-inv-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: .85rem 1.4rem; border-top: 1px solid rgba(255, 255, 255, .06); background: rgba(0, 0, 0, .15); }
.rsl-inv-id { font-size: .82rem; color: rgba(255, 255, 255, .5); }
.rsl-inv-actions { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.rsl-inv-btn { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .85rem; border-radius: 10px; font-size: .82rem; font-weight: 600; color: rgba(255, 255, 255, .8); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease; }
.rsl-inv-btn svg { width: 15px; height: 15px; }
.rsl-inv-btn:hover { background: rgba(255, 255, 255, .09); color: #fff; }
.rsl-inv-btn--primary { color: #ff7a7a; background: rgba(255, 45, 45, .1); border-color: rgba(255, 60, 60, .25); }
.rsl-inv-btn--primary:hover { background: rgba(255, 45, 45, .18); border-color: rgba(255, 60, 60, .5); color: #ff9a9a; }

/* shared empty state */
.rsl-empty { display: flex; flex-direction: column; align-items: flex-start; padding: 2rem 1.7rem; }
.rsl-empty .rsl-stat-ico { margin-bottom: 1rem; }

/* ---- Balance page ---- */
.rsl-bal-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1.15rem; align-items: start; }
@media (max-width: 720px) { .rsl-bal-grid { grid-template-columns: 1fr; } }
.rsl-bal-current { padding: 1.6rem 1.7rem; }
.rsl-bal-current .rsl-stat-value { font-size: 2.2rem; }
.rsl-bal-hint { font-size: .84rem; color: rgba(255, 255, 255, .5); margin: .7rem 0 0; line-height: 1.5; }
.rsl-topup { padding: 1.6rem 1.7rem; }
.rsl-topup-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.rsl-topup-btn { position: relative; min-width: 74px; padding: .7rem 1.1rem; border-radius: 12px; cursor: pointer; font-family: var(--rsl-num); font-variant-numeric: tabular-nums; font-size: 1rem; font-weight: 600; color: #fff; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); transition: background .18s ease, border-color .18s ease, transform .15s ease, box-shadow .18s ease; }
.rsl-topup-btn:hover { background: rgba(255, 45, 45, .12); border-color: rgba(255, 60, 60, .45); transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(255, 0, 0, .6); }
.rsl-topup-btn:disabled { cursor: wait; }

/* transaction table */
.rsl-txn { padding: 1.6rem 1.7rem; }
.rsl-txn-scroll { margin-top: 1rem; overflow-x: auto; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .06); }
.rsl-txn-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.rsl-txn-table thead th { text-align: left; text-transform: uppercase; letter-spacing: .05em; font-size: .72rem; font-weight: 600; color: rgba(255, 255, 255, .5); padding: .8rem 1rem; background: rgba(255, 255, 255, .04); white-space: nowrap; }
.rsl-txn-table tbody td { padding: .85rem 1rem; color: rgba(255, 255, 255, .75); border-top: 1px solid rgba(255, 255, 255, .05); white-space: nowrap; }
.rsl-txn-table tbody tr:hover td { background: rgba(255, 255, 255, .02); }
.rsl-txn-amount { font-family: var(--rsl-num); font-variant-numeric: tabular-nums; color: #fff !important; font-weight: 600; }

/* ---- Entrance animation: desktop only, respects reduced-motion ---- */
@keyframes rslCdashIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .rsl-cdash-hero { animation: rslCdashIn .5s cubic-bezier(.22, .61, .36, 1) both; }
  .rsl-cdash-layout { animation: rslCdashIn .5s cubic-bezier(.22, .61, .36, 1) .08s both; }
}

/* ---- Mobile: keep it light so nothing janks ---- */
@media (max-width: 900px) {
  .rsl-cdash-glow { display: none; }
  .rsl-stat:hover, .rsl-inv:hover, .rsl-topup-btn:hover { transform: none; box-shadow: 0 24px 60px -34px rgba(0, 0, 0, .9); }
}

/* ============================================================
   RSL_BUNDLE — "Bundle Offers" card (per-product pack, real 10%)
   Matches the Bulk-savings / Description card language:
   glass gradient, red top-accent line, red corner glow.
   (snippets/bundle-offers.njk + snippets/bundle-data.njk)
   ============================================================ */
.rsl-bundle {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.012));
  box-shadow: 0 14px 36px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(40px);
  padding: 1.35rem 1.35rem 1.5rem;
}
.rsl-bundle::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(130% 90% at 100% 0%, rgba(255,0,0,.08), transparent 58%);
}
.rsl-bundle::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; z-index: 2;
  background: linear-gradient(90deg, #ff0000, rgba(255,0,0,0));
}
.rsl-bundle > * { position: relative; z-index: 1; }

.rsl-bundle-head {
  display: flex; align-items: center; gap: .85rem; margin-bottom: .25rem;
}
.rsl-bundle-ico {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  font-size: 1.4rem; line-height: 1;
  background: rgba(255,0,0,.10);
  border: 1px solid rgba(255,0,0,.30);
}
.rsl-bundle-ico svg { width: 24px; height: 24px; color: #ff3b3b; }
.rsl-bundle-headtext { flex: 1 1 auto; min-width: 0; }
.rsl-bundle-kicker {
  font-family: 'Inter', sans-serif !important;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.rsl-bundle-title {
  font-family: 'Sora', sans-serif !important;
  font-size: 1.2rem; font-weight: 700; color: #fff; line-height: 1.2;
}
.rsl-bundle-savepill {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: 'Inter', sans-serif !important;
  font-size: .78rem; font-weight: 800; color: #fff; white-space: nowrap;
  padding: .4rem .7rem; border-radius: 999px;
  background: linear-gradient(180deg, #ff4444, #e01414);
  box-shadow: 0 1px 6px rgba(255,0,0,.35);
}
.rsl-bundle-savepill svg { width: 14px; height: 14px; }

.rsl-bundle-sub {
  font-family: 'Inter', sans-serif !important;
  font-size: .9rem; line-height: 1.45; color: rgba(255,255,255,.55);
  margin: .1rem 0 1.1rem;
}
.rsl-bundle-sub span { color: #ff6b6b; font-weight: 700; }

.rsl-bundle-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.rsl-bundle-row {
  display: flex; align-items: center; gap: .8rem;
  padding: .6rem .7rem; border-radius: .8rem;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.025);
  transition: border-color .15s ease, background-color .15s ease;
}
.rsl-bundle-row:hover { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.04); }
.rsl-bundle-row--current {
  border-color: rgba(255,0,0,.28);
  background: rgba(255,0,0,.06);
}
.rsl-bundle-thumb {
  flex: 0 0 auto;
  width: 46px; height: 46px; border-radius: 10px; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.07);
}
.rsl-bundle-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rsl-bundle-thumb-fallback { font-size: 1.3rem; display: inline-flex; }
.rsl-bundle-thumb-fallback svg { width: 22px; height: 22px; color: rgba(255,255,255,.35); }
.rsl-bundle-info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: .12rem; }
.rsl-bundle-name {
  font-family: 'Inter', sans-serif !important;
  font-size: .92rem; font-weight: 600; color: #fff;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%;
}
.rsl-bundle-name--link { text-decoration: none; transition: color .15s ease; }
.rsl-bundle-name--link:hover { color: #ff6b6b; }
.rsl-bundle-price {
  font-family: 'Inter', sans-serif !important;
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.55);
}
.rsl-bundle-thisitem {
  flex: 0 0 auto;
  font-family: 'Inter', sans-serif !important;
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.55);
  padding: .3rem .6rem; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
}
.rsl-bundle-add {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: .25rem;
  font-family: 'Inter', sans-serif !important;
  font-size: .82rem; font-weight: 700; color: #ff5b5b;
  padding: .42rem .8rem; border-radius: 999px;
  background: rgba(255,0,0,.09); border: 1px solid rgba(255,0,0,.22);
  cursor: pointer; transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.rsl-bundle-add:hover { background: rgba(255,0,0,.18); border-color: rgba(255,0,0,.5); color: #fff; }
.rsl-bundle-add svg { width: 15px; height: 15px; }
.rsl-bundle-add--done {
  color: rgba(255,255,255,.7); background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1); cursor: default;
}
.rsl-bundle-add--done:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }

.rsl-bundle-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin: 1.15rem 0 .9rem;
}
.rsl-bundle-totals { display: flex; align-items: baseline; gap: .6rem; }
.rsl-bundle-was {
  font-family: 'Inter', sans-serif !important;
  font-size: .95rem; color: rgba(255,255,255,.4); text-decoration: line-through;
}
.rsl-bundle-now {
  font-family: 'Sora', sans-serif !important;
  font-size: 1.55rem; font-weight: 800; color: #fff; line-height: 1;
}
.rsl-bundle-savenote {
  font-family: 'Inter', sans-serif !important;
  font-size: .82rem; color: rgba(255,255,255,.55); text-align: right;
}
.rsl-bundle-savenote strong { color: #4ade80; font-weight: 800; }

.rsl-bundle-cta {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif !important;
  font-size: .98rem; font-weight: 800; color: #fff;
  padding: .85rem 1rem; border-radius: 999px; border: none; cursor: pointer;
  background: linear-gradient(180deg, #ff3b3b, #d10f0f);
  box-shadow: 0 10px 26px -8px rgba(255,0,0,.55), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.rsl-bundle-cta:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 16px 34px -8px rgba(255,0,0,.65), inset 0 1px 0 rgba(255,255,255,.22); }
.rsl-bundle-cta:active { transform: translateY(0); }
.rsl-bundle-cta-in { display: inline-flex; align-items: center; gap: .5rem; }
.rsl-bundle-cta-in svg { width: 18px; height: 18px; }
.rsl-bundle-cta-in span { color: #fff; }

/* Cart page: bundle discount line */
.rsl-cart-bundleline { color: #4ade80 !important; }
.rsl-cart-bundleline .rsl-cart-bundlelabel { display: inline-flex; align-items: center; gap: .35rem; }

@media (max-width: 640px) {
  .rsl-bundle { padding: 1.1rem 1.1rem 1.25rem; }
  .rsl-bundle-title { font-size: 1.08rem; }
  .rsl-bundle-now { font-size: 1.35rem; }
  .rsl-bundle-thumb { width: 42px; height: 42px; }
  .rsl-bundle-name { font-size: .88rem; }
}

/* =========================================================
   Shrink-on-scroll navbar — big at top, floating glass pill
   on scroll. CSS scroll-driven animation (no JS).
   ========================================================= */
header.sticky { z-index: 50 !important; }

header.sticky .backdrop-blur-2xl {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid transparent;
  will-change: max-width, margin-top, border-radius, box-shadow;
  animation: rslNavShrink linear both;
  animation-timeline: scroll(root);
  animation-range: 0 150px;
}

@keyframes rslNavShrink {
  from {
    max-width: 2200px;
    margin-top: 0;
    border-radius: 0;
    border-color: transparent;
    box-shadow: 0 1px 0 0 rgba(255,255,255,.02);
  }
  to {
    max-width: 1080px;
    margin-top: 12px;
    border-radius: 24px;
    border-color: rgba(255, 64, 76, .26);
    box-shadow: 0 18px 52px -18px rgba(255, 48, 64, .5), inset 0 1px 0 rgba(255,255,255,.07);
  }
}

/* tighten the bar's inner padding as it shrinks */
header.sticky .backdrop-blur-2xl > .mx-auto {
  animation: rslNavPad linear both;
  animation-timeline: scroll(root);
  animation-range: 0 150px;
}
@keyframes rslNavPad {
  to { padding-top: .6rem; padding-bottom: .6rem; }
}

/* graceful fallback for browsers without scroll-driven animations:
   just render the floating pill state (still looks intentional) */
@supports not (animation-timeline: scroll()) {
  header.sticky .backdrop-blur-2xl {
    max-width: 1200px;
    margin-top: 10px;
    border-radius: 22px;
    border-color: rgba(255,64,76,.22);
    box-shadow: 0 16px 48px -18px rgba(255,48,64,.45), inset 0 1px 0 rgba(255,255,255,.06);
    animation: none;
  }
  header.sticky .backdrop-blur-2xl > .mx-auto { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  header.sticky .backdrop-blur-2xl,
  header.sticky .backdrop-blur-2xl > .mx-auto { animation: none; }
}
/* nav-effect sync 1788133527 */