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

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold:       #C4A46B;
  --gold-light: #D4B47B;
  --ink:        #1a1209;
  --ink-50:     rgba(26,18,9,0.5);
  --ink-30:     rgba(26,18,9,0.3);
  --cream:      #F5EFE8;
  --bg:         #0A0A0A;
  --text:       #F5EFE8;
  --text-50:    rgba(245,239,232,0.55);
  --font-h:     'Cormorant Garamond', Georgia, serif;
  --font-b:     'Inter', system-ui, sans-serif;
  --pad:        clamp(1.5rem, 2vw, 2.4rem);
  --max:        1820px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: #0A0A0A; color: var(--text); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }

/* ─── ANNOUNCEMENT BAR ───────────────────────────────────────────── */
.ann-bar {
  background: #0B0907;
  overflow: hidden;
  padding: 0;
  transition: max-height .3s, padding .3s;
  max-height: 50px;
  height: 50px;
  display: flex;
  align-items: center;
}
.ann-bar.hidden { max-height: 0; padding: 0; }
.ann-track {
  display: flex;
  align-items: center;
  gap: 3.7rem;
  white-space: nowrap;
  width: max-content;
  animation: ticker 34s linear infinite;
}
.ann-item { font-size: .79rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; color: rgba(245,239,232,.78); }
.ann-dot  { color: var(--gold); font-size: .5rem; opacity: .55; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ─── HEADER ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(90deg, #ead5bc 0%, #f1ddc3 35%, #e0b889 74%, #d6a779 100%);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.header-inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 2.45rem;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.header-logo { font-family: var(--font-b); font-size: 1rem; font-weight: 800; letter-spacing: 0; color: #342313; display: flex; flex-direction: column; align-items: center; gap: 2px; margin-top: -10px; }
.header-logo-img { height: 32px; width: auto; display: block; mix-blend-mode: multiply; }
.header-nav  { display: flex; gap: 1.65rem; position: absolute; left: 50%; transform: translateX(-50%); }
.header-nav a { font-size: .92rem; font-weight: 500; letter-spacing: 0; color: rgba(26,18,9,.9); transition: color .2s; }
.header-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-search {
  width: clamp(150px, 17vw, 248px);
  height: 40px;
  display: flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(26,18,9,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.46);
  color: rgba(26,18,9,.64);
  padding: 0 .8rem;
}
.header-search:focus-within {
  border-color: rgba(26,18,9,.34);
  background: rgba(255,255,255,.72);
}
.header-search svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: .8rem;
  letter-spacing: 0;
}
.header-search input::placeholder { color: rgba(26,18,9,.46); }
.header-icon { width: 19px; height: 19px; stroke: #1c140c; fill: none; stroke-width: 1.7; display: block; }
.header-icon-btn { line-height: 0; }
.header-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  line-height: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}
.header-account:hover { opacity: .72; transform: translateY(-1px); }
.header-icon--account { width: 20px; height: 20px; stroke-width: 1.7; }
.header-cart-wrap { position: relative; line-height: 0; }
.cart-badge {
  position: absolute; top: -5px; right: -7px;
  background: var(--ink); color: #fff;
  font-size: .48rem; font-weight: 700;
  width: 14px; height: 14px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.header-menu-btn { display: none; line-height: 0; }
@media (max-width: 700px) {
  .header-nav { display: none; }
  .header-menu-btn { display: flex; }
  .header-inner { gap: .7rem; padding: 0 1rem; }
  .header-actions { gap: .65rem; min-width: 0; }
  .header-search { width: min(39vw, 150px); height: 36px; padding: 0 .65rem; }
  .header-search input { font-size: .75rem; }
}

/* Hide header search bar on catalog page (it has its own search) */
.page-catalog .header-search { display: none; }

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero { position: relative; height: 638px; overflow: hidden; background: #E8D4BB; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__inner {
  position: relative; z-index: 1;
  max-width: none; margin: 0 auto; padding: 0 2.4rem 0 7rem;
  height: 100%;
  display: grid;
  grid-template-columns: 382px minmax(520px, 1fr) 610px;
  gap: 3.8rem;
  align-items: start;
}

/* Col 1 — gift card */
.hero__col--left { padding-top: 3.45rem; }
.hero__gift-card {
  background: rgba(239,215,169,.78);
  border: 2px solid rgba(196,164,107,.88);
  border-radius: 18px;
  padding: 3rem 2rem 2.45rem;
  text-align: center;
  min-height: 410px;
  box-shadow: inset 0 0 0 6px rgba(245,239,232,.34), 0 16px 34px rgba(95,60,22,.08);
}
.hero__gift-icon { width: 43px; height: 43px; margin: 0 auto 1.15rem; color: var(--gold); }
.hero__gift-icon svg { width: 100%; height: 100%; }
.hero__gift-label { font-size: .67rem; letter-spacing: .34em; text-transform: uppercase; color: rgba(134,88,31,.86); margin-bottom: 1.25rem; }
.hero__gift-title { font-family: var(--font-h); font-size: 2.75rem; font-weight: 500; color: var(--ink); line-height: .98; margin-bottom: 1.35rem; }
.hero__gift-presale {
  border-top: 1px solid rgba(196,164,107,.32);
  padding-top: 1.05rem;
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(134,88,31,.72);
  margin-bottom: .85rem;
}
.hero__countdown { display: flex; justify-content: center; gap: .65rem; margin-bottom: 1.05rem; }
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(236,203,144,.7);
  border: 1px solid rgba(196,164,107,.38);
  border-radius: 7px;
  padding: .6rem .65rem .48rem;
  min-width: 48px;
}
.countdown-unit span  { font-family: var(--font-h); font-size: 1.48rem; font-weight: 500; color: var(--ink); line-height: 1; }
.countdown-unit small { font-size: .43rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(134,88,31,.72); margin-top: 5px; }
.hero__gift-included { font-size: .93rem; color: rgba(26,18,9,.46); }

/* Col 2 — heading + offer */
.hero__col--center {
  display: flex; flex-direction: column; justify-content: flex-start;
  height: 100%; padding: .65rem 0 0;
}
.hero__heading {
  font-family: var(--font-h);
  font-size: clamp(3.75rem, 3.8vw, 4.85rem);
  font-weight: 500; line-height: .96; letter-spacing: 0; color: var(--ink);
  margin-bottom: 1.3rem;
}
.hero__heading em { font-style: italic; font-weight: 300; }

/* Offer area */
.hero__offer-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .64rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(134,88,31,.86);
  margin-bottom: .9rem;
}
.hero__offer-eyebrow::before,
.hero__offer-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: rgba(196,164,107,.75);
}
.hero__offer-price { display: flex; align-items: baseline; gap: .55rem; margin-bottom: .75rem; }
.hero__price-old { font-size: .9rem; color: rgba(26,18,9,.42); text-decoration: line-through; }
.hero__price-new { font-family: var(--font-h); font-size: 3.35rem; font-weight: 500; color: var(--ink); line-height: 1; }
.hero__price-unit { font-size: 1rem; color: rgba(26,18,9,.66); }
.hero__features { list-style: none; margin-bottom: 1.05rem; }
.hero__features li {
  font-size: .94rem; color: rgba(26,18,9,.74);
  padding: .13rem 0 .13rem 1.75rem;
  position: relative; line-height: 1.4;
}
.hero__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: .22rem;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #8f681e;
  font-size: .7rem;
  font-weight: 800;
}
.hero__cta {
  display: inline-block; background: var(--gold); color: #0A0A0A;
  font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  padding: 1rem 2.15rem; border-radius: 999px; margin-bottom: .8rem;
  transition: background .2s;
}
.hero__cta:hover { background: var(--gold-light); }
.hero__cta--locked {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  opacity: .52; cursor: default; pointer-events: none;
}
.hero__cta--locked:hover { background: var(--gold); }
.hero__cta-days-left {
  font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(26,18,9,.45); margin-bottom: .55rem;
}
.hero__cta-sub { font-size: .67rem; color: rgba(26,18,9,.34); }

