/** Shopify CDN: Minification failed

Line 632:2 Unexpected "{"

**/
/* ═══════════════════════════════════════════════════════
   SOLARA — LUXURY BLACK & GOLD THEME CSS
   Premium · Sophisticated · High-Converting
═══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Gold palette */
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-deep:   #A07830;
  --gold-muted:  #D4B87A;

  /* Neutrals (replaces blush/rose/coral) */
  --blush:      #1A1A1A;
  --rose:       #C9A84C;
  --coral:      #C9A84C;

  /* Backgrounds */
  --sand:       #0D0D0D;
  --tan:        #C9A84C;
  --sky:        #1A1A1A;
  --sage:       #C9A84C;
  --white:      #FFFFFF;
  --off-white:  #0A0A0A;
  --linen:      #111111;
  --light-gray: #1C1C1C;
  --border:     #2A2A2A;

  /* Text */
  --text:       #F5F0E8;
  --text-mid:   #B8A88A;
  --text-light: #6B6055;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.35);
  --shadow-md:  0 6px 28px rgba(0,0,0,0.5);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.65);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-full: 999px;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: #0A0A0A;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: linear-gradient(90deg, #0D0D0D 0%, #1A1500 40%, #0D0D0D 100%);
  border-bottom: 1px solid #C9A84C44;
  color: var(--gold-light);
  padding: 11px 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ann-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 24s linear infinite;
}
.ann-sep {
  opacity: 0.5;
  font-size: 14px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HEADER ── */
.site-header {
  background: #0D0D0D;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid #C9A84C33;
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
}
.logo-wordmark {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gold);
  background: linear-gradient(135deg, #C9A84C, #E8C96A, #A07830);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border-radius: var(--radius-full);
  transition: background var(--transition), color var(--transition);
}
.header-cart-btn:hover { background: #1C1C1C; color: var(--gold); }
.cart-count {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,36,32,0.45);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #111111;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}
.cart-overlay.is-open .cart-drawer { transform: translateX(0); }
.cart-head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}
.cart-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
}
.cart-close-btn:hover { background: #1C1C1C; color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty-msg {
  text-align: center;
  color: var(--text-light);
  padding: 48px 0;
  font-size: 15px;
}
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: #111111;
}
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; line-height: 1.3; margin-bottom: 3px; }
.cart-item-variant { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.cart-item-price { font-size: 14px; font-weight: 600; color: var(--gold); }
.cart-item-qty { font-size: 13px; color: var(--text-light); flex-shrink: 0; }
.cart-foot {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
  background: #0D0D0D;
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.cart-ship-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #C9A84C, #E8C96A, #A07830);
  color: #0A0A0A;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  margin-bottom: 10px;
}
.cart-checkout-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.cart-view-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.cart-view-link:hover { color: var(--gold); }

/* ── PRODUCT PAGE LAYOUT ── */
.product-page { background: #0A0A0A; }

.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}
.breadcrumb a {
  color: var(--text-light);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-current] { color: var(--text-mid); font-weight: 500; }

/* ── PRODUCT HERO ── */
.product-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── GALLERY ── */
.gallery-col { position: sticky; top: 90px; }

.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111111;
  box-shadow: var(--shadow-md);
  border: 1px solid #2A2A2A;
  /* No forced aspect-ratio — images render at natural size */
}
.gallery-slide {
  position: relative;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease;
}
.gallery-slide.is-active {
  opacity: 1;
  height: auto;
  overflow: visible;
}
.gallery-slide img {
  width: 100%;
  height: auto; /* natural height — NO upscaling */
  display: block;
  object-fit: unset; /* don't stretch or crop */
  image-rendering: auto;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.9);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), transform var(--transition);
}
.gallery-arrow:hover { background: var(--gold-light); transform: translateY(-50%) scale(1.05); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.thumb-btn {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2.5px solid transparent;
  transition: border-color var(--transition), opacity var(--transition);
  opacity: 0.65;
  cursor: pointer;
}
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.thumb-btn:hover { opacity: 0.85; }
.thumb-btn.is-active {
  border-color: var(--gold);
  opacity: 1;
}

/* ── FORM COLUMN ── */
.form-col {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars-inline {
  color: #F59E0B;
  font-size: 16px;
  letter-spacing: 1px;
}
.eyebrow-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}
.product-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-title {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}
.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.price-current {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--ff-display);
}
.price-compare {
  font-size: 20px;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-save-badge {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.3);
}
.product-short-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ── URGENCY BAR ── */
.urgency-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--gold-muted);
}
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ── VARIANT SELECTOR ── */
.variants-block { display: flex; flex-direction: column; gap: 16px; }
.option-group { display: flex; flex-direction: column; gap: 10px; }
.option-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
}
.option-label strong { color: var(--text); font-weight: 600; }

