/* ============================================================
   7-Seven PDP — Hero section styles
   Reskinned to the Brain Spa design system (dark, chocolate,
   electric-blue + purple glow). Legacy --rb-* tokens are mapped
   onto Brain Spa --bs-* tokens below; section overrides live at
   the end of this file.
   ============================================================ */

@import url("_ds/brain-spa-design-system-3e8d0c84-a3f1-4d18-ad76-2e2f675cc1d3/tokens/fonts.css");
@import url("_ds/brain-spa-design-system-3e8d0c84-a3f1-4d18-ad76-2e2f675cc1d3/tokens/colors.css");
@import url("_ds/brain-spa-design-system-3e8d0c84-a3f1-4d18-ad76-2e2f675cc1d3/tokens/typography.css");
@import url("_ds/brain-spa-design-system-3e8d0c84-a3f1-4d18-ad76-2e2f675cc1d3/tokens/spacing.css");
@import url("_ds/brain-spa-design-system-3e8d0c84-a3f1-4d18-ad76-2e2f675cc1d3/tokens/effects.css");

/* ---- Brain Spa compatibility layer: map legacy tokens (dark theme default) ---- */
:root {
  --font-body:    var(--bs-font-body);
  --font-display: var(--bs-font-display);

  --rb-bg:          var(--bs-deep-black);
  --rb-bg-inverse:  var(--bs-soft-black);
  --rb-fg:          var(--bs-text);
  --color-fg:       var(--bs-text);
  --rb-white:       var(--bs-surface);
  --rb-paper:       #15151f;

  --rb-red:         var(--bs-primary);
  --rb-red-hover:   var(--bs-primary-hover);
  --rb-red-tint:    rgba(37, 152, 211, 0.16);
  --rb-gold:        var(--bs-amber);
  --rb-success:     var(--bs-success);

  --rb-gray-500:    var(--bs-text-muted);
  --rb-gray-700:    #c4c4d0;
  --color-border:   var(--bs-border);

  --container-xl:   var(--bs-container);
  --container-lg:   1080px;
  --z-sticky:       100;
  --ease-out:       var(--bs-ease-out);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--rb-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
button { font-family: inherit; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.rb-announce {
  background: var(--rb-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.rb-announce strong { font-weight: 800; }
.rb-announce-dot { opacity: 0.6; }

/* ============================================================
   HEADER
   ============================================================ */
.rb-header {
  position: sticky;
  top: 0;
  background: var(--rb-bg);
  z-index: var(--z-sticky);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 200ms var(--ease-out), background 200ms var(--ease-out);
}
.rb-header.scrolled {
  background: rgba(246, 239, 234, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px -10px rgba(0, 0, 0, 0.18);
}
.rb-header-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}
.rb-brand { display: flex; align-items: center; cursor: pointer; }
.rb-brand img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.rb-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.rb-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--rb-fg);
  cursor: pointer;
  text-decoration: none;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 160ms var(--ease-out);
}
.rb-nav a:hover { color: var(--rb-red); }
.rb-utility { display: flex; align-items: center; gap: 16px; }
.rb-utility button {
  background: none; border: 0; cursor: pointer;
  color: var(--rb-fg); padding: 8px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  transition: background 160ms var(--ease-out);
}
.rb-utility button:hover { background: rgba(0, 0, 0, 0.05); }
.rb-utility .rb-cart { position: relative; }
.rb-cart-count {
  position: absolute;
  top: 2px; right: 0;
  background: var(--rb-red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  border-radius: 999px;
  padding: 2px 6px;
  min-width: 18px;
  text-align: center;
  line-height: 1;
}
.rb-utility .rb-mobile-toggle { display: none; }
.rb-mobile-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 8px;
}
.rb-mobile-toggle svg {
  display: block;
  width: 20px;
  height: 20px;
}
.rb-mobile-toggle .icon-close { display: none; }
.rb-mobile-toggle.is-open .icon-menu { display: none; }
.rb-mobile-toggle.is-open .icon-close { display: block; }

/* ============================================================
   HERO LAYOUT
   ============================================================ */
.rb-hero {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 32px 28px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

/* ----- GALLERY ----- */
.rb-gallery { position: sticky; top: 96px; }
.rb-gallery-main {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.rb-gallery-main::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.18), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}
.rb-gallery-main img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  transition: opacity 240ms var(--ease-out), transform 320ms var(--ease-out);
}
.rb-gallery-main img.fading { opacity: 0; transform: scale(0.98); }
.rb-gallery-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--rb-bg-inverse);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 4px;
  z-index: 2;
}
.rb-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.rb-gallery-thumb {
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.rb-gallery-thumb:hover { transform: translateY(-2px); }
.rb-gallery-thumb.active { border-color: var(--rb-red); }
.rb-gallery-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Mobile swipeable gallery */
.rb-gallery-dots { display: none; }

/* ============================================================
   BUY BOX (right column)
   ============================================================ */
.rb-buybox { padding-top: 4px; }

/* Review row */
.rb-bb-review {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
.rb-bb-review .stars { color: var(--rb-gold); font-size: 16px; letter-spacing: 2px; line-height: 1; }
.rb-bb-review .count {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--rb-gray-500);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.rb-bb-review .divider {
  width: 1px; height: 14px;
  background: var(--color-border);
}
.rb-bb-review .verified {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-success);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* Title + supporting */
.rb-bb-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
  margin: 0 0 6px;
  color: var(--rb-fg);
}
.rb-bb-subline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--rb-gray-500);
  margin: 0 0 22px;
}
.rb-bb-subline span { display: inline-block; margin: 0 6px; opacity: 0.35; }

/* Description */
.rb-bb-desc-wrap { margin-bottom: 28px; }
.rb-bb-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.62;
  color: var(--rb-fg);
  margin: 0;
}
.rb-bb-desc + .rb-bb-desc { margin-top: 14px; }
.rb-bb-desc-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rb-bb-readmore {
  background: none;
  border: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rb-fg);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  padding: 12px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rb-bb-readmore:hover { color: var(--rb-red); }