/* Col 3 — model */
.hero__col--right { display: flex; align-items: flex-end; justify-content: flex-end; height: 100%; overflow: hidden; }
.hero__model { height: 100%; width: auto; max-width: none; object-fit: contain; object-position: bottom right; transform: none; }
.hero__model--mobile { display: none; }
.hero__mobile-model { display: none; }

/* MacBook / medium-large desktops (1201–1780px) */
@media (max-width: 1780px) and (min-width: 1201px) {
  .hero__inner {
    padding: 0 1rem 0 3.5rem;
    grid-template-columns: 250px minmax(340px, 1fr) 440px;
    gap: 2rem;
  }
  .hero__gift-card { min-height: 360px; padding: 2.2rem 1.5rem 1.8rem; }
}

@media (max-width: 1200px) and (min-width: 851px) {
  .header-inner { height: 58px; padding: 0 1.4rem; }
  .header-logo { font-size: .78rem; }
  .header-logo-img { height: 34px; }
  .header-nav a { font-size: .68rem; }
  .header-account { width: 20px; height: 20px; }
  .header-icon { width: 15px; height: 15px; }
  .hero { height: 340px; }
  .hero__inner {
    padding: 0 0 0 4rem;
    grid-template-columns: 170px minmax(270px, 1fr) 320px;
    gap: 2.15rem;
  }
  .hero__col--left { padding-top: 2.1rem; }
  .hero__gift-card { min-height: 216px; padding: 1.3rem .9rem 1rem; border-radius: 9px; box-shadow: none; }
  .hero__gift-icon { width: 24px; height: 24px; margin-bottom: .65rem; }
  .hero__gift-label { font-size: .42rem; letter-spacing: .28em; margin-bottom: .65rem; }
  .hero__gift-title { font-size: 1.65rem; margin-bottom: .75rem; }
  .hero__gift-presale { font-size: .38rem; letter-spacing: .24em; padding-top: .65rem; margin-bottom: .45rem; }
  .hero__countdown { gap: .32rem; margin-bottom: .55rem; }
  .countdown-unit { min-width: 32px; padding: .35rem .35rem .25rem; border-radius: 4px; }
  .countdown-unit span { font-size: .88rem; }
  .countdown-unit small { font-size: .31rem; margin-top: 2px; }
  .hero__gift-included { font-size: .56rem; }
  .hero__col--center { padding-top: .25rem; }
  .hero__heading { font-size: 2.72rem; margin-bottom: .7rem; }
  .hero__offer-eyebrow { font-size: .42rem; letter-spacing: .24em; gap: .65rem; margin-bottom: .4rem; }
  .hero__offer-eyebrow::before,
  .hero__offer-eyebrow::after { width: 22px; }
  .hero__offer-price { gap: .35rem; margin-bottom: .35rem; }
  .hero__price-old { font-size: .62rem; }
  .hero__price-new { font-size: 2.1rem; }
  .hero__price-unit { font-size: .58rem; }
  .hero__features { margin-bottom: .6rem; }
  .hero__features li { font-size: .6rem; padding: .08rem 0 .08rem 1rem; }
  .hero__features li::before { top: .13rem; width: 12px; height: 12px; font-size: .45rem; }
  .hero__cta { font-size: .52rem; padding: .65rem 1.45rem; margin-bottom: .4rem; }
  .hero__cta-sub { font-size: .46rem; }
  .hero__model { height: 112%; }
  .trust-bar { padding: 1.45rem var(--pad); }
  .trust-bar__inner { justify-content: space-between; gap: .5rem; flex-wrap: nowrap; }
  .trust-item { min-width: 0; gap: .8rem; }
  .trust-item svg { width: 22px; height: 22px; }
  .trust-item__label { font-size: .55rem; letter-spacing: .12em; white-space: nowrap; }
  .trust-item__sub { font-size: .58rem; }
}

