/* ════════════════════════════════════════════════════════════════
   PURFUMELY — "BLACK ORCHID" THEME
   The definitive luxury perfume brand aesthetic.
   Inspired by: Tom Ford Black Orchid, Maison Margiela Replica,
                Creed Aventus, Parfums de Marly, MFK Baccarat Rouge
   
   Philosophy: Less is everything. Darkness with warmth.
   Ink-black depths. Not cold black — warm, velvety, alive.
   The scent of a room you never want to leave.
   ════════════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS: Refined typography stack ─────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── ROOT VARIABLES ─────────────────────────────────────────── */
:root {
  /* Core palette — warm black, not cold */
  --gold:       #C9A84C;   /* antique gold — aged, not shiny */
  --bronze:     #8A6E3E;   /* deep bronze */
  --obsidian:   #0C0B09;   /* warm black — slight brown undertone */
  --onyx:       #141210;   /* warm dark surface */
  --charcoal:   #1E1B17;   /* lifted warm dark */
  --platinum:   #F5F0E8;   /* warm white — cream, not stark */
  --silver:     #B8AFA0;   /* warm silver */
  --darkgray:   #6E6458;   /* warm gray */
  --red:        #C44536;   /* deep crimson — not bright red */
  --green:      #4A8C5C;   /* muted sage green */
  --blue:       #3A6EA8;   /* muted navy */

  /* Gold alpha variants — all recomputed for new gold */
  --gold-05:  rgba(201,168,76,0.05);
  --gold-15:  rgba(201,168,76,0.15);
  --gold-20:  rgba(201,168,76,0.20);
  --gold-60:  rgba(201,168,76,0.60);
  --gold-80:  rgba(201,168,76,0.80);

  /* Extended palette — for deeper visual language */
  --orchid:       #2A1828;   /* deep purple-black — the orchid shadow */
  --orchid-glow:  rgba(120,50,100,0.18); /* subtle purple warmth */
  --amber-warm:   rgba(201,168,76,0.08);
  --surface-1:    #141210;
  --surface-2:    #1E1B17;
  --surface-3:    #26231E;
  --surface-4:    #2E2B25;
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;

  /* Spacing rhythm */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
}

/* ════════════════════════════════════════════════════════════════
   BASE RESET & BODY
   ════════════════════════════════════════════════════════════════ */
html, body {
  background: var(--obsidian) !important;
  color: var(--platinum) !important;
  font-family: var(--font-sans) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Warm paper texture overlay — ultra-subtle */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(201,168,76,0.005) 2px,
      rgba(201,168,76,0.005) 4px
    );
  pointer-events: none;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════════
   TYPOGRAPHY — The voice of the brand
   ════════════════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em;
  color: var(--platinum) !important;
}
h1 { font-size: 56px; font-weight: 300 !important; letter-spacing: -0.01em; }
h2 { font-size: 38px; font-weight: 300 !important; }
h3 { font-size: 26px; }
h4 { font-size: 19px; }

.logo {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-weight: 300 !important;
  font-size: 32px !important;
  color: var(--gold) !important;
  letter-spacing: 2px;
  text-shadow: 0 0 40px rgba(201,168,76,0.3);
}

/* ════════════════════════════════════════════════════════════════
   NAVIGATION — Invisible until you need it
   ════════════════════════════════════════════════════════════════ */
.nav {
  background: rgba(12,11,9,0.0) !important;
  border-bottom: none !important;
  padding: 0;
  backdrop-filter: none !important;
  transition: background 0.6s ease, backdrop-filter 0.6s ease !important;
}

.nav.nav-scrolled {
  background: rgba(12,11,9,0.92) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border-bottom: none !important;
  box-shadow: 0 1px 0 rgba(201,168,76,0.08), 0 20px 60px rgba(0,0,0,0.6) !important;
}

.nav-inner {
  padding: 22px 40px !important;
}

.nav-links a {
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: rgba(245,240,232,0.7) !important;
  transition: color 0.35s ease !important;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold) !important;
}

.nav-links a::after {
  background: var(--gold) !important;
  height: 0.5px !important;
}

.nav-icon {
  color: rgba(245,240,232,0.65) !important;
  font-size: 17px !important;
}