.rb-bb-readmore svg { transition: transform 200ms var(--ease-out); }
.rb-bb-readmore.expanded svg { transform: rotate(180deg); }

/* Selector rows */
.rb-bb-row { margin-bottom: 24px; }
.rb-bb-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}
.rb-bb-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-fg);
}
.rb-bb-row-value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--rb-gray-500);
}
.rb-bb-row-value strong { color: var(--rb-fg); font-weight: 700; }

/* Strength chips */
.rb-bb-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.rb-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  min-height: 46px;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
  background: #fff;
  color: var(--rb-fg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  transition: all 180ms var(--ease-out);
  position: relative;
}
.rb-chip:hover { border-color: var(--rb-fg); transform: translateY(-1px); }
.rb-chip.active {
  background: var(--rb-red);
  color: #fff;
  border-color: var(--rb-red);
  box-shadow: 0 4px 12px -4px rgba(37, 152, 211, 0.45);
}

/* Size cards — image + count band (image-forward, AOV callouts) */
.rb-size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
}
.rb-size-grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
.rb-size {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 16px;
  padding: 0;
  cursor: pointer;
  text-align: center;
  transition: transform 200ms var(--ease-out), border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
}
.rb-size.tagged { margin-top: 12px; }
.rb-size:hover {
  border-color: var(--rb-fg);
  transform: translateY(-3px);
  box-shadow: 0 14px 24px -16px rgba(0, 0, 0, 0.28);
}
.rb-size.active {
  border-color: var(--rb-red);
  border-width: 2px;
  box-shadow: 0 10px 24px -12px rgba(37, 152, 211, 0.4);
}

/* Image well */
.rb-size-img {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px 10px;
  min-height: 0;
  background: #fff;
  border-radius: 15px 15px 0 0;
}
.rb-size-img img {
  max-height: 92px;
  max-width: 88%;
  object-fit: contain;
  transition: transform 220ms var(--ease-out);
}
.rb-size:hover .rb-size-img img { transform: scale(1.04); }

/* Count band at the bottom — fills red when selected */
.rb-size-band {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 6px 12px;
  min-height: 0;
  background: var(--rb-paper);
  border-top: 1px solid var(--color-border);
  border-radius: 0 0 15px 15px;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.rb-size.active .rb-size-band {
  background: var(--rb-red);
  border-top-color: var(--rb-red);
}
.rb-size-count {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 19px;
  color: var(--rb-fg);
  line-height: 1;
  letter-spacing: -0.01em;
}
.rb-size.active .rb-size-count { color: #fff; }
.rb-size-unit {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: inherit;
  margin: 0;
}
.rb-size-per {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--rb-gray-500);
  line-height: 1;
  min-height: 11px;
}
.rb-size.active .rb-size-per { color: rgba(255, 255, 255, 0.85); }

/* Callout ribbon (Most Popular / Best Value) */
.rb-size-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  color: #fff;
  box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.35);
}
.rb-size-ribbon.is-popular { background: var(--rb-red); }
.rb-size-ribbon.is-value { background: var(--rb-gold); color: #fff; }

/* Purchase options card */
.rb-purchase {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 20px;
}
.rb-popt {
  position: relative;
  border-radius: 12px;
  border: 1.5px solid var(--color-border);
  padding: 18px 16px;
  cursor: pointer;
  background: #fff;
  transition: all 180ms var(--ease-out);
}
.rb-popt:hover { border-color: var(--rb-fg); }
.rb-popt.selected {
  background: var(--rb-bg);
  border-color: var(--rb-red);
  box-shadow: 0 2px 12px -6px rgba(37, 152, 211, 0.25);
}

/* Subscribe option — always visually elevated (recommended) */
.rb-popt-sub {
  border-width: 2px;
  border-color: var(--rb-red);
  padding-top: 24px;
}
.rb-popt-sub.recommended {
  background: var(--rb-red-tint);
  box-shadow: 0 2px 12px -6px rgba(37, 152, 211, 0.18);
}
.rb-popt-sub.selected {
  background: var(--rb-red-tint);
  box-shadow: 0 6px 22px -10px rgba(37, 152, 211, 0.4);
}
.rb-popt-ribbon {
  position: absolute;
  top: 0;
  left: 16px;
  transform: translateY(-50%);
  background: var(--rb-red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 10px -4px rgba(37, 152, 211, 0.5);
}
.rb-popt-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.rb-popt-radio {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
  position: relative;
  background: #fff;
  transition: border-color 160ms var(--ease-out);
}
.rb-popt.selected .rb-popt-radio { border-color: var(--rb-red); }
.rb-popt.selected .rb-popt-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--rb-red);
  border-radius: 999px;
}
.rb-popt-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  color: var(--rb-fg);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.rb-popt-label-main {
  font-weight: 800;
  font-size: 15px;
  color: var(--rb-fg);
}
.rb-popt-label-sub {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.35;
  color: var(--rb-gray-500);
}
.rb-popt-price-wrap {
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}
.rb-popt-price {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  color: var(--rb-fg);
  line-height: 1;
}
.rb-popt-sub .rb-popt-price { color: var(--rb-red); }
.rb-popt-strike {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--rb-gray-500);
  text-decoration: line-through;
  margin-bottom: 3px;
}
.rb-popt-save-amt {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--rb-success);
  margin-top: 4px;
}
.rb-popt-expanded {
  margin-top: 14px;
  padding-top: 14px;
  padding-left: 32px;
  border-top: 1px solid rgba(37, 152, 211, 0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rb-popt-freq-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--rb-fg);
}
.rb-popt-freq-select {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--rb-fg);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
}
.rb-popt-feats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}
.rb-popt-feat {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--rb-fg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rb-popt-feat svg { color: var(--rb-success); flex-shrink: 0; }
.rb-popt-feat { align-items: flex-start; }
.rb-popt-feat svg { margin-top: 2px; }

.rb-save-badge {
  display: inline-block;
  background: var(--rb-success);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  line-height: 1;
  padding: 5px 9px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* Quantity + Add to cart */
.rb-bb-cta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 14px;
}
.rb-qty {
  display: inline-flex;
  align-items: stretch;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  padding: 0;
  overflow: hidden;
  height: 54px;
}
.rb-qty button {
  width: 52px;
  background: transparent;
  border: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--rb-fg);
  cursor: pointer;
  transition: background 160ms;
}
.rb-qty button:hover { background: var(--rb-bg); }
.rb-qty .v {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 0 6px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
}

