/* ════════════════════════════════════════════
   ScentSation — Luxury Fragrance Web App
   Black & Gold · app-style interface
   ════════════════════════════════════════════ */

:root {
  --gold: #d4af37;
  --gold-lt: #f6e7ad;
  --gold-dk: #9c7c24;
  --ink: #0a0a0b;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: var(--ink); }

body {
  background:
    radial-gradient(900px 520px at 82% -4%, rgba(212,175,55,0.08), transparent),
    radial-gradient(700px 520px at 8% 6%, rgba(212,175,55,0.045), transparent),
    var(--ink);
}

::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2a2a2e; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dk); }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ════════ PAGE LOADER ════════ */
.loader {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; background: var(--ink);
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__mark {
  display: grid; place-items: center;
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.35); color: var(--gold);
  animation: spinPulse 2s var(--ease) infinite;
}
@keyframes spinPulse {
  0%,100% { transform: rotate(0) scale(1); box-shadow: 0 0 0 0 rgba(212,175,55,0.3); }
  50% { transform: rotate(180deg) scale(1.08); box-shadow: 0 0 0 14px rgba(212,175,55,0); }
}
.loader__word {
  font-family: "Cormorant Garamond", serif; font-size: 26px;
  color: #fff; letter-spacing: .04em;
  animation: fadeUp .8s ease;
}

/* ════════ TICKER ════════ */
.ticker { display: flex; width: max-content; animation: ticker 32s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ════════ NAVBAR ════════ */
#navbar { background: rgba(10,10,11,0.6); backdrop-filter: blur(10px); }
#navbar.scrolled {
  background: rgba(10,10,11,0.94); backdrop-filter: blur(16px);
  border-bottom: 1px solid #1c1c1f;
  box-shadow: 0 14px 44px -22px rgba(0,0,0,0.95);
}
.logo-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.55); color: var(--gold);
  transition: transform .6s var(--ease);
}
.group:hover .logo-mark { transform: rotate(360deg); }

.nav-link { position: relative; color: #9a9a9a; transition: color .3s ease; }
.nav-link:hover { color: #fff; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--gold); transition: width .3s var(--ease);
}
.nav-link:hover::after { width: 100%; }

.icon-btn {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: #d4d4d4; transition: all .25s ease;
}
.icon-btn:hover { background: #1c1c1f; color: var(--gold); }

.nav-badge {
  position: absolute; top: 0; right: 0;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: grid; place-items: center;
  background: var(--gold); color: var(--ink);
  font-size: 10px; font-weight: 600; border-radius: 9999px;
  border: 2px solid var(--ink);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.nav-badge.hide { display: none; }
.nav-badge.bump { transform: scale(1.45); }

.search-bar { max-height: 0; overflow: hidden; background: rgba(10,10,11,0.97); transition: max-height .35s var(--ease); }
.search-bar.open { max-height: 80px; border-bottom: 1px solid #1c1c1f; }

/* ════════ BUTTONS ════════ */
.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold) 48%, var(--gold-dk));
  color: var(--ink); font-weight: 600; font-size: 12.5px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 9999px;
  box-shadow: 0 10px 30px -10px rgba(212,175,55,0.55);
  transition: transform .25s var(--ease), box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 32%, rgba(255,255,255,0.6) 50%, transparent 68%);
  transform: translateX(-130%); transition: transform .75s ease;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 42px -10px rgba(212,175,55,0.72); }
.btn-gold:hover::before { transform: translateX(130%); }
.btn-gold:active { transform: translateY(-1px) scale(.98); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid #3a3a3e; color: #e5e5e5;
  font-weight: 500; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  padding: 13px 26px; border-radius: 9999px; transition: all .25s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.06); }

.text-link { color: var(--gold); font-size: 13px; transition: letter-spacing .3s ease, opacity .2s; }
.text-link:hover { letter-spacing: .03em; opacity: .85; }

/* ════════ SECTION HELPERS ════════ */
.section-eyebrow { color: var(--gold); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 12px; display: inline-block; }
.section-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 600; color: #fff; line-height: 1.04; }
.section-desc { color: #8a8a8a; margin-top: 12px; max-width: 32rem; margin-inline: auto; }

.shimmer-text {
  background: linear-gradient(110deg, var(--gold-dk) 20%, var(--gold-lt) 42%, #fff 50%, var(--gold-lt) 58%, var(--gold-dk) 80%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5.5s linear infinite;
}
@keyframes shimmer { to { background-position: -220% 0; } }

/* ════════ HERO ════════ */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 38%, #000 28%, transparent 76%);
  mask-image: radial-gradient(ellipse 72% 62% at 50% 38%, #000 28%, transparent 76%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(85px); pointer-events: none; }
.orb-1 { width: 440px; height: 440px; top: -120px; right: -90px; background: radial-gradient(circle, rgba(212,175,55,0.4), transparent 70%); animation: drift 15s ease-in-out infinite; }
.orb-2 { width: 380px; height: 380px; bottom: -140px; left: -110px; background: radial-gradient(circle, rgba(156,124,36,0.32), transparent 70%); animation: drift 19s ease-in-out infinite reverse; }
.orb-3 { width: 320px; height: 320px; top: -90px; right: -70px; background: radial-gradient(circle, rgba(212,175,55,0.28), transparent 70%); }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-42px,42px) scale(1.13); } }

.hero-anim { opacity: 0; transform: translateY(34px); animation: heroIn .9s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.hero-glow {
  position: absolute; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(212,175,55,0.42), transparent 66%);
  filter: blur(55px); animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(.88); opacity: .55; } 50% { transform: scale(1.15); opacity: .85; } }