.nav-icon:hover { color: var(--gold) !important; }

.badge {
  background: var(--gold) !important;
  color: var(--obsidian) !important;
  font-family: var(--font-sans) !important;
  font-weight: 700;
  font-size: 10px !important;
}

/* ════════════════════════════════════════════════════════════════
   BUTTONS — Refined, never loud
   ════════════════════════════════════════════════════════════════ */
.btn {
  border-radius: 2px !important;  /* Sharp corners — luxury editorial */
  font-family: var(--font-sans) !important;
  font-weight: 500 !important;
  font-size: 11px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase;
  padding: 16px 36px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-primary {
  background: var(--gold) !important;
  color: var(--obsidian) !important;
  border: 1px solid var(--gold) !important;
  box-shadow: none !important;
}

.btn-primary:hover {
  background: transparent !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: none !important;
  box-shadow: inset 0 0 0 1px var(--gold) !important;
}

.btn-secondary {
  background: transparent !important;
  border: 1px solid rgba(201,168,76,0.4) !important;
  color: var(--platinum) !important;
}

.btn-secondary:hover {
  background: rgba(201,168,76,0.06) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  transform: none !important;
}

/* ════════════════════════════════════════════════════════════════
   HERO — Where you fall in love
   ════════════════════════════════════════════════════════════════ */
.hero, .hero-v2 {
  background:
    radial-gradient(ellipse 60% 60% at 50% 40%, rgba(42,24,40,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #141008 0%, #0C0B09 100%) !important;
  min-height: 100vh !important;
}

.hero::before {
  opacity: 0.18 !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 400'><defs><linearGradient id='g' x1='0' x2='0' y1='0' y2='1'><stop offset='0' stop-color='%23C9A84C' stop-opacity='0.4'/><stop offset='1' stop-color='%23C9A84C' stop-opacity='0'/></linearGradient></defs><path d='M80 40 L80 70 L70 80 L70 380 L130 380 L130 80 L120 70 L120 40 Z' fill='url(%23g)' stroke='%23C9A84C' stroke-width='0.3' opacity='0.5'/></svg>") !important;
}

.hero-overlay-v2 {
  background: linear-gradient(
    180deg,
    rgba(12,11,9,0.3) 0%,
    rgba(12,11,9,0.05) 30%,
    rgba(12,11,9,0.08) 60%,
    rgba(12,11,9,0.98) 100%
  ) !important;
}

.hero h1, .hero-h1 {
  font-size: clamp(52px, 6vw, 88px) !important;
  font-weight: 300 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.05 !important;
  color: var(--platinum) !important;
}

.eyebrow, .hero-eyebrow {
  font-size: 10px !important;
  letter-spacing: 4px !important;
  color: var(--gold) !important;
  font-weight: 500;
  text-transform: uppercase;
}

.hero .sub, .hero-sub {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-weight: 300 !important;
  font-size: 20px !important;
  color: rgba(184,175,160,0.9) !important;
  letter-spacing: 0.01em;
  line-height: 1.65 !important;
}

.social-proof {
  background: rgba(20,18,16,0.7) !important;
  border: 1px solid rgba(201,168,76,0.12) !important;
  border-radius: 2px !important;
  backdrop-filter: blur(16px);
}

/* Hero stats */
.hero-stats {
  background: rgba(12,11,9,0.7) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: 2px !important;
  backdrop-filter: blur(20px) !important;
}
.hstat-num, .hstat-suffix {
  color: var(--gold) !important;
  font-family: var(--font-serif) !important;
  font-weight: 300 !important;
}
.hstat-sep { background: rgba(201,168,76,0.15) !important; }
.hstat-label { color: var(--darkgray) !important; letter-spacing: 2px; }

/* ════════════════════════════════════════════════════════════════
   PRODUCT CARDS — Objects of desire
   ════════════════════════════════════════════════════════════════ */
.card {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: var(--radius-md) !important;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1) !important;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(201,168,76,0.35) !important;
  transform: translateY(-6px) !important;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(201,168,76,0.15),
    0 0 60px rgba(42,24,40,0.3) !important;
}

.card-img {
  background: var(--surface-2) !important;
  border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
  position: relative;
}

/* Subtle inner vignette on card image */
.card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(12,11,9,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.card-body {
  background: linear-gradient(180deg, var(--surface-1) 0%, rgba(12,11,9,0.95) 100%) !important;
  border-top: 1px solid rgba(201,168,76,0.06) !important;
  padding: 22px !important;
}

.card-title {
  font-family: var(--font-serif) !important;
  font-weight: 400 !important;
  font-size: 22px !important;
  color: var(--platinum) !important;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.card-inspired {
  font-family: var(--font-serif) !important;
  font-style: italic;
  color: var(--silver) !important;
  font-size: 13px !important;
}

.card-rating .stars { color: var(--gold) !important; font-size: 11px !important; }
.card-rating { color: var(--darkgray) !important; font-size: 11px !important; }

.price-new { color: var(--gold) !important; font-weight: 600 !important; }
.price-old { color: var(--darkgray) !important; }

/* Wishlist */
.wishlist-icon {
  background: rgba(12,11,9,0.85) !important;
  border: 1px solid rgba(201,168,76,0.15) !important;
  border-radius: 50% !important;
  backdrop-filter: blur(8px);
  color: var(--silver) !important;
  transition: all 0.3s ease !important;
}
.wishlist-icon:hover, .wishlist-icon.active {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  box-shadow: 0 0 20px rgba(201,168,76,0.15) !important;
}

/* Product badges */
.pbadge {
  border-radius: 2px !important;
  font-size: 9px !important;
  letter-spacing: 1.5px !important;
}
.pbadge.best { background: var(--gold) !important; color: var(--obsidian) !important; }
.pbadge.new  { background: rgba(58,110,168,0.9) !important; }
.pbadge.sale { background: rgba(196,69,54,0.9) !important; }
.pbadge.trend { background: var(--bronze) !important; color: var(--platinum) !important; }

/* Family pills */
.family-pill {
  border-radius: 2px !important;
  font-size: 9px !important;
  letter-spacing: 1.5px !important;
  font-weight: 600 !important;
}
.family-Fresh    { background: rgba(40,80,140,0.15) !important; color: #8AB4E8 !important; }
.family-Woody    { background: rgba(138,110,62,0.2) !important; color: #C8A87A !important; }
.family-Sweet    { background: rgba(160,80,120,0.15) !important; color: #D48EB0 !important; }
.family-Oriental { background: rgba(120,60,160,0.15) !important; color: #B88ED8 !important; }

/* Size buttons */
.size-btn {
  border: 1px solid rgba(201,168,76,0.15) !important;
  border-radius: 2px !important;
  color: var(--silver) !important;
  background: transparent !important;
}
.size-btn.active, .size-btn:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* ════════════════════════════════════════════════════════════════
   SECTIONS & LAYOUT
   ════════════════════════════════════════════════════════════════ */
.section-head h2 { color: var(--platinum) !important; font-weight: 300 !important; }
.divider { background: rgba(201,168,76,0.12) !important; }

/* Section titles — editorial weight */
.section-title-v2,
.section-head h2,
h2.gold {
  color: var(--platinum) !important;
  font-family: var(--font-serif) !important;
  font-weight: 300 !important;
  letter-spacing: 0.01em;
}

/* Gold text */
.gold, .gold-text {
  color: var(--gold) !important;
}

/* Gold shimmer — MUST restore background-clip after !important background override */
.gold-shimmer-text {
  background: linear-gradient(90deg, #6A4E20 0%, #C9A84C 25%, #F0D88A 45%, #C9A84C 65%, #6A4E20 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: shimmerSlide 3s linear infinite !important;
}
/* Ensure the animation keyframe is available under this theme */
@keyframes shimmerSlide {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ════════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ════════════════════════════════════════════════════════════════ */
.announce {
  background: rgba(20,18,16,0.95) !important;
  border-color: rgba(201,168,76,0.08) !important;
}
.marquee { color: var(--gold) !important; font-size: 11px !important; letter-spacing: 2px !important; }

/* ════════════════════════════════════════════════════════════════
   FILTER PILLS & SIDEBAR
   ════════════════════════════════════════════════════════════════ */
.filter-pill, .pill-toggle {
  background: var(--surface-2) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: 2px !important;
  color: var(--silver) !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
}
.filter-pill:hover, .pill-toggle:hover:not(.active) {
  border-color: rgba(201,168,76,0.4) !important;
  color: var(--platinum) !important;
}
.filter-pill.active, .pill-toggle.active {
  background: var(--gold) !important;
  color: var(--obsidian) !important;
  border-color: var(--gold) !important;
  border-radius: 2px !important;
}

.shop-sidebar {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: var(--radius-md) !important;
}
.filter-group { border-color: rgba(201,168,76,0.08) !important; }
.filter-group h4 { color: var(--gold) !important; font-family: var(--font-sans) !important; font-size: 10px !important; letter-spacing: 2px !important; }

.search-input, .sort-select {
  background: var(--surface-2) !important;
  border-color: rgba(201,168,76,0.1) !important;
  border-radius: 2px !important;
  color: var(--platinum) !important;
}
.search-input:focus, .sort-select:focus {
  border-color: rgba(201,168,76,0.5) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.06) !important;
}

input[type=range]::-webkit-slider-thumb { background: var(--gold) !important; }
input[type=range]::-moz-range-thumb { background: var(--gold) !important; }

/* ════════════════════════════════════════════════════════════════
   TRUST CARDS
   ════════════════════════════════════════════════════════════════ */
.trust-card, .trust-v2 {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: var(--radius-md) !important;
  transition: border-color 0.4s ease, box-shadow 0.4s ease !important;
}
.trust-card:hover, .trust-v2:hover {
  border-color: rgba(201,168,76,0.3) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
}
.trust-card h4 { color: var(--gold) !important; font-weight: 400 !important; }
.trust-card p  { color: var(--silver) !important; }
.trust-icon    { font-size: 36px !important; }

/* ════════════════════════════════════════════════════════════════
   AI BANNER / SCENT FINDER
   ════════════════════════════════════════════════════════════════ */
.ai-banner {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.12) !important;
  border-radius: var(--radius-lg) !important;
  position: relative;
  overflow: hidden;
}
.ai-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42,24,40,0.4) 0%, transparent 65%);
  pointer-events: none;
}
.ai-banner h2 { color: var(--gold) !important; font-weight: 300 !important; }
.atomiser { background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%) !important; }

/* Quiz cards */
.quiz-card {
  background: var(--surface-1) !important;
  border: 2px solid rgba(201,168,76,0.12) !important;
  border-radius: var(--radius-md) !important;
}
.quiz-card:hover { border-color: rgba(201,168,76,0.4) !important; }
.quiz-card.selected { border-color: var(--gold) !important; background: rgba(201,168,76,0.05) !important; }
.quiz-card h4 { font-family: var(--font-serif) !important; font-weight: 400 !important; }
.quiz-progress-fill { background: var(--gold) !important; }

/* ════════════════════════════════════════════════════════════════
   NEWSLETTER
   ════════════════════════════════════════════════════════════════ */
.newsletter {
  background: var(--surface-1) !important;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(42,24,40,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter h2 { color: var(--platinum) !important; font-weight: 300 !important; }
.newsletter-form input {
  background: var(--surface-2) !important;
  border: 1px solid rgba(201,168,76,0.15) !important;
  border-radius: 2px !important;
  color: var(--platinum) !important;
}
.newsletter-form input:focus { border-color: var(--gold) !important; outline: none !important; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
footer {
  background: var(--obsidian) !important;
  border-top: 1px solid rgba(201,168,76,0.08) !important;
}
.footer-col h4 {
  color: var(--gold) !important;
  font-family: var(--font-sans) !important;
  font-size: 10px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-col a { color: var(--darkgray) !important; font-size: 13px !important; }
.footer-col a:hover { color: var(--gold) !important; }
.footer-bottom { border-color: rgba(201,168,76,0.06) !important; color: var(--darkgray) !important; font-size: 11px !important; }
.socials a {
  border: 1px solid rgba(201,168,76,0.12) !important;
  border-radius: 2px !important;
  color: var(--darkgray) !important;
  transition: all 0.3s ease !important;
}
.socials a:hover { border-color: var(--gold) !important; color: var(--gold) !important; }

/* ════════════════════════════════════════════════════════════════
   CART & CHECKOUT
   ════════════════════════════════════════════════════════════════ */
.cart-items, .summary-card, .checkout-form {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: var(--radius-md) !important;
}
.cart-row { border-color: rgba(201,168,76,0.07) !important; }
.cart-thumb {
  background: var(--surface-2) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: var(--radius-sm) !important;
}
.summary-card h3 { color: var(--gold) !important; font-weight: 400 !important; }
.summary-row { border-color: rgba(201,168,76,0.07) !important; color: var(--silver) !important; }
.summary-row.total { color: var(--gold) !important; }
.coupon-row input {
  background: var(--surface-2) !important;
  border: 1px solid rgba(201,168,76,0.12) !important;
  border-radius: 2px !important;
}
.coupon-row button { border-radius: 2px !important; }
.qty-stepper { border-color: rgba(201,168,76,0.15) !important; border-radius: 2px !important; }
.qty-stepper button { color: var(--gold) !important; }

/* Payment options */
.pay-option {
  border: 1px solid rgba(201,168,76,0.12) !important;
  border-radius: var(--radius-sm) !important;
  transition: border-color 0.3s ease !important;
}
.pay-option:hover:not(.disabled) { border-color: rgba(201,168,76,0.4) !important; }
.pay-option.selected {
  border-color: var(--gold) !important;
  background: rgba(201,168,76,0.04) !important;
}
.pay-radio { border-color: rgba(201,168,76,0.4) !important; }
.pay-option.selected .pay-radio::after { background: var(--gold) !important; }

/* Form inputs */
.form-row input, .form-row select, .form-row textarea {
  background: var(--surface-2) !important;
  border: 1px solid rgba(201,168,76,0.12) !important;
  border-radius: 2px !important;
  color: var(--platinum) !important;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: rgba(201,168,76,0.5) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.06) !important;
}
.form-row label { color: var(--silver) !important; font-size: 11px !important; letter-spacing: 1px !important; text-transform: uppercase; }

/* ════════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ════════════════════════════════════════════════════════════════ */
.pdp-image {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: var(--radius-lg) !important;
}
.pdp-thumb {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: var(--radius-sm) !important;
}
.pdp-thumb.active { border-color: var(--gold) !important; }
.pdp-info h1 { font-weight: 300 !important; letter-spacing: -0.01em !important; font-size: 42px !important; }
.pdp-inspired { font-family: var(--font-serif) !important; font-style: italic; color: var(--silver) !important; }
.pdp-price .price-new { font-size: 34px !important; }
.gold-separator { background: rgba(201,168,76,0.1) !important; }

/* Tabs */
.tabs { border-color: rgba(201,168,76,0.1) !important; }
.tab { color: var(--darkgray) !important; font-size: 11px !important; letter-spacing: 1.5px !important; text-transform: uppercase; }
.tab.active { color: var(--gold) !important; border-color: var(--gold) !important; }
.tab:hover { color: var(--silver) !important; }

/* Notes */
.note-pill, .icon-pill {
  background: var(--surface-2) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: 2px !important;
  color: var(--silver) !important;
  font-size: 11px !important;
}
.notes-row h4 {
  color: var(--gold) !important;
  font-size: 9px !important;
  letter-spacing: 2px !important;
}
.progress-fill { background: linear-gradient(90deg, var(--bronze), var(--gold)) !important; }
.progress-track { background: var(--surface-3) !important; }

/* Size options */
.size-option {
  border: 1px solid rgba(201,168,76,0.15) !important;
  border-radius: var(--radius-sm) !important;
}
.size-option.active {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(201,168,76,0.05) !important;
}

/* Details table */
.details-table td:first-child { color: var(--darkgray) !important; }
.details-table td:last-child { color: var(--platinum) !important; }
.details-table tr { border-color: rgba(201,168,76,0.07) !important; }

/* Reviews */
.review-card {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.08) !important;
  border-radius: var(--radius-sm) !important;
}
.review-avatar {
  background: var(--surface-3) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  color: var(--gold) !important;
  font-family: var(--font-serif) !important;
}
.review-name { color: var(--platinum) !important; }
.review-date { color: var(--darkgray) !important; }
.review-text { color: var(--silver) !important; }
.rating-bar-fill { background: var(--gold) !important; }
.rating-bar-track { background: var(--surface-3) !important; }
.rating-bar-label { color: var(--gold) !important; }

/* Layer card */
.layer-card {
  background: var(--surface-2) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  border-radius: var(--radius-md) !important;
}
.layer-info h4 { font-family: var(--font-serif) !important; font-weight: 400 !important; }

/* ════════════════════════════════════════════════════════════════
   PROFILE & REWARDS
   ════════════════════════════════════════════════════════════════ */
.profile-tabs { border-color: rgba(201,168,76,0.1) !important; }
.avatar-big {
  background: var(--surface-2) !important;
  border-color: rgba(201,168,76,0.4) !important;
  color: var(--gold) !important;
  font-family: var(--font-serif) !important;
}
.order-card {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: var(--radius-sm) !important;
}
.order-id { color: var(--gold) !important; }
.points-big {
  font-family: var(--font-serif) !important;
  color: var(--gold) !important;
  font-weight: 300 !important;
}
.points-display {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: var(--radius-md) !important;
}
.tier-bar-fill { background: linear-gradient(90deg, var(--bronze), var(--gold), #F0D88A) !important; }
.earn-card {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: var(--radius-sm) !important;
}
.referral-code {
  border: 1px dashed rgba(201,168,76,0.3) !important;
  border-radius: 2px !important;
}
.referral-code span { color: var(--gold) !important; }

/* ════════════════════════════════════════════════════════════════
   SUPPORT / FAQ
   ════════════════════════════════════════════════════════════════ */
.faq-item {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.08) !important;
  border-radius: var(--radius-sm) !important;
}
.faq-item:hover { border-color: rgba(201,168,76,0.25) !important; }
.faq-item.open  { border-color: rgba(201,168,76,0.3) !important; }
.faq-q { color: var(--platinum) !important; font-weight: 500 !important; }
.faq-toggle { color: var(--gold) !important; }
.faq-a { color: var(--silver) !important; font-size: 14px !important; line-height: 1.75 !important; }

/* Chat */
.chat-window {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: var(--radius-md) !important;
}
.chat-header { background: var(--surface-2) !important; border-color: rgba(201,168,76,0.08) !important; }
.chat-msg.bot { background: var(--surface-3) !important; color: var(--platinum) !important; }
.chat-msg.user { background: var(--gold) !important; color: var(--obsidian) !important; }
.chat-input-row { background: var(--surface-2) !important; border-color: rgba(201,168,76,0.08) !important; }
.chat-input-row input {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.1) !important;
  border-radius: 2px !important;
}
.chat-send { border-radius: 2px !important; }

/* ════════════════════════════════════════════════════════════════
   TOASTS & MODALS
   ════════════════════════════════════════════════════════════════ */
.toast {
  background: var(--surface-2) !important;
  border: 1px solid rgba(201,168,76,0.3) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--platinum) !important;
  backdrop-filter: blur(20px) !important;
}
.toast.success { border-color: rgba(74,140,92,0.5) !important; }
.toast.error   { border-color: rgba(196,69,54,0.5) !important; }

.success-card {
  background: var(--surface-1) !important;
  border: 1px solid rgba(201,168,76,0.25) !important;
  border-radius: var(--radius-lg) !important;
}
.success-card h2 { color: var(--gold) !important; font-weight: 300 !important; }
.checkmark-circle { border-color: var(--gold) !important; color: var(--gold) !important; }

/* ════════════════════════════════════════════════════════════════
   ENHANCEMENT ELEMENTS (cursor, particles, etc.)
   ════════════════════════════════════════════════════════════════ */

/* Scroll progress bar */
#scroll-progress {
  background: linear-gradient(90deg, var(--bronze), var(--gold), #F0D88A) !important;
  box-shadow: 0 0 12px rgba(201,168,76,0.5) !important;
  height: 1px !important;
}

/* Custom cursor */
#cursor-dot {
  background: var(--gold) !important;
  box-shadow: 0 0 8px rgba(201,168,76,0.8) !important;
  width: 5px !important;
  height: 5px !important;
}
#cursor-ring {
  border: 1px solid rgba(201,168,76,0.45) !important;
  width: 36px !important;
  height: 36px !important;
}
.cursor-spark { background: var(--gold) !important; }

/* Nav scrolled state for this theme */
.nav.nav-scrolled {
  box-shadow: 0 1px 0 rgba(201,168,76,0.06), 0 20px 60px rgba(0,0,0,0.7) !important;
}

/* Preloader */
#preloader { background: var(--obsidian) !important; }
.pl-logo { color: var(--gold) !important; font-weight: 300 !important; }

/* Mobile cart button */
.mobile-cart-btn {
  background: var(--gold) !important;
  color: var(--obsidian) !important;
  border-radius: 2px !important;
}

/* Mobile drawer */
.mobile-drawer {
  background: var(--surface-1) !important;
  border-left: 1px solid rgba(201,168,76,0.1) !important;
}
.mobile-drawer a { color: var(--platinum) !important; }
.mobile-drawer-close { color: var(--gold) !important; }

/* Empty states */
.empty-state h2 { color: var(--darkgray) !important; }

/* Breadcrumb */
.breadcrumb { color: var(--darkgray) !important; }
.breadcrumb a { color: var(--gold) !important; }

/* Result count */
.result-count { color: var(--darkgray) !important; font-size: 11px !important; letter-spacing: 1px !important; }

/* Overlay */
.overlay { background: rgba(0,0,0,0.75) !important; }

/* Back to top */
.back-to-top {
  background: var(--surface-2) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  border-radius: 2px !important;
  color: var(--gold) !important;
}
.back-to-top:hover { border-color: var(--gold) !important; box-shadow: 0 0 20px rgba(201,168,76,0.15) !important; }

/* WhatsApp float */
.wa-float {
  background: var(--gold) !important;
  border-radius: 2px !important;
}

/* Bottle glow */
.bottle-svg { filter: drop-shadow(0 0 24px rgba(201,168,76,0.15)) !important; }
.card:hover .bottle-svg { filter: drop-shadow(0 0 40px rgba(201,168,76,0.3)) !important; }

/* ════════════════════════════════════════════════════════════════
   SIGNATURE DETAIL — The things that make you say "wow"
   ════════════════════════════════════════════════════════════════ */

/* Thin gold rule between sections */
section + section::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(201,168,76,0.3);
  margin: 0 auto;
}

/* Input select arrow */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23C9A84C'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--obsidian); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.25); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,0.5); }

/* Selection */
::selection { background: rgba(201,168,76,0.2); color: var(--platinum); }

/* Focus ring */
:focus-visible { outline: 1px solid rgba(201,168,76,0.5) !important; outline-offset: 3px !important; }

/* Status badges */
.status-processing { background: rgba(201,168,76,0.1) !important; color: var(--gold) !important; }
.status-shipped    { background: rgba(58,110,168,0.1) !important; color: #8AB4E8 !important; }
.status-delivered  { background: rgba(74,140,92,0.1) !important; color: #8ABF9A !important; }

/* Discount pill */
.discount-pill { background: rgba(196,69,54,0.85) !important; border-radius: 2px !important; }

/* Coupon messages */
.coupon-msg.success { background: rgba(74,140,92,0.1) !important; color: #8ABF9A !important; border-color: rgba(74,140,92,0.2) !important; }
.coupon-msg.error   { background: rgba(196,69,54,0.1) !important; color: #E08A82 !important; border-color: rgba(196,69,54,0.2) !important; }

/* Popular badge */
.popular-badge { background: var(--gold) !important; color: var(--obsidian) !important; border-radius: 2px !important; }
.coming-badge  { background: var(--surface-3) !important; border-radius: 2px !important; }

/* ════════════════════════════════════════════════════════════════
   DATA ATTRIBUTE THEME MARKER
   ════════════════════════════════════════════════════════════════ */
[data-theme="black-orchid"] * { /* all good — we use cascading !important above */ }