.rb-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--rb-red);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 32px;
  height: 54px;
  cursor: pointer;
  transition: all 180ms var(--ease-out);
  box-shadow: 0 8px 24px -10px rgba(37, 152, 211, 0.55);
  position: relative;
  overflow: hidden;
}
.rb-add-to-cart:hover { background: var(--rb-red-hover); transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(37, 152, 211, 0.65); }
.rb-add-to-cart:active { transform: translateY(0) scale(0.99); }
.rb-add-to-cart .price-pill {
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Payment + shipping reassurance */
.rb-bb-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--rb-fg);
  margin-bottom: 20px;
  padding: 10px 0;
}
.rb-bb-pay strong { font-weight: 800; }
.rb-bb-pay .pay-brand {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2px 6px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--rb-fg);
}

/* Reassurance strip */
.rb-bb-reassure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px 0 8px;
  border-top: 1px solid var(--color-border);
}
.rb-bb-reassure-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.35;
  color: var(--rb-fg);
}
.rb-bb-reassure-item svg { color: var(--rb-red); flex-shrink: 0; }
.rb-bb-reassure-item strong {
  display: block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.rb-bb-reassure-item .s {
  font-weight: 400;
  font-size: 11px;
  color: var(--rb-gray-500);
}

/* ============================================================
   FOOTER
   ============================================================ */
.rb-footer {
  background: var(--rb-red);
  color: #fff;
  padding: 72px 28px 32px;
  margin-bottom: 0;
}
.rb-footer-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
}
.rb-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 44px;
}
.rb-footer-brand img {
  height: 48px;
  filter: none;
  margin-bottom: 16px;
}
.rb-footer-brand p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  margin: 0;
}
.rb-footer h5 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}
.rb-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.rb-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rb-footer-col a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms var(--ease-out);
}
.rb-footer-col a:hover { color: var(--bs-sky-blue); }

.rb-footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 0 28px;
}

.rb-footer-disclaimer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
}
.rb-footer-disclaimer p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.42);
}
.rb-footer-copy {
  margin-top: 6px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .rb-footer { padding: 56px 20px 24px; }
  .rb-footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 32px;
  }
}
@media (max-width: 520px) {
  .rb-footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* Pad bottom so the sticky mobile cart never overlaps the footer */
@media (max-width: 768px) {
  .rb-footer { padding-bottom: calc(110px + env(safe-area-inset-bottom)); }
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.rb-reviews {
  background: #fff;
  padding: 96px 28px;
  border-top: 1px solid var(--color-border);
}
.rb-reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.rb-reviews-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 36px);
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--rb-fg);
  margin: 0 0 48px;
}

/* Star color */
.rb-rstars {
  color: var(--rb-gold);
  letter-spacing: 2px;
  line-height: 1;
  white-space: nowrap;
}

/* Summary row */
.rb-reviews-summary {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}
.rb-rsum-divider {
  width: 1px;
  height: 80px;
  background: var(--color-border);
  justify-self: center;
}
.rb-rsum-avg {
  display: flex; flex-direction: column;
  gap: 8px; align-items: center;
}
.rb-rsum-num { line-height: 1; }
.rb-rsum-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--rb-fg);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.rb-rsum-link:hover { color: var(--rb-red); }
.rb-rsum-based {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--rb-gray-500);
}

.rb-rsum-hist {
  display: flex; flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 360px;
  justify-self: center;
}
.rb-rsum-row {
  display: grid;
  grid-template-columns: auto 1fr 48px;
  gap: 14px;
  align-items: center;
}
.rb-rsum-bar {
  height: 8px;
  background: var(--rb-paper);
  border-radius: 999px;
  overflow: hidden;
}
.rb-rsum-bar-fill {
  height: 100%;
  background: var(--rb-red);
  border-radius: 999px;
  transition: width 400ms var(--ease-out);
}
.rb-rsum-count {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--rb-gray-500);
  text-align: right;
}

.rb-rsum-cta { justify-self: end; }
.rb-write-review {
  background: var(--rb-red);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 26px;
  cursor: pointer;
  transition: all 180ms var(--ease-out);
  box-shadow: 0 6px 18px -8px rgba(37, 152, 211, 0.4);
}
.rb-write-review:hover {
  background: var(--rb-red-hover);
  transform: translateY(-1px);
}

/* Sort */
.rb-reviews-sort {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex; justify-content: flex-start;
}
.rb-sort-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rb-red);
  padding: 4px 0;
}
.rb-sort-btn:hover { color: var(--rb-red-hover); }

/* Review rows */
.rb-review-list { padding-top: 8px; }
.rb-review-row {
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex; flex-direction: column; gap: 14px;
}
.rb-review-meta {
  display: flex; align-items: center; gap: 10px;
}
.rb-review-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--rb-fg);
}
.rb-review-verified {
  background: var(--rb-red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.rb-review-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--rb-fg);
  margin: 0;
  max-width: 900px;
}