.hero-card {
  position: relative; width: min(420px, 88vw); aspect-ratio: 4/4.6;
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 50px 90px -34px rgba(0,0,0,0.95), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 18s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.18); } }
.hero-card__veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,10,11,0.85)); }

.hero-chip {
  position: absolute; z-index: 2;
  background: rgba(16,16,18,0.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(212,175,55,0.3); border-radius: 9999px;
  padding: 8px 14px; font-size: 11.5px; color: var(--gold-lt);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.8);
}
.hero-chip-1 { top: 18px; left: 18px; animation: float 5.5s ease-in-out infinite; }
.hero-chip-2 { top: 64px; right: 18px; }
.hero-mini {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(16,16,18,0.85); backdrop-filter: blur(10px);
  border: 1px solid #2a2a2e; border-radius: 14px; padding: 12px 16px;
}
.float { animation: float 6s ease-in-out infinite; }
.float-slow { animation: float 8s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.scroll-cue {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  width: 25px; height: 40px; border: 1.5px solid #3a3a3e; border-radius: 9999px;
  display: grid; place-items: start center; padding-top: 7px;
}
.scroll-cue__dot { width: 5px; height: 8px; border-radius: 9999px; background: var(--gold); animation: scrollcue 1.7s ease-in-out infinite; }
@keyframes scrollcue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(13px); opacity: 0; } 100% { opacity: 0; } }

/* ════════ TRUST STRIP ════════ */
.feature-cell { display: flex; align-items: center; gap: 13px; padding: 24px 18px; border-right: 1px solid #1c1c1f; border-bottom: 1px solid #1c1c1f; }
.feature-cell:nth-child(2n) { border-right: none; }
@media (min-width: 1024px) {
  .feature-cell { border-bottom: none; }
  .feature-cell:nth-child(2n) { border-right: 1px solid #1c1c1f; }
  .feature-cell:last-child { border-right: none; }
}
.feature-icon { width: 32px; height: 32px; color: var(--gold); flex-shrink: 0; }
.feature-title { color: #fff; font-size: 13.5px; font-weight: 500; }
.feature-sub { color: #7a7a7a; font-size: 12px; }

/* ════════ CATEGORY TILES ════════ */
.cat-tile {
  position: relative; overflow: hidden; border-radius: 18px;
  aspect-ratio: 3/3.5; text-align: left;
  border: 1px solid #1f1f22;
  transition: transform .45s var(--ease), border-color .4s ease;
}
.cat-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .7s var(--ease); filter: brightness(.62);
}
.cat-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,10,11,0.92));
}
.cat-tile:hover { transform: translateY(-8px); border-color: rgba(212,175,55,0.55); }
.cat-tile:hover img { transform: scale(1.12); filter: brightness(.7); }
.cat-tile__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 20px; }
.cat-tile__body h3 { font-family: "Cormorant Garamond", serif; font-size: 26px; color: #fff; font-weight: 600; }
.cat-tile__body p { color: #b8b8b8; font-size: 12px; margin-top: 2px; }
.cat-tile__cta {
  display: inline-block; margin-top: 12px;
  color: var(--gold); font-size: 11px; text-transform: uppercase;
  letter-spacing: .14em; font-weight: 500;
  opacity: 0; transform: translateY(8px); transition: all .35s var(--ease);
}
.cat-tile:hover .cat-tile__cta { opacity: 1; transform: translateY(0); letter-spacing: .2em; }

/* ════════ BEST SELLER RAIL ════════ */
.rail {
  display: flex; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 8px; -ms-overflow-style: none; scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > .card { scroll-snap-align: start; flex: 0 0 240px; }
@media (max-width: 640px) { .rail > .card { flex: 0 0 72vw; } }
.rail-arrow {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid #2a2a2e; color: #d4d4d4; transition: all .25s ease;
}
.rail-arrow:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.07); }

/* ════════ BRAND MARQUEE ════════ */
.marquee { overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; gap: 12px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.brand-chip {
  font-family: "Cormorant Garamond", serif; font-size: 21px; color: #6a6a6a;
  white-space: nowrap; padding: 7px 20px; border: 1px solid #1c1c1f; border-radius: 9999px;
  transition: all .3s ease;
}
.brand-chip:hover { color: var(--gold); border-color: rgba(212,175,55,0.4); }

/* ════════ PRESET PILLS ════════ */
.pill {
  flex-shrink: 0; padding: 9px 17px; border-radius: 9999px;
  font-size: 12.5px; color: #9a9a9a; background: #141416;
  border: 1px solid #2a2a2e; transition: all .25s ease; white-space: nowrap;
}
.pill:hover { color: #fff; border-color: #3a3a3e; }
.pill.is-active {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold), var(--gold-dk));
  color: var(--ink); font-weight: 600; border-color: transparent;
  box-shadow: 0 8px 22px -10px rgba(212,175,55,0.6);
}

/* ════════ FILTER SIDEBAR ════════ */
.filter-panel {
  display: flex; flex-direction: column;
  background: #101012; border: 1px solid #1f1f22; border-radius: 16px;
  padding: 20px; align-self: start; position: sticky; top: 88px;
  max-height: calc(100vh - 110px);
}
.filter-panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.filter-panel__head h3 { font-size: 22px; }
.filter-scroll { overflow-y: auto; }
.filter-group { padding: 16px 0; border-bottom: 1px solid #1c1c1f; }
.filter-group:last-child { border-bottom: none; }
.filter-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }

.range { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 9999px; background: #2a2a2e; outline: none; }
.range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk));
  border: 2px solid var(--ink); cursor: pointer;
  box-shadow: 0 0 0 1px var(--gold), 0 4px 10px rgba(0,0,0,0.5);
  transition: transform .15s ease;
}
.range::-webkit-slider-thumb:hover { transform: scale(1.18); }
.range::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--ink); cursor: pointer;
}