@media (max-width: 850px) {
  .hero { height: auto; }
  .hero__inner { grid-template-columns: 260px 1fr; height: auto; padding: 2rem var(--pad); }
  .hero__col--right { display: none; }
}
@media (max-width: 600px) {
  .hero { overflow: hidden; min-height: 680px; }
  .hero__inner { grid-template-columns: 1fr; position: static; }
  .hero__col--left { display: none; }
  .hero__col--center { padding: 0; gap: 1.5rem; order: 1; position: relative; z-index: 2; }
  .hero__heading { font-size: 2.4rem; margin-bottom: 3.6rem; transform: translateY(20px) scale(1.09); transform-origin: top left; }
  .hero__offer-eyebrow { margin-top: 4px; }
  .hero__col--right {
    display: block;
    position: absolute;
    right: -32px;
    top: 0;
    bottom: 0;
    width: 75%;
    pointer-events: none;
    z-index: 1;
  }
  .hero__model--desktop { display: none; }
  .hero__model--mobile {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: none;
    object-fit: contain;
    object-position: bottom right;
    transform: translateY(-80px);
    opacity: 1;
  }
  .trust-bar {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding: .25rem var(--pad) !important;
  }
  .trust-bar__inner {
    flex-direction: column !important;
    gap: .08rem !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .trust-item { gap: .75rem !important; min-width: 0 !important; }
  .trust-item svg { width: 34px !important; height: 34px !important; flex-shrink: 0; }
  .trust-item__label { font-size: 1.02rem !important; letter-spacing: .14em !important; }
  .trust-item__sub { font-size: .9rem !important; }
}

/* ─── MOBILE PROMO BANNER ───────────────────────────────────────── */
.mobile-promo-banner {
  display: none;
}
@media (max-width: 600px) {
  .mobile-promo-banner {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #1a1209;
    color: #C4A46B;
    padding: 0 0.4rem 0 0.9rem;
    height: 36px;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
  }
  .mobile-promo-banner__text { flex-shrink: 0; }
  .mobile-promo-banner__divider { opacity: .4; flex-shrink: 0; }
  .mobile-promo-banner__countdown { flex-shrink: 0; color: #fff; font-variant-numeric: tabular-nums; letter-spacing: .02em; }
}

/* ─── TRUST BAR ──────────────────────────────────────────────────── */
.trust-bar { background: #111; padding: 3.05rem var(--pad); }
.trust-bar__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around; gap: 4rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 1.25rem; min-width: 270px; }
.trust-item svg { width: 31px; height: 31px; stroke: var(--gold); fill: none; stroke-width: 1.6; flex-shrink: 0; }
.trust-item__label { font-size: .93rem; font-weight: 800; color: var(--gold); letter-spacing: .22em; text-transform: uppercase; }
.trust-item__sub { font-size: .82rem; color: rgba(196,164,107,.72); }

@media (max-width: 1200px) and (min-width: 851px) {
  .trust-bar { padding: 1.45rem var(--pad); }
  .trust-bar__inner { justify-content: space-between; gap: .5rem; flex-wrap: nowrap; }
  .trust-item { min-width: 0; gap: .8rem; }
  .trust-item svg { width: 22px; height: 22px; }
  .trust-item__label { font-size: .55rem; letter-spacing: .12em; white-space: nowrap; }
  .trust-item__sub { font-size: .58rem; }
}

/* ─── SCENT MOSAIC ───────────────────────────────────────────────── */
.scent-mosaic {
  background: #0A0A0A;
  padding: 3.5rem 1.5rem 4rem;
}
.mosaic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 328px minmax(0, 1fr);
  gap: 2.25rem;
  min-height: 798px;
  max-width: 1860px;
  margin: 0 auto;
  align-items: stretch;
}
.mosaic-col {
  display: grid;
  grid-template-rows: repeat(5, minmax(130px, 1fr));
  gap: .6rem;
}
.mosaic-tile {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 8px;
  min-height: 130px;
}
.mosaic-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,.38) 45%, rgba(0,0,0,.16) 100%);
  transition: background .3s, transform .3s;
}
.mosaic-tile:hover::after {
  background: linear-gradient(90deg, rgba(0,0,0,.54) 0%, rgba(0,0,0,.26) 45%, rgba(0,0,0,.08) 100%);
}
.mosaic-tile__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: min-content min-content;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1rem;
  padding: 1.7rem 1.55rem;
}
.mosaic-tile__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex: 0 0 28px;
  font-size: 0;
  line-height: 1;
  grid-row: 1 / 3;
  grid-column: 1;
}
.mosaic-tile__icon::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask: var(--tile-icon) center / contain no-repeat;
  mask: var(--tile-icon) center / contain no-repeat;
}
.mosaic-col:first-child .mosaic-tile:nth-child(1) { --tile-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='black' stroke-width='1.7'/%3E%3Cpath d='M12 2v20M2 12h20M5 5l14 14M19 5 5 19' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
.mosaic-col:first-child .mosaic-tile:nth-child(2),
.mosaic-col:last-child .mosaic-tile:nth-child(1),
.mosaic-col:last-child .mosaic-tile:nth-child(4) { --tile-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 14c2.5 0 2.5-4 5-4s2.5 4 5 4 2.5-4 5-4 2.5 4 5 4M2 19c2.5 0 2.5-4 5-4s2.5 4 5 4 2.5-4 5-4 2.5 4 5 4' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E"); }
.mosaic-col:first-child .mosaic-tile:nth-child(3) { --tile-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2v20M2 12h20M5.5 5.5l13 13M18.5 5.5l-13 13' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='12' r='3.2' fill='none' stroke='black' stroke-width='1.7'/%3E%3C/svg%3E"); }
.mosaic-col:first-child .mosaic-tile:nth-child(4),
.mosaic-col:last-child .mosaic-tile:nth-child(3) { --tile-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 22 12 12 22 2 12 12 2Z' fill='none' stroke='black' stroke-width='1.7'/%3E%3Cpath d='M12 2 8 12l4 10 4-10-4-10ZM2 12h20' fill='none' stroke='black' stroke-width='1.3'/%3E%3C/svg%3E"); }
.mosaic-col:first-child .mosaic-tile:nth-child(5) { --tile-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4c-8 0-14 5-14 12 0 2.5 1.7 4 4 4 7 0 10-8 10-16Z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3Cpath d='M4 20c3-5 7-8 12-10' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E"); }
.mosaic-col:last-child .mosaic-tile:nth-child(2) { --tile-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 21 7v5c0 5-3.7 8.5-9 10-5.3-1.5-9-5-9-10V7l9-4Z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.mosaic-col:last-child .mosaic-tile:nth-child(5) { --tile-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 21 7v10l-9 5-9-5V7l9-5Z' fill='none' stroke='black' stroke-width='1.7' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.mosaic-tile__name {
  font-family: var(--font-b);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .25rem;
  grid-column: 2;
}
.mosaic-tile__tags {
  font-size: .77rem;
  color: rgba(255,255,255,.66);
  letter-spacing: .01em;
  grid-column: 2;
}

/* Mosaic center */
.mosaic-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.mosaic-quiz {
  position: relative;
  width: 100%;
  min-height: 585px;
  padding: 4.25rem 1.5rem 1.05rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% -2%, rgba(245,222,166,.26) 0%, rgba(196,164,107,.11) 22%, transparent 44%),
    linear-gradient(180deg, rgba(23,18,7,.82) 0%, rgba(17,16,7,.88) 58%, rgba(9,8,5,.92) 100%),
    url('../images/image6.png');
  background-size: auto, auto, cover;
  background-position: center, center, center;
  border: 1px solid rgba(196,164,107,.5);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.42), inset 0 0 0 1px rgba(0,0,0,.24);
  overflow: hidden;
}
.mosaic-quiz::before {
  content: '';
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 118px;
  background: radial-gradient(ellipse, rgba(245,222,166,.3) 0%, rgba(196,164,107,.13) 43%, transparent 74%);
  pointer-events: none;
}
.mosaic-quiz__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.05rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url('../images/logoicon.png') center center / 200% auto no-repeat;
  opacity: .86;
}
.mosaic-quiz__icon img {
  display: none;
}
.mosaic-quiz__eyebrow { font-size: .73rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: .78rem; position: relative; z-index: 1; }
.mosaic-quiz__heading { font-family: var(--font-h); font-size: 3.28rem; font-style: italic; font-weight: 400; line-height: .94; color: #fff9ef; margin-bottom: 1.65rem; position: relative; z-index: 1; text-shadow: 0 12px 32px rgba(0,0,0,.42); }
.mosaic-quiz__heading::after {
  content: '';
  display: block;
  width: 108px;
  height: 9px;
  margin: 1.05rem auto 0;
  background:
    radial-gradient(circle, var(--gold) 0 2px, transparent 2.5px) center / 9px 9px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left 50% / 44px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right 50% / 44px 1px no-repeat;
  opacity: .9;
}
.mosaic-quiz__heading em { font-style: italic; color: inherit; }
.mosaic-quiz__sub {
  max-width: 30ch;
  margin: 0 auto 1.05rem;
  font-size: .88rem;
  color: rgba(212,180,123,.96);
  line-height: 1.48;
  position: relative;
  z-index: 1;
}
.mosaic-quiz__btn {
  display: block;
  background: var(--gold);
  color: #0A0A0A;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .98rem 1.4rem;
  border-radius: 999px;
  margin: 5px auto .95rem;
  width: 100%;
  max-width: 280px;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 26px rgba(196,164,107,.24);
  transition: background .22s, box-shadow .22s, transform .18s, letter-spacing .22s;
  overflow: hidden;
}
.mosaic-quiz__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .42s ease;
}
.mosaic-quiz__btn:hover {
  background: var(--gold-light);
  box-shadow: 0 18px 40px rgba(196,164,107,.42);
  transform: translateY(-2px);
  letter-spacing: .26em;
}
.mosaic-quiz__btn:hover::after {
  transform: translateX(100%);
}
.mosaic-quiz__btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(196,164,107,.28);
}
.mosaic-quiz__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(196,164,107,.22);
  padding-top: .72rem;
  position: relative;
  z-index: 1;
}
.mosaic-quiz__badges span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .38rem;
  min-height: 52px;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,239,232,.72);
  text-align: center;
  line-height: 1.18;
}
.mosaic-quiz__badges span + span { border-left: 1px solid rgba(196,164,107,.22); }
.mosaic-quiz__badges span::before {
  content: '';
  width: 21px;
  height: 21px;
  background: var(--gold);
  -webkit-mask: var(--badge-icon) center / contain no-repeat;
  mask: var(--badge-icon) center / contain no-repeat;
}
.mosaic-quiz__badges span:nth-child(1) { --badge-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath d='M12 6v6l4 2' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.mosaic-quiz__badges span:nth-child(2) { --badge-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 7V4M16 7V4M7 9h10M6 7h12v5c0 5-2.5 8-6 8s-6-3-6-8V7Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 14h6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); }
.mosaic-quiz__badges span:nth-child(3) { --badge-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 15 9l6 .8-4.4 4.3 1.1 6.1L12 17l-5.7 3.2 1.1-6.1L3 9.8 9 9l3-6Z' fill='none' stroke='black' stroke-width='1.6' stroke-linejoin='round'/%3E%3C/svg%3E"); }

@media (max-width: 900px) {
  .scent-mosaic { padding: 1rem .3rem 2rem; }
  .mosaic-grid { grid-template-columns: 1fr; min-height: auto; gap: .75rem; }
  .mosaic-col { grid-template-rows: repeat(5, 120px); }
  .mosaic-center { min-height: auto; border: none; border-radius: 0; }
  .mosaic-quiz { max-width: 328px; min-height: 592px; margin: 0 auto; }
  .mosaic-tile__body { padding: 1.2rem; }
}

/* ─── SCENT GUIDE ─────────────────────────────────────────────────── */
.guide-section { background: #fff; }
.guide-inner { max-width: 1710px; margin: 0 auto; padding: 3.3rem var(--pad) 3.2rem; }
.guide__eyebrow { text-align: center; font-size: .64rem; letter-spacing: .34em; text-transform: uppercase; color: rgba(196,164,107,.72); font-weight: 800; margin-bottom: .7rem; }
.guide__heading { text-align: center; font-family: var(--font-h); font-size: clamp(2.65rem, 3vw, 3.9rem); font-weight: 500; letter-spacing: 0; color: var(--ink); margin-bottom: .45rem; line-height: 1.05; }
.guide__sub { text-align: center; font-size: .78rem; color: rgba(26,18,9,.45); max-width: 52ch; margin: 0 auto 3.2rem; line-height: 1.5; }

/* Category grid */
.guide-cats {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin: 0 auto 1.45rem;
  padding: .38rem;
  width: max-content;
  max-width: 100%;
  flex-wrap: wrap;
  border: 1px solid rgba(196,164,107,.22);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(196,164,107,.1);
}
.guide-cat {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  min-width: 118px;
  font-size: .7rem; font-weight: 800; letter-spacing: .02em; text-transform: none; color: #C4A46B;
  padding: .78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  text-align: left; cursor: pointer;
  transition: color .2s, background .2s, box-shadow .2s, border-color .2s;
}
.guide-cat:nth-child(4n) { border-right: 1px solid transparent; }
.guide-cat:hover {
  color: #b17035;
  background: rgba(196,164,107,.07);
  border-color: rgba(196,164,107,.25);
}
.guide-cat.active {
  color: #1a1209;
  background: #C4A46B;
  border-color: #C4A46B;
  box-shadow: 0 6px 18px rgba(196,164,107,.3);
}
.guide-cat span { font-size: .72rem; color: var(--gold); min-width: auto; }
@media (max-width: 700px) {
  .guide-cats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    border-radius: 18px;
  }
  .guide-cat { min-width: 0; }
  .guide-cat:nth-child(4n) { border-right: 1px solid transparent; }
  .guide-cat:nth-child(2n) { border-right: none; }
}

/* Gender toggle */
.gender-toggle {
  display: flex;
  justify-content: center;
  width: max-content;
  margin: 2.2rem auto 1.9rem;
  padding: .18rem;
  border: 1px solid rgba(26,18,9,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  box-shadow: 0 12px 28px rgba(45,28,10,.08);
}
.gender-btn { font-size: .78rem; font-weight: 700; color: rgba(26,18,9,.68); padding: .56rem 2.55rem; border: 0; cursor: pointer; transition: all .2s; }
.gender-btn:first-child { border-radius: 999px 0 0 999px; }
.gender-btn:last-child  { border-radius: 0 999px 999px 0; border-left: none; }
.gender-btn.active { background: #fff; border-color: transparent; color: rgba(26,18,9,.86); box-shadow: 0 5px 14px rgba(45,28,10,.09); }

/* Product showcase */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}
.prod-card {
  position: relative;
  min-height: 310px;
  border-radius: 8px;
  overflow: hidden;
  background: #130f0c;
  color: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}
.prod-card--clean:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0,0,0,.18);
}
.prod-card--clean:hover .prod-card__img {
  transform: scale(1.06);
}
.prod-card[hidden] { display: none; }
.prod-card--clean { background: #130f0c; min-height: 0; }
.prod-card--clean::before, .prod-card--clean::after { display: none; }
.prod-card--clean .prod-card__link { display: flex; flex-direction: column; }
.prod-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.12) 40%, rgba(0,0,0,.82) 100%),
    var(--prod-bg, url('../images/product-bottle.png')) center / cover no-repeat;
  transition: transform .5s ease;
}
.prod-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--prod-wash, transparent);
  mix-blend-mode: screen;
  opacity: .38;
  pointer-events: none;
}
.prod-card:hover::before { transform: scale(1.035); }
.prod-card__link { position: relative; z-index: 1; display: block; width: 100%; height: 100%; min-height: inherit; }
.prod-card__badge {
  position: absolute;
  top: 1.05rem;
  left: 1.1rem;
  z-index: 3;
  padding: .35rem .78rem;
  border: 1px solid rgba(196,164,107,.45);
  border-radius: 999px;
  background: rgba(18,13,8,.28);
  color: #e1c27c;
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.prod-card__bottle {
  display: none;
}
.prod-card__copy {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.05rem;
  z-index: 3;
}
.prod-card__copy h3 {
  font-family: var(--font-h);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  color: #fff8ef;
  margin-bottom: .25rem;
}
.prod-card__notes { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.88); margin-bottom: .75rem; }
.prod-card__desc {
  max-width: 25ch;
  font-size: .76rem;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin-bottom: .85rem;
}
.prod-card__price { font-size: .82rem; color: #fff; margin-bottom: 1rem; }
.prod-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  min-height: 32px;
  padding: .55rem .9rem;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  color: #fff;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(0,0,0,.18);
}
.prod-card--featured {
  grid-column: span 2;
  min-height: 420px;
}
.prod-card--featured::before {
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.34) 42%, rgba(0,0,0,.06) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.72) 100%),
    url('../images/product-bottle.png') 78% 50% / cover no-repeat;
}
.prod-card--featured .prod-card__copy {
  top: 7.3rem;
  bottom: auto;
  right: 54%;
}
.prod-card--featured .prod-card__copy h3 { font-size: 3rem; }
.prod-card--featured .prod-card__notes { margin-bottom: 1rem; }
.prod-card--featured .prod-card__price { margin-bottom: 1.2rem; }
.prod-card:nth-child(2),
.prod-card:nth-child(3) { min-height: 420px; }
.prod-card--bloom { --prod-wash: radial-gradient(circle at 80% 18%, rgba(255,184,170,.75), transparent 38%); }
.prod-card--petals { --prod-wash: radial-gradient(circle at 82% 12%, rgba(161,0,39,.8), transparent 44%); }
.prod-card--midnight { --prod-wash: radial-gradient(circle at 12% 76%, rgba(97,50,132,.75), transparent 36%); }
.prod-card--golden { --prod-wash: radial-gradient(circle at 72% 68%, rgba(217,122,22,.75), transparent 44%); }
.prod-card--citrus { --prod-wash: radial-gradient(circle at 18% 78%, rgba(92,129,45,.78), transparent 42%); }
.prod-card--leather { --prod-wash: radial-gradient(circle at 78% 70%, rgba(111,69,35,.75), transparent 42%); }
.prod-card--banner {
  grid-column: 1 / -1;
  min-height: 198px;
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2.35rem;
  background:
    linear-gradient(90deg, rgba(6,5,4,.94) 0%, rgba(19,13,9,.72) 46%, rgba(7,6,5,.92) 100%),
    url('../images/image6.png') center / cover no-repeat;
}
.prod-card--banner::before,
.prod-card--banner::after { display: none; }
.prod-banner__copy { position: relative; z-index: 2; }
.prod-banner__copy p {
  color: #d3a94e;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.prod-banner__copy h3 {
  font-family: var(--font-h);
  font-size: 2.45rem;
  font-weight: 400;
  line-height: .95;
  color: #fff7ed;
  margin-bottom: 1rem;
}
.prod-banner__copy span {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  line-height: 1.45;
}
.prod-card--banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: .35;
}
.prod-card--banner a {
  position: relative;
  z-index: 2;
  justify-self: end;
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 4px;
  padding: .85rem 1.25rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-card--featured,
  .prod-card--banner { grid-column: 1 / -1; }
  .prod-card--banner { grid-template-columns: 1fr; }
  .prod-card--banner img { display: none; }
  .prod-card--banner a { justify-self: start; }
}
@media (max-width: 560px) {
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card,
  .prod-card:nth-child(2),
  .prod-card:nth-child(3),
  .prod-card--featured { min-height: 390px; }
  .prod-card--featured .prod-card__copy { top: auto; bottom: 1.05rem; right: 1.1rem; }
  .prod-card--featured .prod-card__bottle { left: 58%; width: 54%; }
}