.rb-review-more {
  display: flex; justify-content: center;
  padding-top: 36px;
}
.rb-load-more {
  background: transparent;
  border: 1.5px solid var(--rb-fg);
  color: var(--rb-fg);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 180ms var(--ease-out);
}
.rb-load-more:hover {
  background: var(--rb-fg);
  color: #fff;
}

@media (max-width: 900px) {
  .rb-reviews { padding: 64px 20px; }
  .rb-reviews-title { margin-bottom: 32px; }
  .rb-reviews-summary {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px 0;
  }
  .rb-rsum-divider { display: none; }
  .rb-rsum-hist { max-width: 100%; }
  .rb-rsum-cta { justify-self: stretch; }
  .rb-write-review { width: 100%; padding: 16px 24px; }
  .rb-review-row { padding: 22px 0; }
}

/* ============================================================
   FAQs
   ============================================================ */
.rb-faq {
  background: var(--rb-bg);
  padding: 96px 28px;
}
.rb-faq-inner {
  max-width: 880px;
  margin: 0 auto;
}
.rb-faq-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
  color: var(--rb-fg);
  margin: 0 0 28px;
}
.rb-faq-divider {
  width: 64px;
  height: 3px;
  background: var(--rb-red);
  margin: 0 auto 48px;
  border-radius: 999px;
}
.rb-faq-list {
  border-top: 1px solid var(--color-border);
}
.rb-faq-item {
  border-bottom: 1px solid var(--color-border);
}
.rb-faq-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 28px 8px;
  gap: 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--rb-fg);
  text-align: left;
  transition: color 160ms var(--ease-out);
}
.rb-faq-head:hover { color: var(--rb-red); }
.rb-faq-head svg {
  color: var(--rb-fg);
  flex-shrink: 0;
  transition: transform 280ms var(--ease-out), color 160ms var(--ease-out);
}
.rb-faq-head:hover svg { color: var(--rb-red); }
.rb-faq-item.open .rb-faq-head svg { transform: rotate(180deg); color: var(--rb-red); }
.rb-faq-body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease-out);
}
.rb-faq-item.open .rb-faq-body-wrap { grid-template-rows: 1fr; }
.rb-faq-body {
  overflow: hidden;
}
.rb-faq-item.open .rb-faq-body { padding: 0 8px 28px; }
.rb-faq-body p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--rb-fg);
  max-width: 760px;
}

@media (max-width: 768px) {
  .rb-faq { padding: 64px 20px; }
  .rb-faq-divider { margin-bottom: 32px; }
  .rb-faq-head { padding: 22px 4px; }
  .rb-faq-item.open .rb-faq-body { padding: 0 4px 22px; }
}

/* ============================================================
   KEY BENEFITS SECTION
   ============================================================ */
.rb-benefits {
  background: var(--rb-paper);
  padding: 80px 28px;
}
.rb-benefits-inner {
  max-width: var(--container-lg);
  margin: 0 auto;
}
.rb-benefits-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--rb-fg);
  margin: 0 0 56px;
}
.rb-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.rb-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 0 12px;
}
.rb-benefit-circle {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 1.5px solid var(--rb-fg);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rb-red);
  transition: transform 280ms var(--ease-out), background 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.rb-benefit:hover .rb-benefit-circle {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 16px 28px -16px rgba(37, 152, 211, 0.35);
}
.rb-benefit-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rb-fg);
  line-height: 1.2;
}
.rb-benefit-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: var(--rb-gray-500);
  max-width: 220px;
}

@media (max-width: 768px) {
  .rb-benefits { padding: 56px 20px; }
  .rb-benefits-title { margin-bottom: 40px; }
  .rb-benefits-grid { grid-template-columns: 1fr; gap: 36px; }
  .rb-benefit-circle { width: 84px; height: 84px; }
}

/* ============================================================
   DETAIL ACCORDION (Product Details / Supplement Facts / Safety / COA)
   ============================================================ */
.rb-detail-acc {
  margin-top: 28px;
  border-top: 1px solid var(--color-border);
}
.rb-detail-item {
  border-bottom: 1px solid var(--color-border);
}
.rb-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--rb-fg);
  text-align: left;
}
.rb-detail-head:hover { color: var(--rb-red); }
.rb-detail-head .lh {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.rb-detail-head > svg:last-child {
  color: var(--rb-fg);
  transition: transform 240ms var(--ease-out);
  flex-shrink: 0;
}
.rb-detail-item.open .rb-detail-head > svg:last-child {
  transform: rotate(180deg);
}
.rb-detail-body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms var(--ease-out);
}
.rb-detail-item.open .rb-detail-body-wrap {
  grid-template-rows: 1fr;
}
.rb-detail-body {
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--rb-fg);
}
.rb-detail-item.open .rb-detail-body {
  padding: 0 4px 22px;
}
.rb-detail-body p { margin: 0 0 12px; }
.rb-detail-body p:last-child { margin-bottom: 0; }
.rb-detail-body ul {
  margin: 0; padding-left: 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.rb-detail-link {
  color: var(--rb-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.rb-detail-link:hover { color: var(--rb-red-hover); }

/* ============================================================
   MOBILE STICKY ADD-TO-CART
   ============================================================ */
.rb-sticky-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-border);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: none;
  gap: 12px;
  align-items: center;
  transform: translateY(120%);
  transition: transform 300ms var(--ease-out);
  box-shadow: 0 -8px 24px -12px rgba(0, 0, 0, 0.18);
}
.rb-sticky-cart.show { transform: translateY(0); }
.rb-sticky-cart .pimg {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--rb-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rb-sticky-cart .pimg img { max-height: 38px; }
.rb-sticky-cart .meta { flex: 1; min-width: 0; }
.rb-sticky-cart .t {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  color: var(--rb-fg);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rb-sticky-cart .v {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--rb-gray-500);
}
.rb-sticky-cart .price {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  color: var(--rb-fg);
  margin-right: 4px;
}
.rb-sticky-cart .rb-add-to-cart {
  padding: 0 18px;
  height: 44px;
  font-size: 13px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .rb-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 20px 120px;
  }
  .rb-gallery { position: static; }
  .rb-gallery-main { min-height: 420px; padding: 20px; }
  .rb-gallery-main img { max-height: 380px; }
  .rb-gallery-thumbs { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 768px) {
  .rb-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    gap: 12px;
  }
  .rb-brand { flex-shrink: 0; }
  .rb-nav { display: none; }
  .rb-utility {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .rb-brand img { height: 34px; width: auto; }
  .rb-utility .rb-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--rb-fg);
  }
  .rb-announce {
    font-size: 11px;
    letter-spacing: 0.14em;
    padding: 9px 12px;
  }

  .rb-bb-title { font-size: 28px; }
  .rb-bb-row { margin-bottom: 20px; }

  .rb-size-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .rb-size-grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
  .rb-size { padding: 0; min-height: 180px; }
  .rb-size-img { min-height: 0; padding: 12px 6px 6px; }
  .rb-size-img img { max-height: 62px; }
  .rb-size-count { font-size: 16px; }
  .rb-size-unit { font-size: 11px; }
  .rb-size-per { font-size: 10px; }
  .rb-size-ribbon { font-size: 8.5px; padding: 3px 7px; letter-spacing: 0.05em; }

  .rb-bb-reassure { grid-template-columns: 1fr; gap: 12px; }
  .rb-bb-reassure-item { padding: 6px 0; }

  .rb-sticky-cart { display: flex; }

  .rb-gallery-main { min-height: 360px; }
  .rb-gallery-main img { max-height: 320px; }
  .rb-gallery-thumbs { grid-template-columns: repeat(5, 1fr); }

  .rb-bb-cta-row {
    grid-template-columns: 1fr;
  }
  .rb-qty { width: fit-content; margin: 0 auto; }
}