.check, .radio { display: flex; align-items: center; gap: 9px; cursor: pointer; font-size: 13px; color: #b8b8b8; transition: color .2s ease; padding: 2px 0; }
.check:hover, .radio:hover { color: #fff; }
.check input, .radio input { position: absolute; opacity: 0; pointer-events: none; }
.box {
  width: 17px; height: 17px; border-radius: 5px; border: 1.5px solid #3a3a3e;
  display: grid; place-items: center; flex-shrink: 0; transition: all .2s ease;
}
.check input:checked + .box { background: var(--gold); border-color: var(--gold); }
.check input:checked + .box::after { content: "✓"; color: var(--ink); font-size: 11px; font-weight: 700; }
.radio span:last-child::before {
  content: ""; display: inline-block; vertical-align: -2px;
  width: 15px; height: 15px; margin-right: 8px; border-radius: 50%;
  border: 1.5px solid #3a3a3e; transition: all .2s ease;
}
.radio input:checked + span::before { border-color: var(--gold); box-shadow: inset 0 0 0 4px var(--gold); }
.brand-row { display: flex; align-items: center; justify-content: space-between; }
.brand-row .qty-tag { color: #5a5a5a; font-size: 11px; }

/* ════════ SHOP TOOLBAR ════════ */
.shop-toolbar {
  position: sticky; top: 78px; z-index: 30;
  display: flex; align-items: center; gap: 10px;
  background: rgba(16,16,18,0.92); backdrop-filter: blur(10px);
  border: 1px solid #1f1f22; border-radius: 12px;
  padding: 9px 12px; margin-bottom: 14px;
}
.toolbar-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #1c1c1f; border: 1px solid #2a2a2e; color: #e5e5e5;
  font-size: 13px; padding: 8px 14px; border-radius: 9999px; transition: all .2s ease;
}
.toolbar-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-count {
  min-width: 18px; height: 18px; padding: 0 4px;
  display: none; place-items: center;
  background: var(--gold); color: var(--ink); font-size: 10px; font-weight: 700; border-radius: 9999px;
}
.filter-count.show { display: grid; }
.sort-select {
  background: #1c1c1f; border: 1px solid #2a2a2e; border-radius: 9999px;
  padding: 8px 14px; font-size: 13px; color: #fff; outline: none; cursor: pointer;
  transition: border-color .2s ease;
}
.sort-select:focus { border-color: var(--gold); }
.density { display: flex; gap: 2px; background: #1c1c1f; border: 1px solid #2a2a2e; border-radius: 9999px; padding: 3px; }
.density button { display: grid; place-items: center; width: 32px; height: 30px; border-radius: 9999px; color: #6a6a6a; transition: all .2s ease; }
.density button.is-active { background: var(--gold); color: var(--ink); }

/* active filter chips */
.fchip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #1c1c1f; border: 1px solid #2a2a2e;
  color: #d4d4d4; font-size: 12px; padding: 5px 10px; border-radius: 9999px;
}
.fchip button { color: #7a7a7a; transition: color .2s; }
.fchip button:hover { color: var(--gold); }

/* ════════ PRODUCT GRID + CARD ════════ */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 820px)  { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.product-grid.dense { grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 560px)  { .product-grid.dense { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 820px)  { .product-grid.dense { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1080px) { .product-grid.dense { grid-template-columns: repeat(5, 1fr); gap: 12px; } }

/* on-card Quick View button — shown on touch where hover actions are hidden */
.card-qv-m {
  display: none; width: 100%; align-items: center; justify-content: center; gap: 6px;
  background: transparent; border: 1px solid #2a2a2e; color: #e5e5e5;
  font-size: 11.5px; letter-spacing: .04em; padding: 9px; border-radius: 9999px; transition: all .2s ease;
}
.card-qv-m:hover { border-color: var(--gold); color: var(--gold); }

/* phones (single column): keep cards vertical — image on top, details below */
@media (max-width: 639px) {
  .product-grid:not(.dense) .card-media { aspect-ratio: 5/4; } /* slightly bigger, uniform image area */
  .product-grid .card-actions { display: none; } /* hover-only on touch; tap card for Quick View */
  .card-qv-m { display: inline-flex; } /* explicit Quick View button above Add to Bag */
}

.card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, #161618, #100f11);
  border: 1px solid #1f1f22; border-radius: 16px; overflow: hidden;
  transition: transform .4s var(--ease), border-color .35s ease, box-shadow .35s ease;
  opacity: 0; transform: translateY(26px);
}
.card.in { opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s var(--ease); }
.card:hover {
  transform: translateY(-7px); border-color: rgba(212,175,55,0.5);
  box-shadow: 0 28px 56px -26px rgba(0,0,0,0.95), 0 0 0 1px rgba(212,175,55,0.12);
}

.card-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: linear-gradient(160deg, #17171a, #0e0e10); }
.card-media img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; /* fill uniformly so every photo is the same size */
  opacity: 0; transform: scale(1.04);
  transition: opacity .6s ease, transform .7s var(--ease);
}
.card-media img.loaded { opacity: 1; transform: scale(1); }
.card-media img.failed { opacity: 0; } /* reveal branded placeholder */
.card-media.has-img .card-ph { opacity: 0; } /* hide monogram behind a real photo */
.card:hover .card-media img.loaded { transform: scale(1.08); }
.card-media::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,11,0.55));
  opacity: 0; transition: opacity .35s ease;
}
.card:hover .card-media::after { opacity: 1; }

/* ════════ BRANDED IMAGE PLACEHOLDER ════════ */
/* Shows an elegant monogram until the owner drops in a real photo. */
.card-ph {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 9px; text-align: center; padding: 16px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(212,175,55,0.06), transparent 60%),
    linear-gradient(160deg, #1a1a1d, #0e0e10);
}
.card-ph::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, #000 30%, transparent 78%);
}
.card-ph__mark {
  position: relative; display: grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4); color: var(--gold);
  background: rgba(212,175,55,0.05);
  font-family: "Cormorant Garamond", serif; font-size: 28px; font-weight: 600;
}
.card-ph__brand { position: relative; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(212,175,55,0.8); }
.card-ph__name { position: relative; font-family: "Cormorant Garamond", serif; font-size: 17px; color: #cfcfcf; line-height: 1.18; max-width: 92%; }

.card-badges { position: absolute; top: 9px; left: 9px; z-index: 3; display: flex; flex-direction: column; gap: 5px; }
.badge { font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; padding: 4px 8px; border-radius: 9999px; }
.badge-best { background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk)); color: var(--ink); }
.badge-pick { background: rgba(10,10,11,0.8); color: var(--gold-lt); border: 1px solid rgba(212,175,55,0.45); }
.badge-sale { background: #b3261e; color: #fff; }
.badge-new  { background: rgba(10,10,11,0.8); color: #fff; border: 1px solid #3a3a3e; }

.wish {
  position: absolute; top: 9px; right: 9px; z-index: 3;
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(10,10,11,0.7); backdrop-filter: blur(6px);
  border: 1px solid #2a2a2e; color: #d4d4d4;
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
}
.wish:hover { border-color: var(--gold); color: var(--gold); }
.wish.active { color: #e0556b; border-color: rgba(224,85,107,0.5); }
.wish.active svg { fill: #e0556b; }
.wish.pop { animation: wishpop .4s ease; }
@keyframes wishpop { 0%,100% { transform: scale(1); } 40% { transform: scale(1.35); } }

.card-actions {
  position: absolute; left: 9px; right: 9px; bottom: 9px; z-index: 3;
  display: flex; gap: 7px;
  opacity: 0; transform: translateY(14px); transition: all .35s var(--ease);
}
.card:hover .card-actions { opacity: 1; transform: translateY(0); }
.qv-btn {
  flex: 1; background: rgba(10,10,11,0.88); backdrop-filter: blur(6px);
  border: 1px solid #2a2a2e; color: #fff;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  padding: 9px; border-radius: 9999px; transition: all .25s ease;
}
.qv-btn:hover { background: #1c1c1f; border-color: var(--gold); color: var(--gold); }
.add-btn {
  display: grid; place-items: center; width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%; background: linear-gradient(135deg, var(--gold-lt), var(--gold), var(--gold-dk));
  color: var(--ink); box-shadow: 0 8px 20px -10px rgba(212,175,55,0.6);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.add-btn:hover { transform: rotate(90deg) scale(1.08); }

.card-info { padding: 13px 13px 15px; display: flex; flex-direction: column; flex: 1; }
.card-brand { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.card-name { font-family: "Cormorant Garamond", serif; font-size: 19px; color: #fff; font-weight: 600; line-height: 1.18; margin-top: 2px; }
.card-profile { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.ptag {
  font-size: 9.5px; letter-spacing: .03em; color: var(--gold-lt);
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.18);
  padding: 3px 8px; border-radius: 9999px; white-space: nowrap;
}
.ptag--lg { font-size: 12px; padding: 6px 13px; letter-spacing: .05em; }
.card-rating { display: flex; align-items: center; gap: 5px; margin-top: 9px; font-size: 11px; }
.card-stars { color: var(--gold); letter-spacing: .5px; }
.card-reviews { color: #6a6a6a; }
.card-foot { display: flex; flex-direction: column; gap: 9px; margin-top: auto; padding-top: 12px; }
.card-price { font-family: "Cormorant Garamond", serif; font-size: 19px; color: #fff; font-weight: 600; }
.card-old { font-size: 11.5px; color: #6a6a6a; text-decoration: line-through; margin-left: 5px; }
.card-cart {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px; width: 100%;
  background: #1c1c1f; border: 1px solid #2a2a2e; color: #e5e5e5;
  font-size: 11.5px; letter-spacing: .04em; padding: 9px; border-radius: 9999px; transition: all .2s ease;
}
.card-cart:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.dense .card-name { font-size: 16px; }
.dense .card-profile, .dense .qv-btn { display: none; }
.dense .card-info { padding: 10px; }

/* ════════ BANNER ════════ */
.banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.4) saturate(1.1); }
.banner-veil { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(10,10,11,0.5), rgba(10,10,11,0.95)); }

/* ════════ TESTIMONIALS ════════ */
.testimonial { background: linear-gradient(180deg, #161618, #100f11); border: 1px solid #1f1f22; border-radius: 16px; padding: 26px; transition: transform .35s ease, border-color .35s ease; }
.testimonial:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.35); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.testimonial blockquote { font-family: "Cormorant Garamond", serif; font-size: 18px; color: #d4d4d4; line-height: 1.55; margin: 14px 0 18px; font-style: italic; }
.testimonial figcaption { display: flex; align-items: center; gap: 11px; }
.avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk)); color: var(--ink); font-weight: 600; font-family: "Cormorant Garamond", serif; font-size: 19px; }
.t-name { color: #fff; font-size: 13.5px; font-weight: 500; }
.t-role { color: #7a7a7a; font-size: 12px; }

/* ════════ NEWSLETTER ════════ */
.newsletter { position: relative; overflow: hidden; background: linear-gradient(160deg, #1a1a1d, #100f11); border: 1px solid #26261f; border-radius: 24px; padding: 52px 26px; }

/* ════════ FOOTER ════════ */
.footer-head { color: #fff; font-size: 12.5px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 15px; }
.footer-list { display: flex; flex-direction: column; gap: 9px; }
.footer-list a { color: #8a8a8a; font-size: 13.5px; transition: color .25s ease, padding-left .25s ease; }
.footer-list a:hover { color: var(--gold); padding-left: 6px; }
.social-btn { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 50%; border: 1px solid #2a2a2e; color: #a3a3a3; transition: all .25s ease; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ════════ MOBILE BOTTOM NAV ════════ */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
  display: flex; align-items: stretch;
  background: rgba(13,13,14,0.96); backdrop-filter: blur(14px);
  border-top: 1px solid #1c1c1f;
  padding-bottom: env(safe-area-inset-bottom);
}
.bn-item {
  flex: 1; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 9px 0; color: #7a7a7a; font-size: 10px;
  transition: color .2s ease;
}
.bn-item:hover, .bn-item.active { color: var(--gold); }
.bn-badge {
  position: absolute; top: 4px; right: calc(50% - 22px);
  min-width: 15px; height: 15px; padding: 0 3px;
  display: none; place-items: center;
  background: var(--gold); color: var(--ink);
  font-size: 9px; font-weight: 700; border-radius: 9999px;
}
.bn-badge.show { display: grid; }

/* ════════ SIDE PANELS ════════ */
.side-panel {
  position: fixed; top: 0; right: 0; z-index: 80; height: 100%;
  background: #0d0d0e; border-left: 1px solid #1c1c1f;
  display: flex; flex-direction: column; padding: 22px;
  transform: translateX(105%); transition: transform .4s var(--ease);
}
.side-panel.open { transform: translateX(0); box-shadow: -34px 0 70px -24px rgba(0,0,0,0.95); }
.side-panel--menu { width: min(82vw, 340px); }
.side-panel--cart { width: min(94vw, 430px); }
.mobile-link { display: block; padding: 13px 4px; color: #c4c4c4; border-bottom: 1px solid #1a1a1c; transition: color .25s ease, padding-left .25s ease; }
.mobile-link:hover { color: var(--gold); padding-left: 10px; }

/* ship progress bar */
.ship-bar { margin: 14px 0 2px; font-size: 12px; }
.ship-bar__track { height: 6px; background: #1c1c1f; border-radius: 9999px; overflow: hidden; margin-top: 7px; }
.ship-bar__fill { height: 100%; background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt)); border-radius: 9999px; transition: width .5s var(--ease); }

/* cart item */
.cart-item { display: flex; gap: 12px; background: #141416; border: 1px solid #1f1f22; border-radius: 12px; padding: 10px; animation: itemIn .35s ease; }
@keyframes itemIn { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: translateX(0); } }
.cart-item__img { width: 62px; height: 62px; flex-shrink: 0; border-radius: 9px; object-fit: cover; }
.cart-item__img.failed { color: transparent; font-size: 0; background: linear-gradient(160deg, #1c1c20, #0e0e10); }
.cart-item__ph {
  display: grid; place-items: center;
  background: linear-gradient(160deg, #1c1c20, #0e0e10); border: 1px solid #1f1f22;
  color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 22px;
}
.qty-box { display: flex; align-items: center; gap: 2px; background: #1c1c1f; border: 1px solid #2a2a2e; border-radius: 9999px; padding: 2px; }
.qty-btn { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; color: #d4d4d4; transition: all .2s ease; }
.qty-btn:hover { background: var(--gold); color: var(--ink); }

/* ════════ MODAL ════════ */
.modal { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 16px; background: rgba(5,5,6,0.86); backdrop-filter: blur(6px); }
.modal.open { display: flex; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal__panel {
  position: relative; width: 100%; min-width: 0; max-width: 840px; max-height: 90vh;
  overflow: hidden; display: flex; flex-direction: column;
  background: linear-gradient(180deg, #161618, #100f11);
  border: 1px solid #2a2a2e; border-radius: 20px;
  animation: popin .4s cubic-bezier(.34,1.56,.64,1);
}
/* Quick View: fixed image pane + an independently scrollable details pane */
#qvContent { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.qv-details { flex: 1; min-width: 0; min-height: 0; overflow-y: auto; padding: 26px; }
@media (min-width: 640px) { #qvContent { flex-direction: row; } }
@media (max-width: 639px) {
  .modal { padding: 12px; }
  .qv-details { padding: 20px 18px 22px; }
  .qv-price-row { flex-wrap: wrap; gap: 10px; }
  .when { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .when__label { font-size: 9px; letter-spacing: 0; }
}
@keyframes popin { from { opacity: 0; transform: scale(.92) translateY(22px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal__close {
  position: absolute; top: 13px; right: 13px; z-index: 3;
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(10,10,11,0.85); border: 1px solid #2a2a2e; color: #fff; transition: all .25s ease;
}
.modal__close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }

/* quick-view media (fixed image pane over branded placeholder) */
.qv-media {
  position: relative; overflow: hidden; flex-shrink: 0;
  width: 100%; height: 40vh; min-height: 230px;
  background: linear-gradient(160deg, #17171a, #0e0e10);
}
@media (min-width: 640px) { .qv-media { width: 340px; height: auto; min-height: 0; align-self: stretch; } }
.qv-img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: contain; padding: 7%; opacity: 0; transition: opacity .5s ease; }
.qv-img.loaded { opacity: 1; }
.qv-img.failed { opacity: 0; }
.qv-media.has-img .card-ph { opacity: 0; } /* hide monogram once a real photo loads */

/* quick-view scent profile */
.qv-profile { margin-top: 18px; padding: 14px; border-radius: 14px; background: #161618; border: 1px solid #232328; }
.qv-profile__label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: #8a8a8a; margin-bottom: 10px; }
.qv-profile__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.qv-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; padding-top: 12px; border-top: 1px solid #232328; }
.qv-stat__label { display: block; font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: #7a7a7a; margin-bottom: 4px; }
.qv-stat__val { display: block; font-size: 13px; color: #e5e5e5; }
.meter { display: flex; gap: 3px; margin-top: 7px; }
.meter span { flex: 1; height: 4px; border-radius: 9999px; background: #2a2a2e; }
.meter span.on { background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt)); }

/* quick-view: main accords + when to wear */
.qv-section { margin-top: 20px; border-top: 1px solid #1f1f22; padding-top: 16px; }
.qv-section__title { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 13px; }
.accords { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.accord { width: 100%; display: flex; justify-content: center; }
.accord__bar {
  display: flex; align-items: center; justify-content: center; height: 27px; border-radius: 6px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .02em; text-transform: capitalize;
  box-shadow: 0 2px 9px -4px rgba(0,0,0,0.6); transition: width .5s var(--ease);
}
.when { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.when__item { display: flex; flex-direction: column; align-items: center; gap: 7px; text-align: center; }
.when__ic { color: var(--gold); line-height: 0; }
.when__ic svg { width: 21px; height: 21px; }
.when__label { font-size: 9.5px; letter-spacing: .05em; text-transform: uppercase; color: #8a8a8a; }
.when__track { width: 100%; height: 4px; border-radius: 9999px; background: #2a2a2e; overflow: hidden; }
.when__fill { display: block; height: 100%; border-radius: 9999px; background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt)); transition: width .5s var(--ease); }

/* quick-view reviews */
.qv-reviews { margin-top: 20px; border-top: 1px solid #1f1f22; padding-top: 16px; }
.qv-reviews__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.qv-reviews__avg { display: flex; align-items: center; gap: 7px; font-size: 12px; color: #8a8a8a; }
.qv-reviews__list { display: flex; flex-direction: column; gap: 12px; }
.qv-review { background: #141416; border: 1px solid #1f1f22; border-radius: 12px; padding: 13px 14px; }
.qv-review__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.qv-review__who { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #fff; font-weight: 500; }
.qv-review__ava { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk)); color: var(--ink); font-family: "Cormorant Garamond", serif; font-weight: 600; font-size: 13px; }
.qv-review__date { font-size: 11px; color: #6a6a6a; }
.qv-review__stars { display: block; font-size: 12px; margin: 7px 0 5px; }
.qv-review__text { font-size: 13px; color: #b8b8b8; line-height: 1.55; }

/* write-a-review form */
.qv-review-form { margin-top: 16px; background: linear-gradient(180deg, #161618, #100f11); border: 1px solid #232328; border-radius: 14px; padding: 16px; }
.qv-rf-stars { display: flex; gap: 3px; margin-bottom: 11px; }
.qv-rf-star { font-size: 22px; line-height: 1; color: #3a3a3e; transition: color .15s ease; }
.qv-rf-star.is-on { color: var(--gold); }
.qv-rf-star:hover { color: var(--gold-lt); }
.qv-rf-input { width: 100%; background: var(--ink); border: 1px solid #2a2a2e; border-radius: 10px; padding: 10px 13px; color: #fff; font-size: 13.5px; outline: none; margin-bottom: 10px; font-family: inherit; transition: border-color .2s ease; }
.qv-rf-input:focus { border-color: var(--gold); }
.qv-rf-input::placeholder { color: #6a6a6a; }
.qv-review-form .btn-gold { width: 100%; }

/* quick-view related products */
.qv-related { margin-top: 20px; border-top: 1px solid #1f1f22; padding-top: 16px; }
.qv-related__title { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.qv-related__row { display: flex; gap: 9px; overflow-x: auto; padding-bottom: 4px; -ms-overflow-style: none; scrollbar-width: none; }
.qv-related__row::-webkit-scrollbar { display: none; }
.qv-rel { flex: 0 0 92px; text-align: left; transition: transform .25s var(--ease); }
.qv-rel:hover { transform: translateY(-3px); }
.qv-rel__media {
  position: relative; display: grid; place-items: center;
  aspect-ratio: 1/1; border-radius: 11px; overflow: hidden;
  border: 1px solid #1f1f22; background: linear-gradient(160deg, #1a1a1d, #0e0e10);
}
.qv-rel:hover .qv-rel__media { border-color: rgba(212,175,55,0.45); }
.qv-rel__media img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.qv-rel__media img.failed { opacity: 0; }
.qv-rel__mark { z-index: 0; font-family: "Cormorant Garamond", serif; font-size: 22px; color: var(--gold); }
.qv-rel__name { display: block; font-family: "Cormorant Garamond", serif; font-size: 13px; color: #e5e5e5; line-height: 1.18; margin-top: 6px; }
.qv-rel__price { display: block; font-size: 11px; color: var(--gold); margin-top: 1px; }

/* ════════ TOAST ════════ */
.toast {
  position: fixed; bottom: 88px; left: 50%; transform: translate(-50%, 140px); z-index: 100;
  display: flex; align-items: center; gap: 10px;
  background: #141416; border: 1px solid rgba(212,175,55,0.45); border-radius: 9999px;
  padding: 11px 20px; color: #fff; font-size: 13.5px;
  box-shadow: 0 22px 54px -16px rgba(0,0,0,0.95); transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
@media (min-width: 1024px) { .toast { bottom: 26px; } }
.toast.show { transform: translate(-50%, 0); }
.toast__icon { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: var(--ink); font-size: 12px; }

/* ════════ OVERLAY ════════ */
.overlay { position: fixed; inset: 0; z-index: 70; background: rgba(5,5,6,0.72); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity .35s ease; }
.overlay.show { opacity: 1; pointer-events: auto; }

/* ════════ BACK TO TOP ════════ */
.back-top {
  position: fixed; right: 18px; z-index: 60;
  bottom: calc(150px + env(safe-area-inset-bottom)); /* clear the bottom nav + safe area */
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold), var(--gold-dk)); color: var(--ink);
  box-shadow: 0 12px 30px -12px rgba(212,175,55,0.7);
  opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
}
@media (min-width: 1024px) { .back-top { bottom: 88px; } }
.back-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-top:hover { transform: translateY(-4px) scale(1.08); }

/* ════════ SCROLL REVEAL ════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s var(--ease); transition-delay: var(--rd, 0s); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ════════ FILTER PANEL — MOBILE SHEET ════════ */
@media (max-width: 1023px) {
  .filter-panel {
    position: fixed; top: 0; right: 0; z-index: 85; height: 100%;
    width: min(86vw, 360px); border-radius: 0; max-height: none;
    transform: translateX(105%); transition: transform .4s var(--ease);
  }
  .filter-panel.open { transform: translateX(0); box-shadow: -34px 0 70px -24px rgba(0,0,0,0.95); }
}

/* ════════ ANIMATED BACKGROUND — AURORA ════════ */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aurora span { position: absolute; display: block; border-radius: 50%; filter: blur(90px); }
.aurora span:nth-child(1) {
  width: 340px; height: 340px; top: -90px; left: 3%;
  background: radial-gradient(circle, rgba(212,175,55,0.42), transparent 70%);
  animation: auroraA 17s ease-in-out infinite;
}
.aurora span:nth-child(2) {
  width: 300px; height: 300px; bottom: -110px; right: 5%;
  background: radial-gradient(circle, rgba(156,124,36,0.4), transparent 70%);
  animation: auroraB 22s ease-in-out infinite;
}
.aurora span:nth-child(3) {
  width: 250px; height: 250px; top: 34%; left: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.3), transparent 70%);
  animation: auroraA 27s ease-in-out infinite reverse;
}
@keyframes auroraA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(48px,-36px) scale(1.22); } }
@keyframes auroraB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-54px,32px) scale(1.16); } }

/* light sweep over Royal Oud banner */
.banner-sweep {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 36%, rgba(212,175,55,0.16) 50%, transparent 64%);
  background-size: 300% 100%;
  animation: bannerSweep 7s linear infinite;
}
@keyframes bannerSweep { to { background-position: -300% 0; } }

/* ════════ TESTIMONIAL SLIDER ════════ */
.slider { position: relative; max-width: 760px; margin: 0 auto; }
.slider-viewport { overflow: hidden; border-radius: 20px; }
.slider-track { display: flex; transition: transform .6s var(--ease); }
.t-slide { flex: 0 0 100%; min-width: 0; }
.t-card {
  position: relative; margin: 0 3px;
  background: linear-gradient(180deg, rgba(22,22,24,0.94), rgba(16,15,17,0.94));
  border: 1px solid #232328; border-radius: 20px;
  padding: 44px 30px 30px; text-align: center; overflow: hidden;
}
.t-mark {
  position: absolute; top: 4px; left: 26px;
  font-family: "Cormorant Garamond", serif; font-size: 96px; line-height: 1;
  color: rgba(212,175,55,0.16);
}
.t-card .stars { display: flex; justify-content: center; }
.t-card blockquote {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem); color: #e8e8e8; line-height: 1.5;
  margin: 16px auto 22px; max-width: 48ch;
}
.t-card figcaption { display: flex; align-items: center; justify-content: center; gap: 11px; }
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; }
.slider-dots { display: flex; gap: 7px; }
.dot { width: 8px; height: 8px; border-radius: 9999px; background: #3a3a3e; transition: all .35s var(--ease); }
.dot:hover { background: #5a5a5a; }
.dot.active { width: 26px; background: linear-gradient(90deg, var(--gold-lt), var(--gold-dk)); }

/* ════════ WHATSAPP BUTTON ════════ */
.wa-btn {
  position: fixed; right: 18px; z-index: 60;
  bottom: calc(84px + env(safe-area-inset-bottom)); /* sit clearly above the bottom nav + safe area */
  display: flex; align-items: center; height: 54px; width: 54px;
  border-radius: 9999px; background: #25d366; color: #fff; overflow: hidden;
  transition: width .38s var(--ease), transform .25s ease;
  animation: waPulse 2.8s ease-in-out infinite;
}
@media (min-width: 1024px) { .wa-btn { bottom: 22px; } }
.wa-btn svg { width: 27px; height: 27px; margin: 0 13.5px; flex-shrink: 0; }
.wa-btn__label { white-space: nowrap; font-size: 13px; font-weight: 600; padding-right: 22px; opacity: 0; transition: opacity .25s ease; }
.wa-btn:hover { width: 188px; transform: translateY(-2px); }
.wa-btn:hover .wa-btn__label { opacity: 1; }
@keyframes waPulse {
  0%   { box-shadow: 0 12px 28px -8px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 12px 28px -8px rgba(37,211,102,0.55), 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 28px -8px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0); }
}

/* ════════ SCENT FAMILY FILTER TAGS ════════ */
.ftag-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.ftag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: #b8b8b8; background: #141416;
  border: 1px solid #2a2a2e; padding: 6px 11px; border-radius: 9999px;
  transition: all .2s ease;
}
.ftag:hover { color: #fff; border-color: #3a3a3e; }
.ftag.is-on {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold), var(--gold-dk));
  color: var(--ink); font-weight: 600; border-color: transparent;
  box-shadow: 0 6px 16px -8px rgba(212,175,55,0.6);
}
.ftag__n { font-size: 10px; opacity: .65; }
.ftag.is-on .ftag__n { opacity: .85; }

/* ════════ ELEGANT TEXTURE OVERLAYS ════════ */
/* fine film grain for a tactile, premium feel */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* soft edge vignette to focus the eye */
.vignette {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 100% 86% at 50% 42%, transparent 58%, rgba(0,0,0,0.42));
}

/* ════════ STOCK PILL ════════ */
.card-metarow { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 9px; }
.card-metarow .card-rating { margin-top: 0; }
.stock-pill {
  display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
  font-size: 9.5px; font-weight: 600; letter-spacing: .04em;
  padding: 4px 9px 4px 7px; border-radius: 9999px; border: 1px solid; white-space: nowrap;
}
.stock-pill svg { width: 11px; height: 11px; }
.stock-pill.in  { color: #58c79a; background: rgba(62,199,140,0.10); border-color: rgba(62,199,140,0.30); }
.stock-pill.low { color: var(--gold-lt); background: rgba(212,175,55,0.12); border-color: rgba(212,175,55,0.40); }
.stock-pill.out { color: #ff8a82; background: rgba(179,38,30,0.14); border-color: rgba(179,38,30,0.45); }
.dense .stock-pill { display: none; }
.dense .card-metarow { margin-top: 6px; }

.oos-flag {
  position: absolute; z-index: 3; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-6deg);
  background: rgba(10,10,11,0.82); backdrop-filter: blur(4px);
  border: 1px solid rgba(212,175,55,0.4); color: var(--gold-lt);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  padding: 7px 18px; border-radius: 9999px;
}
.card.is-oos .card-media img.loaded, .qv-media.is-oos .qv-img.loaded { filter: grayscale(0.7) brightness(0.62); }
.card.is-oos .card-ph { filter: grayscale(0.5) brightness(0.8); }
.card-cart[disabled] { opacity: .5; cursor: not-allowed; background: #1c1c1f; color: #8a8a8a; border-color: #2a2a2e; }
.card-cart[disabled]:hover { background: #1c1c1f; color: #8a8a8a; border-color: #2a2a2e; }

/* ════════ CHECKOUT ════════ */
.modal__panel--checkout { max-width: 860px; }
.co-wrap { padding: 30px; }
.co-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 4vw, 2.6rem); color: #fff; font-weight: 600; line-height: 1.05; }
.co-sub { color: #8a8a8a; font-size: 13.5px; margin-top: 6px; }
.co-grid { display: grid; gap: 22px; margin-top: 22px; }
@media (min-width: 760px) { .co-grid { grid-template-columns: 1fr 320px; align-items: start; } }
.co-fields { display: flex; flex-direction: column; gap: 14px; }
.co-label { display: flex; flex-direction: column; gap: 7px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #b8b8b8; }
.co-label span { color: var(--gold); }
.co-input {
  background: var(--ink); border: 1px solid #2a2a2e; border-radius: 11px;
  padding: 12px 14px; color: #fff; font-size: 14px; outline: none; transition: border-color .2s ease;
  font-family: inherit; text-transform: none; letter-spacing: normal;
}
.co-input:focus { border-color: var(--gold); }
.co-input::placeholder { color: #6a6a6a; }
textarea.co-input { resize: vertical; }

.co-summary { background: linear-gradient(180deg, #161618, #100f11); border: 1px solid #1f1f22; border-radius: 16px; padding: 20px; position: sticky; top: 0; }
.co-summary__title { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.co-items { display: flex; flex-direction: column; gap: 9px; max-height: 200px; overflow-y: auto; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid #1f1f22; }
.co-line { display: flex; justify-content: space-between; gap: 10px; font-size: 12.5px; color: #c4c4c4; }
.co-line span:last-child { color: #fff; white-space: nowrap; }
.co-row { display: flex; justify-content: space-between; font-size: 13px; color: #8a8a8a; margin-bottom: 9px; }
.co-row--total { padding-top: 12px; border-top: 1px solid #1f1f22; color: #fff; align-items: center; }
.co-row--total span:last-child { font-family: "Cormorant Garamond", serif; font-size: 24px; color: var(--gold); }
.co-summary .btn-gold { margin-top: 6px; }
.co-fine { font-size: 10.5px; color: #6a6a6a; text-align: center; margin-top: 12px; line-height: 1.5; }

.co-done { padding: 48px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; max-width: 460px; margin: 0 auto; }
.co-done__mark {
  display: grid; place-items: center; width: 66px; height: 66px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk)); color: var(--ink); margin-bottom: 18px;
  animation: popin .5s cubic-bezier(.34,1.56,.64,1);
}
.co-done .co-sub { margin-bottom: 22px; }
.co-done .co-wa { margin-bottom: 10px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .card, .hero-anim { opacity: 1 !important; transform: none !important; }
}