/* ─── CLEAN PRODUCT CARD (pcc-*) ─────────────────────────────────── */
.pcc-info {
  background: #130f0c;
  padding: 14px 16px 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.pcc-notes {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(196,164,107,.7);
  margin-bottom: 4px;
}
.pcc-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #f5efe8;
  margin-bottom: 8px;
  line-height: 1.1;
}
.pcc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.pcc-foot--locked { justify-content: flex-end; }
.pcc-price {
  font-size: .85rem;
  font-weight: 800;
  color: #f5efe8;
}
.pcc-btn {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border: 1px solid rgba(196,164,107,.35);
  border-radius: 999px;
  color: #C4A46B;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pcc-btn--locked {
  border-color: rgba(196,164,107,.2);
  color: rgba(196,164,107,.45);
}

/* Mobile: stack notes top, name, button full-width at bottom */
@media (max-width: 900px) {
  .pcc-info { padding: 13px 14px 15px; }
  .pcc-foot { justify-content: space-between; }
  .pcc-foot--locked { justify-content: stretch; }
  .pcc-btn { gap: 5px; }
}
@media (max-width: 560px) {
  .pcc-info { padding: 14px 16px 16px; gap: 6px; }
  .pcc-notes { margin-bottom: 0; font-size: .6rem; letter-spacing: .16em; }
  .pcc-name { font-size: 1.25rem; margin-bottom: 0; }
  .pcc-foot { margin-top: 4px; }
  .pcc-foot--locked { justify-content: stretch; }
  .pcc-btn {
    flex: 1;
    justify-content: center;
    height: 36px;
    font-size: .62rem;
    letter-spacing: .13em;
  }
}