@media (max-width: 480px) {
  .rb-hero { padding: 16px 14px 130px; }
  .rb-utility { gap: 4px; }
}

/* ============================================================
   BRAIN SPA THEME OVERRIDES
   Dark chocolate-and-blue reskin. Placed last so these win over
   the legacy light-theme rules above (same specificity, later).
   ============================================================ */

/* Ambient near-black field with a restrained purple bloom */
body {
  background:
    radial-gradient(1100px 620px at 76% -8%, rgba(126, 91, 255, 0.10), transparent 60%),
    var(--bs-deep-black);
  background-attachment: fixed;
}

/* Display type — Space Grotesk on headlines and prices */
.rb-bb-title,
.rb-reviews-title,
.rb-faq-title,
.rb-benefits-title,
.rb-faq-head {
  font-family: var(--font-display);
}
.rb-popt-price,
.rb-popt-strike,
.rb-popt-save-amt,
.rb-size-count,
.rb-qty .v,
.rb-add-to-cart .price-pill,
.rb-sticky-cart .price,
.rb-rsum-num {
  font-family: var(--font-display);
}

/* Announcement — signature blue→purple glow band */
.rb-announce { background: var(--bs-gradient-glow); }

/* Header — glassy near-black, white wordmark */
.rb-header {
  background: rgba(5, 5, 9, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(var(--bs-blur));
  -webkit-backdrop-filter: blur(var(--bs-blur));
}
.rb-header.scrolled {
  background: rgba(5, 5, 9, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.rb-brand img { filter: none; height: 46px; width: auto; object-fit: contain; }
.rb-utility button:hover { background: rgba(255, 255, 255, 0.08); }

/* Gallery — product floats on a blue/purple psychedelic panel */
.rb-gallery-main {
  background:
    radial-gradient(95% 95% at 72% 8%, rgba(126, 91, 255, 0.32), transparent 55%),
    radial-gradient(95% 95% at 18% 92%, rgba(37, 152, 211, 0.26), transparent 55%),
    #0c0c18;
  border: 1px solid rgba(126, 91, 255, 0.28);
  border-radius: var(--bs-radius-xl);
  box-shadow: var(--bs-shadow-lg), var(--bs-glow-sm);
}
.rb-gallery-main::before {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45), transparent 70%);
}
.rb-gallery-badge {
  background: rgba(5, 5, 9, 0.72);
  box-shadow: var(--bs-glow-sm);
  border-radius: var(--bs-radius-pill);
}
.rb-gallery-thumb {
  background: var(--bs-surface);
  border: 2px solid var(--bs-border);
}
.rb-gallery-thumb.active {
  border-color: var(--bs-primary);
  box-shadow: var(--bs-glow-sm);
}

/* Buy box — dark psychedelic surface (blue↔purple bloom + glow) */
.rb-buybox {
  background:
    radial-gradient(130% 90% at 100% 0%, rgba(126, 91, 255, 0.18), transparent 55%),
    radial-gradient(130% 90% at 0% 100%, rgba(37, 152, 211, 0.13), transparent 55%),
    var(--bs-soft-black);
  border: 1px solid rgba(126, 91, 255, 0.30);
  border-radius: var(--bs-radius-2xl);
  padding: 34px 32px;
  box-shadow: var(--bs-shadow-lg), 0 0 70px rgba(126, 91, 255, 0.16);
  --rb-fg:        var(--bs-text);
  --color-fg:     var(--bs-text);
  --rb-gray-500:  var(--bs-text-muted);
  --color-border: rgba(255, 255, 255, 0.14);
  --rb-bg:        rgba(255, 255, 255, 0.05);
  --rb-paper:     rgba(255, 255, 255, 0.05);
  --rb-red-tint:  rgba(37, 152, 211, 0.16);
}
/* Dark interior surfaces inside the buy box */
.rb-buybox .rb-chip,
.rb-buybox .rb-popt,
.rb-buybox .rb-qty,
.rb-buybox .rb-size,
.rb-buybox .rb-bb-pay .pay-brand { background: rgba(255, 255, 255, 0.045); }
.rb-buybox .rb-popt-radio {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}
.rb-buybox .rb-size-img { background: linear-gradient(150deg, rgba(37, 152, 211, 0.26) 0%, rgba(126, 91, 255, 0.30) 100%), #0e0e1a; }
.rb-buybox .rb-popt.selected { background: rgba(37, 152, 211, 0.12); }
.rb-buybox .rb-popt-sub.recommended { background: rgba(126, 91, 255, 0.12); }
.rb-buybox .rb-popt-sub.selected { background: rgba(37, 152, 211, 0.14); }

/* Psychedelic hero title + ribbon */
.rb-bb-title {
  background: var(--bs-gradient-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.rb-size-ribbon.is-popular { background: var(--bs-gradient-glow); }

/* CTA — electric blue with signature glow */
.rb-add-to-cart { box-shadow: var(--bs-glow-cta); }
.rb-add-to-cart:hover { box-shadow: 0 10px 34px rgba(37, 152, 211, 0.5); }

/* Reviews — raised soft-black section */
.rb-reviews {
  background: var(--bs-surface);
  border-top: 1px solid var(--bs-border);
}
.rb-rsum-bar { background: rgba(255, 255, 255, 0.08); }
.rb-load-more { border-color: rgba(255, 255, 255, 0.28); }
.rb-load-more:hover {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
  color: var(--bs-on-primary);
}

/* Key Benefits — surreal psychedelic backdrop, glowing rings */
.rb-benefits { background: var(--bs-gradient-psych); }
.rb-benefit-circle {
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--bs-primary);
}
.rb-benefit:hover .rb-benefit-circle {
  transform: translateY(-4px);
  background: rgba(37, 152, 211, 0.14);
  border-color: var(--bs-primary);
  box-shadow: var(--bs-glow-md);
}

/* Footer — deep psychedelic gradient, wordmark shown as-is (rainbow on dark) */
.rb-footer {
  background: var(--bs-gradient-psych);
  border-top: 1px solid var(--bs-border);
}
.rb-footer-brand img { filter: none; }

/* Mobile sticky bar — dark glass */
.rb-sticky-cart {
  background: rgba(16, 16, 24, 0.86);
  border-top: 1px solid var(--bs-border);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
}
.rb-sticky-cart .pimg { background: var(--bs-chocolate); }

/* ============================================================
   BRAIN SPA CHOCOLATES — hero/buy box specifics
   ============================================================ */
.rb-bb-lead {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 26px;
}

/* Full-width CTA (no separate qty stepper — bar count is the quantity) */
.rb-add-to-cart--full {
  width: 100%;
  margin: 6px 0 12px;
}

/* Trust row under the CTA */
.rb-bb-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--rb-gray-500);
  padding: 2px 0 4px;
  flex-wrap: wrap;
}
.rb-bb-trust span { opacity: 0.5; }

/* Bar-count card extras */
.rb-size-priceline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 3px;
}
.rb-size-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--rb-fg);
  line-height: 1;
  letter-spacing: -0.01em;
}
.rb-size.active .rb-size-price { color: #fff; }
.rb-size-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--bs-success);
  background: rgba(47, 207, 126, 0.14);
  border-radius: var(--bs-radius-pill);
  padding: 3px 8px;
}
.rb-size-save:empty {
  visibility: hidden;
  background: transparent;
}
.rb-size.active .rb-size-save {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}
.rb-size-ribbon.is-value {
  background: var(--rb-gold);
  color: var(--bs-deep-black);
}
.rb-size-ribbon.is-starter {
  background: #33333f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.5);
}
/* Quantity + CTA row */
.rb-bb-cta-row { margin-top: 4px; }
.rb-bb-cta-row .rb-add-to-cart { width: 100%; }