.color-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.color-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: transform var(--transition);
}
.color-pill:hover { transform: translateY(-2px); }
.color-swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pill-color);
  border: 3px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: border-color var(--transition), box-shadow var(--transition);
  display: block;
}
.color-pill.is-active .color-swatch {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.25), 0 2px 8px rgba(0,0,0,0.3);
}
.color-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
}
.color-pill.is-active .color-label { color: var(--gold); font-weight: 600; }

.option-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.option-pill {
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  background: #111111;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.option-pill:hover { border-color: var(--gold-muted); color: var(--gold-muted); }
.option-pill.is-active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  font-weight: 600;
}

/* ── BUNDLE QUANTITY ── */
.bundle-block { display: flex; flex-direction: column; gap: 10px; }
.bundle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
}
.bundle-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.bundle-opt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: #111111;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  min-height: 72px;
} { border-color: var(--gold-muted); }
.bundle-opt[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}
.bundle-qty {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--ff-display);
}
.bundle-desc {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}
.bundle-opt[aria-pressed="true"] .bundle-qty { color: var(--gold); }
.bundle-opt[aria-pressed="true"] .bundle-desc { color: var(--gold-muted); }
.bundle-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C9A84C, #E8C96A);
  color: #0A0A0A;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.bundle-note {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── CTA BUTTONS ── */
.cta-stack { display: flex; flex-direction: column; gap: 10px; }

.btn-atc {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #A07830 100%);
  color: #0A0A0A;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(201,168,76,0.4);
}
.btn-atc:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
}
.btn-atc:active { transform: translateY(0); }

.btn-buy {
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-buy:hover { background: rgba(201,168,76,0.1); transform: translateY(-1px); }
.btn-buy:active { transform: translateY(0); }

/* ATC button inner states */
.btn-atc-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  text-align: center;
}
.btn-atc-loading {
  display: none; /* hidden by default — shown only via .is-loading class on parent */
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
/* [hidden] must always win — belt AND suspenders */
[hidden] { display: none !important; }

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* When button has .is-loading: hide text, show spinner */
.btn-atc.is-loading .btn-atc-text { display: none; }
.btn-atc.is-loading .btn-atc-loading { display: flex; }
.btn-atc.is-loading { opacity: 0.9; cursor: not-allowed; }

.atc-success {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-muted);
}
.inline-link {
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sold-out-msg {
  padding: 14px 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #991B1B;
}

/* ── TRUST ROW ── */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: #111111;
  border-radius: var(--radius-md);
  border: 1px solid #2A2A2A;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.trust-item svg { color: var(--gold); }
.trust-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.trust-item span {
  font-size: 11px;
  color: var(--text-light);
}

/* ── PAYMENT ROW ── */
.payment-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.payment-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}
.pay-chip {
  background: #1C1C1C;
  color: var(--text-mid);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
}