/* ─── BOTTOM CTA ─────────────────────────────────────────────────── */
.cta-section { background: #0A0A0A; }
.cta-ticker { overflow: hidden; height: 43px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.05); }
.cta-inner { max-width: var(--max); margin: 0 auto; padding: 3.2rem var(--pad) 3.6rem; text-align: center; }
.cta__eyebrow { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(245,239,232,.74); font-weight: 700; margin-bottom: .65rem; }
.cta__heading { font-family: var(--font-h); font-size: clamp(2.6rem, 4vw, 4.35rem); font-weight: 500; color: var(--text); margin-bottom: .7rem; line-height: 1.05; letter-spacing: 0; }
.cta__sub { font-size: .86rem; color: rgba(245,239,232,.72); max-width: 44ch; margin: 0 auto 1.85rem; line-height: 1.55; }
.cta__btns { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cta__btn { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: .9rem 1.9rem; border-radius: 999px; transition: all .2s; }
.cta__btn--light { border: 1px solid rgba(245,239,232,.65); background: var(--text); color: #0A0A0A; }
.cta__btn--light:hover { background: var(--text); color: #0A0A0A; }
.cta__btn--dim   { border: 1px solid rgba(245,239,232,.18); color: rgba(245,239,232,.45); }
.cta__btn--dim:hover { border-color: rgba(245,239,232,.45); color: var(--text); }

/* ─── FOOTER ──────────────────────────────────────────────────────── */
.site-footer { background: #080808; border-top: 1px solid rgba(196,164,107,.1); padding: 3.5rem var(--pad) 2rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; letter-spacing: .08em; color: var(--gold); margin-bottom: .7rem; }
.footer-desc { font-size: .78rem; color: rgba(255,255,255,.32); line-height: 1.7; max-width: 26ch; }
.footer-col__title { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,.42); margin-bottom: .9rem; }
.footer-col a { display: block; font-size: .78rem; color: rgba(255,255,255,.38); margin-bottom: .55rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max); margin: 2rem auto 0;
  padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: .68rem; color: rgba(255,255,255,.2); }