/* Microcopy + bulk note under the bar-count selector */
.rb-bb-microcopy {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--rb-gray-500);
  text-align: center;
}
.rb-bb-bulk {
  margin-top: 10px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--rb-fg);
  background: rgba(37, 152, 211, 0.12);
  border: 1px solid rgba(37, 152, 211, 0.30);
  border-radius: var(--bs-radius-pill);
  padding: 9px 14px;
}
.rb-bb-bulk strong { color: var(--bs-sky-blue); font-weight: 800; }

/* Gallery — user-fillable image slots + "add" thumbnails */
.rb-gallery-main .rb-gallery-slot {
  display: block;
  width: 100%;
  min-height: 512px;
}
.rb-thumb-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--bs-text-muted);
}
@media (max-width: 1024px) {
  .rb-gallery-main .rb-gallery-slot { min-height: 372px; }
}
@media (max-width: 768px) {
  .rb-gallery-main .rb-gallery-slot { min-height: 312px; }
}

/* ============================================================
   DOSING / SERVING EDUCATION SECTION
   ============================================================ */
.rb-dose {
  background:
    radial-gradient(1000px 500px at 82% -12%, rgba(126, 91, 255, 0.12), transparent 60%),
    var(--bs-deep-black);
  padding: 88px 28px;
  border-top: 1px solid var(--bs-border);
}
.rb-dose-inner {
  max-width: var(--container-lg);
  margin: 0 auto;
}
.rb-dose-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
  color: var(--bs-text);
  margin: 0 0 16px;
}
.rb-dose-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bs-text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}
.rb-dose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rb-dose-card {
  background: var(--bs-surface);
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  padding: 30px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: transform 220ms var(--bs-ease), box-shadow 220ms var(--bs-ease), border-color 220ms var(--bs-ease);
}
.rb-dose-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 91, 255, 0.42);
  box-shadow: var(--bs-glow-md);
}
.rb-dose-icon {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.rb-dose-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--bs-text);
  line-height: 1.15;
}
.rb-dose-amt {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bs-sky-blue);
  background: rgba(37, 152, 211, 0.12);
  border: 1px solid rgba(37, 152, 211, 0.28);
  border-radius: var(--bs-radius-pill);
  padding: 5px 13px;
}
.rb-dose-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--bs-text-muted);
  margin: 0;
}
.rb-dose-safety {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin: 44px auto 0;
  max-width: 600px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--bs-text-muted);
}
.rb-dose-safety svg { color: var(--bs-sky-blue); flex-shrink: 0; }