/* ── STATS BAR ── */
.stats-bar {
  background: #080808;
  border-top: 1px solid #C9A84C22;
  border-bottom: 1px solid #C9A84C22;
  color: white;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 48px;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(135deg, #C9A84C, #E8C96A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-div {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* ── SECTIONS SHARED ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-cta-row { text-align: center; margin-top: 40px; }
.section-cta {
  background: linear-gradient(135deg, #C9A84C, #E8C96A, #A07830);
  color: #0A0A0A;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
  cursor: pointer;
  border: none;
}
.section-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

/* ── FEATURES ── */
.features-section { padding: 80px 32px; background: #0D0D0D; }
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feat-card {
  background: #111111;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid #2A2A2A;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.feat-card:hover { box-shadow: 0 6px 28px rgba(201,168,76,0.15); transform: translateY(-3px); border-color: #C9A84C44; }
.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  font-family: var(--ff-display);
}
.feat-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ── COMPARE ── */
.compare-section { padding: 100px 32px; background: #0A0A0A; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-card { border-radius: var(--radius-md); overflow: hidden; border: 1px solid #2A2A2A; }
.compare-header {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.compare-header.bad { background: rgba(239,68,68,0.1); color: #FCA5A5; }
.compare-header.good { background: rgba(201,168,76,0.12); color: var(--gold-light); }
.compare-list { padding: 24px; display: flex; flex-direction: column; gap: 14px; background: #111111; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-mid);
}
.bad-item::before {
  content: '✕';
  color: #EF4444;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.good-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── STEPS ── */
.steps-section { padding: 100px 32px; background: #0D0D0D; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card {
  background: #111111;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid #2A2A2A;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.step-card:hover { box-shadow: 0 6px 28px rgba(201,168,76,0.12); border-color: #C9A84C33; }
.step-num {
  font-family: var(--ff-display);
  font-size: 72px;
  font-weight: 700;
  background: linear-gradient(135deg, #C9A84C33, #C9A84C55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  letter-spacing: -0.03em;
}
.step-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.step-desc { font-size: 14px; line-height: 1.7; color: var(--text-mid); }

/* ── LIFESTYLE GALLERY ── */
.lifestyle-section { padding: 100px 32px; background: #0A0A0A; }
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lifestyle-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: transform var(--transition);
}
.lifestyle-img-wrap:hover { transform: scale(1.02); }
.lifestyle-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── REVIEWS ── */
.reviews-section { padding: 100px 32px; background: #0D0D0D; }
.review-summary-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  padding: 28px 32px;
  background: #111111;
  border-radius: var(--radius-md);
  border: 1px solid #2A2A2A;
  max-width: 480px;
}
.review-big-score {
  font-family: var(--ff-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.review-big-stars {
  font-size: 22px;
  color: #F59E0B;
  display: block;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.review-total { font-size: 13px; color: var(--text-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: #111111;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid #2A2A2A;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.review-card:hover { box-shadow: 0 4px 20px rgba(201,168,76,0.1); border-color: #C9A84C33; }
.review-stars { color: #F59E0B; font-size: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  flex: 1;
}
.review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
}
.verified-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 4px;
}

/* ── FAQ ── */
.faq-section { padding: 100px 32px; background: #0A0A0A; }
.faq-wrap { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}
.faq-a {
  padding: 0 0 22px;
}
.faq-a p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 100px 32px;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1400 40%, #0D0900 70%, #0D0D0D 100%);
  border-top: 1px solid #C9A84C22;
}
.fcta-container {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.fcta-label {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201,168,76,0.3);
}
.fcta-title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.fcta-title em { font-style: italic; color: var(--gold); }
.fcta-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 480px;
}
.fcta-btn {
  background: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #A07830 100%);
  color: #0A0A0A;
  padding: 20px 52px;
  border-radius: var(--radius-full);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
}
.fcta-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.5);
}
.fcta-trust {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── STICKY ATC BAR ── */
.sticky-atc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #0D0D0D;
  border-top: 1px solid #C9A84C33;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.6);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  safe-area-inset-bottom: env(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-atc-bar.is-visible { transform: translateY(0); }
.sticky-atc-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-product-info { display: flex; flex-direction: column; gap: 3px; }
.sticky-product-name { font-size: 15px; font-weight: 700; color: var(--text); }
.sticky-product-price {
  font-size: 14px;
  color: var(--text-mid);
}
.sticky-product-price s { color: var(--text-light); }
.sticky-atc-btn {
  background: linear-gradient(135deg, #C9A84C, #E8C96A, #A07830);
  color: #0A0A0A;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: filter var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
  flex-shrink: 0;
}
.sticky-atc-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ── FOOTER ── */
.site-footer {
  background: #080808;
  border-top: 1px solid #C9A84C22;
  color: rgba(255,255,255,0.8);
  padding: 72px 32px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }
.footer-trust { display: flex; flex-direction: column; gap: 11px; }
.footer-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.footer-trust li svg { color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── INDEX PAGE ── */
.index-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1400 50%, #0D0D0D 100%);
  border-bottom: 1px solid #C9A84C22;
  padding: 80px 32px;
  text-align: center;
}
.index-hero-inner { max-width: 640px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.index-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.index-title { font-family: var(--ff-display); font-size: clamp(42px, 7vw, 80px); font-weight: 700; line-height: 1.1; color: var(--text); letter-spacing: -0.02em; }
.index-sub { font-size: 18px; color: var(--text-mid); line-height: 1.6; }
.index-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #A07830 100%);
  color: #0A0A0A;
  padding: 18px 48px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 8px;
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
}
.index-cta-btn:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,168,76,0.5); }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-hero { grid-template-columns: 1fr; gap: 40px; padding: 20px 24px 60px; }
  .gallery-col { position: static; }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat-item { padding: 16px 28px; }
  .stat-num { font-size: 32px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-inner { padding: 0 20px; }
  .logo-wordmark { font-size: 24px; }

  .breadcrumb { padding: 12px 20px; }
  .product-hero { padding: 16px 20px 48px; }

  .gallery-main { border-radius: var(--radius-md); }
  .thumb-btn { width: 60px; height: 60px; }

  .form-col { gap: 16px; }
  .product-title { font-size: 28px; }
  .price-current { font-size: 26px; }

  .bundle-options { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .bundle-opt { padding: 12px 6px 10px; min-height: 64px; }
  .bundle-qty { font-size: 17px; }
  .bundle-desc { font-size: 10px; }

  .trust-row { grid-template-columns: 1fr; gap: 14px; padding: 16px; }

  .stats-bar { flex-wrap: wrap; padding: 32px 20px; }
  .stat-item { padding: 12px 20px; }
  .stat-num { font-size: 28px; }
  .stat-div { display: none; }

  .features-section, .compare-section, .steps-section,
  .lifestyle-section, .reviews-section, .faq-section, .final-cta { padding: 64px 20px; }
  .section-container { padding: 0; }

  .features-inner { grid-template-columns: 1fr; gap: 16px; }
  .compare-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 20px 0; }

  .sticky-atc-inner { padding: 12px 16px; }
  .sticky-product-name { font-size: 14px; }
  .sticky-atc-btn { padding: 13px 24px; font-size: 14px; }

  .fcta-btn { padding: 18px 36px; font-size: 16px; }
  .fcta-title { font-size: 32px; }
}

@media (max-width: 480px) {
  .bundle-options { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════
   SOLARA v2 — PATCH CSS
   Fixes: gold color, cart controls, savings line,
   error state, image quality, bundle pricing clarity
════════════════════════════════════════════════════ */

/* ── GOLD COLOR FIX ── */
/* Any element using the gold/beige swatch now uses true gold */
.color-swatch[style*="--pill-color"] {
  /* Inline style handles individual colors; this is a fallback safety */
  border-radius: 50%;
}
/* Explicitly target the Gold/Beige variant — override the Liquid case fallback */
.color-pill[data-color="gold"] .color-swatch,
.color-pill[data-color="beige"] .color-swatch {
  background: #C9A882 !important; /* warm sand-gold */
}
/* If a "Gold" named variant exists, use true premium gold */
.color-pill[data-value="Gold"] .color-swatch {
  background: #D4AF37 !important;
}

/* ── PRICE SAVINGS LINE ── */
#priceSavings {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #2D7A4F;
  background: #ECFDF5;
  border: 1px solid #BBF7D0;
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: 4px;
}

/* ── CART ITEM CONTROLS (remove + qty stepper) ── */
.cart-item {
  align-items: center;
}
.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #111111;
}
.cart-qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  line-height: 1;
}
.cart-qty-btn:hover { background: var(--border); color: var(--text); }
.cart-qty-num {
  min-width: 26px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}
.cart-remove-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
  background: transparent;
  border: none;
}
.cart-remove-btn:hover { background: #FEE2E2; color: #DC2626; }
.cart-item-qty { display: none; } /* hide old qty display — replaced by controls */

/* ── CART IMAGE QUALITY ── */
.cart-item-img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* ── CART ERROR MESSAGE ── */
.cart-error-msg {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
}

/* ── GALLERY IMAGE QUALITY FIX ── */
.gallery-slide img,
.thumb-btn img,
.lifestyle-img-wrap img {
  image-rendering: auto;
}

/* ── BUNDLE — VISUAL SELECTED STATE ── */
.bundle-opt.is-selected,
.bundle-opt[aria-pressed="true"] {
  border-color: var(--coral) !important;
  background: linear-gradient(135deg, rgba(224,92,106,0.06), rgba(232,115,138,0.04)) !important;
}

/* ── GOLD COLOR PILL LABEL FIX ── */
.color-pill[data-value="Gold"] .color-label::before {
  content: "";
}

/* ── MOBILE: CART CONTROLS COMPACT ── */
@media (max-width: 480px) {
  .cart-item-controls { gap: 6px; }
  .cart-qty-btn { width: 28px; height: 28px; }
  .cart-qty-num { min-width: 22px; font-size: 13px; }
}



/* ════════════════════════════════════════════════════
   SOLARA v2.1 — MULTI-COLOR BUNDLE UI
════════════════════════════════════════════════════ */

/* ── MULTI-COLOR BLOCK ── */
.multi-color-block {
  margin-top: 4px;
  padding: 18px 20px;
  background: #111111;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.multi-color-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}
.multi-color-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* ── COLOR SLOT (per-unit row) ── */
.color-slot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.color-slot:last-child { border-bottom: none; }
.color-slot-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
  min-width: 48px;
}
.color-slot-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
/* Compact pills inside the slot — same structure as main color-pill */
.color-slot-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  transition: transform var(--transition);
}
.color-slot-pill:hover { transform: translateY(-2px); }
.color-slot-pill .color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pill-color, #ccc);
  border: 2.5px solid transparent;
  box-shadow: 0 1px 5px rgba(0,0,0,0.12);
  transition: border-color var(--transition), box-shadow var(--transition);
  display: block;
}
.color-slot-pill.is-active .color-swatch {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(224,92,106,0.2), 0 1px 5px rgba(0,0,0,0.12);
}
.color-slot-pill .color-label {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1;
}
.color-slot-pill.is-active .color-label {
  color: var(--coral);
  font-weight: 700;
}

/* ── MOBILE MULTI-COLOR ── */
@media (max-width: 768px) {
  .multi-color-block { padding: 14px 16px; }
  .color-slot { gap: 10px; flex-wrap: wrap; }
  .color-slot-label { min-width: 44px; }
  .color-slot-pill .color-swatch { width: 28px; height: 28px; }
}

/* ── BUNDLE NOTE UPDATED ── */
.bundle-note {
  font-size: 11px;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}

/* ════════════════════════════════════════════
   NUCLEAR OVERRIDE: Kill legacy loading div
   Prevents old cached btnLoading from showing
════════════════════════════════════════════ */
#btnLoading,
.btn-loading {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* ════════════════════════════════════════════════════
   LUXURY BLACK & GOLD — PATCH OVERRIDES
   Ensuring no pink/coral remnants survive
════════════════════════════════════════════════════ */

/* Price savings line — gold */
#priceSavings {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: 4px;
}

/* Cart qty controls — dark themed */
.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #1C1C1C;
}
.cart-qty-btn:hover { background: #2A2A2A; color: var(--text); }

/* Cart remove btn hover — dark red */
.cart-remove-btn:hover { background: rgba(239,68,68,0.15); color: #EF4444; }

/* Bundle selected state — gold */
.bundle-opt.is-selected,
.bundle-opt[aria-pressed="true"] {
  border-color: var(--gold) !important;
  background: rgba(201,168,76,0.08) !important;
}

/* Multi-color block — dark */
.multi-color-block {
  margin-top: 4px;
  padding: 18px 20px;
  background: #111111;
  border: 1.5px solid #2A2A2A;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Color slot pill active — gold */
.color-slot-pill.is-active .color-swatch {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2), 0 1px 5px rgba(0,0,0,0.3);
}
.color-slot-pill.is-active .color-label {
  color: var(--gold);
  font-weight: 700;
}

/* Cart error — dark */
.cart-error-msg {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #FCA5A5;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
}

/* Sold out msg — dark */
.sold-out-msg {
  padding: 14px 16px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #FCA5A5;
}

/* Option pill background fix */
.option-pill {
  background: #111111;
}

/* Pay chip — dark */
.pay-chip {
  background: #1C1C1C;
  color: var(--text-mid);
  border-color: #2A2A2A;
}