/* Simplified chocolate-bar icon */
.rb-choc-bar {
  display: inline-grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  padding: 6px;
  border-radius: 10px;
  background: linear-gradient(135deg, #E9CE7E 0%, #C29736 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18), var(--bs-shadow-md);
}
.rb-choc-piece {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(10, 10, 20, 0.55);
  box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.45), inset 0 2px 2px rgba(255, 255, 255, 0.05);
}
.rb-choc-piece.is-filled {
  background: linear-gradient(150deg, var(--bs-brain-blue), var(--bs-purple));
  box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.28), 0 0 8px rgba(126, 91, 255, 0.45);
}
.rb-choc-piece.is-half {
  background: linear-gradient(90deg, var(--bs-brain-blue) 0 50%, rgba(10, 10, 20, 0.55) 50% 100%);
  box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.28);
}

@media (max-width: 900px) {
  .rb-dose { padding: 68px 20px; }
  .rb-dose-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .rb-dose-sub { margin-bottom: 40px; }
}
@media (max-width: 520px) {
  .rb-dose-grid { grid-template-columns: 1fr; }
  .rb-dose-card { flex-direction: row; text-align: left; align-items: center; gap: 16px; padding: 20px; flex-wrap: wrap; }
  .rb-dose-icon { margin-bottom: 0; }
  .rb-dose-desc { flex-basis: 100%; }
}

/* ============================================================
   CUSTOMER REVIEWS — editorial list on cream
   ============================================================ */
.rb-crev-section {
  background:
    radial-gradient(900px 460px at 20% -10%, rgba(37, 152, 211, 0.10), transparent 60%),
    var(--bs-surface);
  color: var(--bs-text);
  padding: 88px 28px;
  border-top: 1px solid var(--bs-border);
}
.rb-crev-inner {
  max-width: 940px;
  margin: 0 auto;
}
.rb-crev-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-align: center;
  color: var(--bs-text);
  margin: 0 0 14px;
}
.rb-crev-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bs-text-muted);
  text-align: center;
  margin: 0 auto 52px;
  max-width: 560px;
}
.rb-crev-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.rb-crev-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Reviewer identity */
.rb-crev-who {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.rb-crev-avatar {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--bs-gradient-glow);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px -4px rgba(126, 91, 255, 0.5);
}
.rb-crev-id { display: flex; flex-direction: column; gap: 3px; }
.rb-crev-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--bs-text);
  line-height: 1.2;
}
.rb-crev-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--bs-sky-blue);
  white-space: nowrap;
}
.rb-crev-reviewing {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--bs-text-muted);
}

/* Review content */
.rb-crev-body { display: flex; flex-direction: column; gap: 8px; }
.rb-crev-stars {
  color: var(--rb-gold);
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
}
.rb-crev-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--bs-text);
  margin: 2px 0 0;
  line-height: 1.25;
}
.rb-crev-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.62;
  color: var(--bs-text-muted);
  margin: 0;
  max-width: 620px;
}

@media (max-width: 720px) {
  .rb-crev-section { padding: 60px 20px; }
  .rb-crev-sub { margin-bottom: 36px; }
  .rb-crev-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
}

/* ============================================================
   FAQ — rounded accordion rows on dark
   ============================================================ */
.rb-cfaq {
  background:
    radial-gradient(900px 500px at 18% -10%, rgba(126, 91, 255, 0.10), transparent 60%),
    var(--bs-deep-black);
  padding: 88px 28px;
  border-top: 1px solid var(--bs-border);
}
.rb-cfaq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.rb-cfaq-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-align: center;
  color: var(--bs-text);
  margin: 0 0 14px;
}
.rb-cfaq-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bs-text-muted);
  text-align: center;
  margin: 0 auto 48px;
  max-width: 520px;
}
.rb-cfaq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rb-cfaq-item {
  background: var(--bs-surface);
  border: 1px solid var(--bs-border);
  border-radius: var(--bs-radius-lg);
  overflow: hidden;
  transition: border-color 200ms var(--bs-ease), background 200ms var(--bs-ease);
}
.rb-cfaq-item.open {
  border-color: rgba(37, 152, 211, 0.45);
  background:
    linear-gradient(180deg, rgba(37, 152, 211, 0.06), transparent 60%),
    var(--bs-surface);
}
.rb-cfaq-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.rb-cfaq-q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--bs-text);
}
.rb-cfaq-toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bs-border);
  color: var(--bs-text);
  transition: background 200ms var(--bs-ease), color 200ms var(--bs-ease), border-color 200ms var(--bs-ease);
}
.rb-cfaq-item.open .rb-cfaq-toggle {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}
.rb-cfaq-body-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--bs-ease);
}
.rb-cfaq-item.open .rb-cfaq-body-wrap { grid-template-rows: 1fr; }
.rb-cfaq-body { overflow: hidden; }
.rb-cfaq-item.open .rb-cfaq-body { padding: 0 24px 24px; }
.rb-cfaq-body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--bs-text-muted);
  max-width: 680px;
}

@media (max-width: 720px) {
  .rb-cfaq { padding: 60px 20px; }
  .rb-cfaq-sub { margin-bottom: 36px; }
  .rb-cfaq-head { padding: 18px 18px; gap: 14px; }
  .rb-cfaq-q { font-size: 16px; }
  .rb-cfaq-item.open .rb-cfaq-body { padding: 0 18px 20px; }
}

/* ============================================================
   NAVIGATION — 5-link fit + mobile menu
   ============================================================ */
.rb-nav { gap: 26px; }
.rb-nav a { font-size: 13px; letter-spacing: 0.06em; }
@media (max-width: 1080px) {
  .rb-nav { gap: 18px; }
  .rb-nav a { font-size: 12px; letter-spacing: 0.04em; }
}

/* Collapsible mobile menu (hidden on desktop) */
.rb-mobile-menu { display: none; }
@media (max-width: 768px) {
  .rb-mobile-menu {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 260ms var(--bs-ease);
    background: rgba(5, 5, 9, 0.97);
    backdrop-filter: blur(var(--bs-blur));
    -webkit-backdrop-filter: blur(var(--bs-blur));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .rb-mobile-menu.open { grid-template-rows: 1fr; }
  .rb-mobile-nav {
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .rb-mobile-nav a {
    padding: 16px 20px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bs-text);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: color 160ms var(--ease-out), background 160ms var(--ease-out);
  }
  .rb-mobile-nav a:first-child { border-top: 0; }
  .rb-mobile-nav a:hover,
  .rb-mobile-nav a:active { color: var(--bs-sky-blue); background: rgba(255, 255, 255, 0.04); }
}

/* ============================================================
   CART DRAWER + TOAST
   ============================================================ */
.rb-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(5, 5, 9, 0.62);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: flex-end;
}
.rb-cart-drawer {
  width: min(420px, 100vw);
  height: 100%;
  background: var(--bs-soft-black);
  border-left: 1px solid var(--bs-border);
  display: flex;
  flex-direction: column;
  animation: rbCartIn 240ms var(--ease-out);
}
@keyframes rbCartIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.rb-cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--bs-border);
}
.rb-cart-drawer-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}
.rb-cart-close {
  background: transparent;
  border: 0;
  color: var(--bs-text-muted);
  cursor: pointer;
  padding: 4px;
}
.rb-cart-meter {
  padding: 14px 22px;
  border-bottom: 1px solid var(--bs-border);
}
.rb-cart-meter p {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--bs-text-muted);
  font-weight: 600;
}
.rb-cart-meter-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--bs-border);
  overflow: hidden;
}
.rb-cart-meter-bar > div {
  height: 100%;
  background: var(--bs-gradient-glow);
  transition: width 280ms var(--ease-out);
}
.rb-cart-lines {
  flex: 1;
  overflow-y: auto;
  padding: 8px 22px;
}
.rb-cart-empty {
  text-align: center;
  color: var(--bs-text-muted);
  margin: 48px 0;
}
.rb-cart-line {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--bs-border);
}
.rb-cart-line-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bs-chocolate);
  flex-shrink: 0;
}
.rb-cart-line-img img { width: 100%; height: 100%; object-fit: cover; }
.rb-cart-line-body { flex: 1; min-width: 0; }
.rb-cart-line-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}
.rb-cart-line-top strong {
  font-family: var(--font-display);
  font-size: 14px;
}
.rb-cart-line-remove {
  background: transparent;
  border: 0;
  color: var(--bs-text-muted);
  cursor: pointer;
  padding: 0;
}
.rb-cart-line-meta {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--bs-text-muted);
}
.rb-cart-line-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.rb-cart-drawer .rb-qty {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--bs-border);
  height: auto;
}
.rb-cart-drawer .rb-qty button {
  color: var(--bs-text);
}
.rb-cart-drawer .rb-qty button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.rb-cart-drawer .rb-qty .v {
  color: #fff;
}
.rb-qty--sm button { width: 28px; height: 28px; font-size: 16px; }
.rb-qty--sm .v { min-width: 24px; font-size: 13px; }
.rb-cart-line-price { font-weight: 700; }
.rb-cart-line-checkout {
  margin-top: 10px;
  width: 100%;
  border: 1px solid var(--bs-border);
  background: transparent;
  color: var(--bs-sky-blue);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.rb-cart-drawer-foot {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--bs-border);
}
.rb-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  color: var(--bs-text-muted);
  font-size: 14px;
}
.rb-cart-subtotal strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.rb-cart-mixed-note {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--bs-amber);
}
.rb-cart-continue {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--bs-text-muted);
  text-decoration: underline;
}
.rb-toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%);
  z-index: 240;
  background: rgba(16, 16, 24, 0.96);
  border: 1px solid var(--bs-border);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  animation: rbToastIn 220ms var(--ease-out);
}
@keyframes rbToastIn {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ============================================================
   FEATURED REVIEW IMAGE
   ============================================================ */
.rb-featured-review {
  padding: 0 20px 56px;
}
.rb-featured-review-inner {
  max-width: var(--container-lg);
  margin: 0 auto;
}
.rb-featured-review img {
  width: min(100%, 520px);
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* ============================================================
   CHECKOUT LOADING OVERLAY
   ============================================================ */
body.bs-checkout-loading-active {
  overflow: hidden;
}
.bs-checkout-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(37, 152, 211, 0.22), transparent 55%),
    radial-gradient(90% 70% at 80% 100%, rgba(126, 91, 255, 0.18), transparent 50%),
    rgba(5, 5, 9, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms var(--ease-out), visibility 220ms;
}
.bs-checkout-loading.is-visible {
  opacity: 1;
  visibility: visible;
}
.bs-checkout-loading-inner {
  text-align: center;
  max-width: 320px;
}
.bs-checkout-loading-spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--bs-primary, #2598d3);
  border-radius: 50%;
  animation: bsCheckoutSpin 0.75s linear infinite;
}
@keyframes bsCheckoutSpin {
  to { transform: rotate(360deg); }
}
.bs-checkout-loading-title {
  margin: 0 0 8px;
  font-family: var(--font-display, system-ui, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.bs-checkout-loading-sub {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--bs-text-muted, #a6a6b4);
}
