/* ============================================================
   DOMAIN.COM - MAIN STYLESHEET
   ============================================================ */

/* 1. CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --gold:          #c9a86c;
  --gold-light:    #e8d5a3;
  --gold-dark:     #a07840;
  --gold-pale:     #f5eedf;
  --cream:         #faf8f5;
  --bone:          #f0ece3;
  --white:         #ffffff;
  --charcoal:      #1a1410;
  --ink:           #0f0d0a;
  --text:          #1a1410;
  --text-soft:     #5c5248;
  --text-muted:    #8a7f70;
  --text-inv:      #faf8f5;
  --bg:            #faf8f5;
  --bg-dark:       #0f0d0a;
  --bg-dark2:      #1a1410;
  --bg-card:       #ffffff;
  --bg-subtle:     #f0ece3;
  --border:        #e8e3da;
  --border-dark:   #2a2318;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', -apple-system, sans-serif;

  --xs:   0.75rem;
  --sm:   0.875rem;
  --base: 1rem;
  --lg:   1.125rem;
  --xl:   1.25rem;
  --2xl:  1.5rem;
  --3xl:  1.875rem;
  --4xl:  2.25rem;
  --5xl:  3rem;
  --6xl:  3.75rem;
  --7xl:  4.5rem;
  --8xl:  6rem;
  --9xl:  8rem;

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(26,20,16,.08), 0 1px 2px rgba(26,20,16,.05);
  --shadow-md: 0 4px 16px rgba(26,20,16,.10);
  --shadow-lg: 0 10px 40px rgba(26,20,16,.13);
  --shadow-xl: 0 20px 60px rgba(26,20,16,.16);
  --shadow-gold: 0 8px 30px rgba(201,168,108,.30);

  --ease:    0.3s ease;
  --ease-lg: 0.6s ease;
  --ease-lux: 0.8s cubic-bezier(0.16,1,0.3,1);

  --max-w:    1440px;
  --content-w: 1200px;
  --narrow-w:  820px;
  --header-h:  80px;
  --gutter:    24px;
}

/* 2. RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: var(--base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* 3. LAYOUT
============================================================ */
.container {
  width: 100%;
  max-width: var(--content-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide  { max-width: var(--max-w); }
.container--narrow{ max-width: var(--narrow-w); }

.section {
  padding-block: 6rem;
}
.section--lg {
  padding-block: 8rem;
}
.section--sm {
  padding-block: 4rem;
}
.section--dark {
  background: var(--bg-dark);
  color: var(--text-inv);
}
.section--dark2 {
  background: var(--bg-dark2);
  color: var(--text-inv);
}
.section--subtle {
  background: var(--bg-subtle);
}
.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section__title {
  font-size: clamp(var(--3xl), 5vw, var(--5xl));
  font-weight: 500;
}
.section__subtitle {
  margin-top: 1rem;
  font-size: var(--lg);
  color: var(--text-soft);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
}
.section--dark .section__subtitle { color: rgba(250,248,245,.65); }
.section--dark .section__title    { color: var(--text-inv); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* 4. TYPOGRAPHY
============================================================ */
.display-1  { font-size: clamp(var(--6xl), 10vw, var(--9xl)); font-family: var(--font-display); font-weight: 400; line-height: 1.0; }
.display-2  { font-size: clamp(var(--5xl), 7vw, var(--8xl)); font-family: var(--font-display); font-weight: 400; line-height: 1.05; }
.heading-1  { font-size: clamp(var(--4xl), 5vw, var(--7xl)); }
.heading-2  { font-size: clamp(var(--3xl), 4vw, var(--6xl)); }
.heading-3  { font-size: clamp(var(--2xl), 3vw, var(--5xl)); }
.heading-4  { font-size: clamp(var(--xl), 2.5vw, var(--4xl)); }
.heading-5  { font-size: clamp(var(--lg), 2vw, var(--3xl)); }
.body-lg    { font-size: var(--lg); line-height: 1.75; }
.body-sm    { font-size: var(--sm); }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.italic { font-style: italic; }
em { font-style: italic; }

/* 5. HEADER & NAVIGATION
============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  z-index: 200;
  transition: background var(--ease), box-shadow var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(250,248,245,0.96);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.header.header--dark.scrolled {
  background: rgba(15,13,10,0.96);
  border-bottom-color: var(--border-dark);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav--right {
  justify-content: flex-end;
  gap: 0.75rem;
}
.header__nav-link {
  font-size: var(--sm);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--ease);
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.header__nav-link:hover::after,
.header__nav-link.active::after { width: 100%; }
.header__nav-link:hover { color: var(--gold-dark); }

/* Transparent header variant (over dark hero) */
.header--hero .header__nav-link,
.header--hero .header__logo-text { color: var(--text-inv); }
.header--hero .header__nav-link::after { background: var(--gold-light); }
.header--hero .header__icon { color: var(--text-inv); }
.header--hero .header__nav-link:hover { color: var(--gold-light); }
.header--hero .header__icon:hover { background: rgba(255,255,255,0.10); color: var(--white); }
.header--hero .header__logo-text:hover { color: var(--white); }

.header__logo {
  text-align: center;
  display: flex;
  justify-content: center;
}
.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
  transition: color var(--ease);
}
.header__logo-dot { color: var(--gold); }

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  color: var(--text);
  transition: background var(--ease), color var(--ease);
  position: relative;
}
.header__icon:hover { background: var(--bg-subtle); color: var(--gold-dark); }
.header__icon svg { width: 20px; height: 20px; }

.header__cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0);
  transition: opacity var(--ease), transform var(--ease-lg) cubic-bezier(0.34,1.56,0.64,1);
}
.header__cart-badge.visible { opacity: 1; transform: scale(1); }

.header__hamburger { display: none; }

/* 6. MOBILE MENU
============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  pointer-events: none;
}
.mobile-menu__overlay {
  position: absolute; inset: 0;
  background: rgba(15,13,10,0.55);
  opacity: 0;
  transition: opacity var(--ease-lg);
}
.mobile-menu__panel {
  position: relative;
  width: min(360px, 90vw);
  height: 100%;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform var(--ease-lux);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}
.mobile-menu.open { pointer-events: all; }
.mobile-menu.open .mobile-menu__overlay { opacity: 1; }
.mobile-menu.open .mobile-menu__panel   { transform: translateX(0); }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.mobile-menu__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mobile-menu__close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0; flex: 1; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: var(--3xl);
  font-weight: 400;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu__link:hover { color: var(--gold-dark); }
.mobile-menu__sub {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu__sub a {
  font-size: var(--sm);
  color: var(--text-soft);
  letter-spacing: 0.04em;
  transition: color var(--ease);
}
.mobile-menu__sub a:hover { color: var(--gold-dark); }
.mobile-menu__footer {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.mobile-menu__social-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--ease), background var(--ease);
}
.mobile-menu__social-icon:hover { border-color: var(--gold); background: var(--gold-pale); }

/* 7. SEARCH OVERLAY
============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-lg);
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-overlay__close {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  transition: border-color var(--ease), background var(--ease);
}
.search-overlay__close:hover { border-color: var(--gold); background: var(--gold-pale); }
.search-overlay__inner { width: 100%; max-width: 680px; padding-inline: var(--gutter); }
.search-overlay__label {
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.search-overlay__input {
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(var(--3xl), 5vw, var(--5xl));
  font-weight: 400;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--gold);
  outline: none;
  padding-bottom: 0.5rem;
  line-height: 1.2;
}
.search-overlay__input::placeholder { color: var(--text-muted); }
.search-overlay__hint { margin-top: 1rem; font-size: var(--sm); color: var(--text-muted); }

/* 8. CART DRAWER
============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 350;
  pointer-events: none;
}
.cart-overlay.open { pointer-events: all; }
.cart-overlay__bg {
  position: absolute; inset: 0;
  background: rgba(15,13,10,.45);
  opacity: 0;
  transition: opacity var(--ease-lg);
}
.cart-overlay.open .cart-overlay__bg { opacity: 1; }

.cart-drawer {
  position: absolute;
  top: 0; right: 0;
  width: min(440px, 100vw);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform var(--ease-lux);
  display: flex;
  flex-direction: column;
}
.cart-overlay.open .cart-drawer { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__title { font-family: var(--font-display); font-size: var(--2xl); font-weight: 500; }
.cart-drawer__close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--r-full); transition: background var(--ease); }
.cart-drawer__close:hover { background: var(--bg-subtle); }

.cart-drawer__body { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
.cart-drawer__empty { text-align: center; padding-block: 4rem; }
.cart-drawer__empty svg { margin-inline: auto; margin-bottom: 1rem; opacity: 0.3; }
.cart-drawer__empty h3 { font-size: var(--xl); margin-bottom: 0.5rem; }
.cart-drawer__empty p { color: var(--text-muted); font-size: var(--sm); }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.cart-item__img {
  width: 80px; height: 100px;
  object-fit: cover;
  border-radius: var(--r-md);
  background: var(--bg-subtle);
}
.cart-item__name { font-size: var(--sm); font-weight: 500; margin-bottom: 0.25rem; }
.cart-item__meta { font-size: var(--xs); color: var(--text-muted); }
.cart-item__qty {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 0.75rem;
}
.cart-item__qty button {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--sm);
  transition: border-color var(--ease), background var(--ease);
}
.cart-item__qty button:hover { border-color: var(--gold); background: var(--gold-pale); }
.cart-item__qty span { font-size: var(--sm); min-width: 20px; text-align: center; }
.cart-item__price { font-size: var(--sm); font-weight: 600; }
.cart-item__remove { font-size: var(--xs); color: var(--text-muted); margin-top: 0.25rem; cursor: pointer; }
.cart-item__remove:hover { color: #c0392b; }

.cart-drawer__footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}
.cart-drawer__subtotal {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
}
.cart-drawer__subtotal span:first-child { font-size: var(--sm); color: var(--text-muted); }
.cart-drawer__subtotal span:last-child { font-size: var(--xl); font-weight: 600; font-family: var(--font-display); }

/* 9. BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--r-full);
  font-size: var(--sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
}
.btn--sm  { padding: 0.625rem 1.5rem; font-size: var(--xs); }
.btn--lg  { padding: 1rem 2.5rem; font-size: var(--base); }
.btn--xl  { padding: 1.125rem 3rem; font-size: var(--lg); }
.btn--block { width: 100%; }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--charcoal);
  color: var(--text-inv);
  border-color: var(--charcoal);
}
.btn--dark:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn--outline:hover {
  background: var(--text);
  color: var(--text-inv);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--text-inv);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

.btn--ghost-dark {
  background: rgba(15,13,10,0.1);
  color: var(--text);
  border-color: rgba(15,13,10,0.25);
}
.btn--ghost-dark:hover {
  background: rgba(15,13,10,0.15);
  border-color: rgba(15,13,10,0.4);
}

/* 10. HERO
============================================================ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 10s ease-out;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 30%),
    linear-gradient(160deg, rgba(15,13,10,0.65) 0%, rgba(15,13,10,0.35) 55%, rgba(15,13,10,0.65) 100%);
}
.hero.loaded .hero__bg img { transform: scale(1); }

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-inv);
  padding-inline: var(--gutter);
  max-width: 900px;
}
.hero__eyebrow {
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-inv);
  margin-bottom: 1.25rem;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.hero__title .line-inner.italic { font-style: italic; color: var(--gold-light); }
.hero__subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(250,248,245,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 460px;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}
.hero.animated .hero__eyebrow,
.hero.animated .hero__subtitle,
.hero.animated .hero__actions {
  opacity: 1;
  transform: translateY(0);
}
.hero.animated .hero__title .line-inner {
  opacity: 1;
  transform: translateY(0);
}
.hero__title .line-inner:nth-child(1) { transition-delay: 0.1s; }
.hero__title .line:nth-child(2) .line-inner { transition-delay: 0.25s; }
.hero__title .line:nth-child(3) .line-inner { transition-delay: 0.4s; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250,248,245,0.6);
  font-size: var(--xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: heroScrollPulse 2.5s ease-in-out infinite;
}
.hero__scroll svg { width: 18px; }
@keyframes heroScrollPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* Page hero (for inner pages) */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
}
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 28%),
    linear-gradient(to top, rgba(15,13,10,0.85) 0%, rgba(15,13,10,0.2) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3rem var(--gutter);
  max-width: var(--content-w);
  margin-inline: auto;
}
.page-hero__eyebrow { color: var(--gold-light); margin-bottom: 0.5rem; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--4xl), 6vw, var(--7xl));
  font-weight: 400;
  color: var(--text-inv);
}

/* 11. TRUST BAR
============================================================ */
.trust-bar {
  background: var(--bg-dark2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.trust-bar__inner {
  display: flex;
  align-items: stretch;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.trust-bar__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--border-dark);
  color: var(--text-inv);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  color: var(--gold);
}
.trust-bar__label { font-size: var(--xs); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(250,248,245,.5); }
.trust-bar__text  { font-size: var(--sm); color: var(--text-inv); margin-top: 0.1rem; }

/* 12. PRODUCT CARDS
============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.products-grid--3 { grid-template-columns: repeat(3,1fr); }
.products-grid--5 { grid-template-columns: repeat(5,1fr); gap: 1.25rem; }

.product-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
  cursor: pointer;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-subtle);
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.product-card:hover .product-card__img { transform: scale(1.06); }

.product-card__badges {
  position: absolute;
  top: 0.875rem; left: 0.875rem;
  display: flex; flex-direction: column; gap: 0.375rem;
  z-index: 1;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.625rem;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge--new       { background: var(--gold); color: var(--white); }
.badge--sale      { background: #c0392b; color: var(--white); }
.badge--best      { background: var(--charcoal); color: var(--gold-light); }
.badge--limited   { background: var(--bg-dark); color: var(--gold); border: 1px solid var(--gold); }

.product-card__quick {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease);
  z-index: 2;
}
.product-card:hover .product-card__quick { opacity: 1; transform: translateY(0); }
.product-card__wishlist {
  position: absolute;
  top: 0.875rem; right: 0.875rem;
  width: 34px; height: 34px;
  border-radius: var(--r-full);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--ease), transform var(--ease), color var(--ease);
  z-index: 3;
  color: var(--text-muted);
}
.product-card:hover .product-card__wishlist { opacity: 1; transform: scale(1); }
.product-card__wishlist:hover { color: #c0392b; }
.product-card__wishlist.active { color: #c0392b; opacity: 1; transform: scale(1); }

.product-card__info { padding: 1rem 1rem 1.25rem; }
.product-card__family {
  font-size: var(--xs);
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: var(--xl);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  transition: color var(--ease);
}
.product-card:hover .product-card__name { color: var(--gold-dark); }
.product-card__lineage {
  font-size: var(--xs);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  opacity: 0.75;
}
.product-card__lineage::before {
  content: '* ';
  color: var(--gold);
  font-style: normal;
  opacity: 0.7;
  font-size: 0.6rem;
}
.product-card__rating {
  display: flex; align-items: center; gap: 0.375rem;
  margin-bottom: 0.625rem;
}
.stars { display: flex; gap: 2px; color: var(--gold); }
.stars svg { width: 12px; height: 12px; fill: currentColor; }
.stars svg.half { opacity: 0.45; }
.rating-count { font-size: var(--xs); color: var(--text-muted); }
.product-card__price { display: flex; align-items: baseline; gap: 0.5rem; }
.price-current { font-size: var(--xl); font-weight: 600; font-family: var(--font-display); }
.price-original { font-size: var(--sm); color: var(--text-muted); text-decoration: line-through; }
.price-discount { font-size: var(--xs); font-weight: 600; color: #c0392b; background: #fdecea; padding: 0.15rem 0.4rem; border-radius: 4px; }
.product-card__size { font-size: var(--xs); color: var(--text-muted); margin-top: 0.25rem; }

/* 13. COLLECTION CARDS
============================================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}
.collections-grid--3 { grid-template-columns: repeat(3,1fr); }

.collection-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}
.collection-card--tall { aspect-ratio: 3/4; }
.collection-card__bg {
  position: absolute; inset: 0;
}
.collection-card__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.collection-card:hover .collection-card__bg img { transform: scale(1.06); }
.collection-card__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,13,10,0.78) 0%, rgba(15,13,10,0.10) 60%);
  transition: background var(--ease-lg);
}
.collection-card:hover .collection-card__bg::after {
  background: linear-gradient(to top, rgba(15,13,10,0.88) 0%, rgba(15,13,10,0.20) 60%);
}
.collection-card__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
  z-index: 1;
}
.collection-card__label { font-size: var(--xs); color: var(--gold-light); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.375rem; }
.collection-card__title {
  font-family: var(--font-display);
  font-size: clamp(var(--2xl), 3.5vw, var(--4xl));
  font-weight: 400;
  color: var(--text-inv);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.collection-card__desc { font-size: var(--sm); color: rgba(250,248,245,.7); line-height: 1.55; max-width: 280px; margin-bottom: 1.25rem; }
.collection-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  transform: translateX(0);
  transition: transform var(--ease), color var(--ease);
}
.collection-card__cta svg { width: 16px; transition: transform var(--ease); }
.collection-card:hover .collection-card__cta { color: var(--gold); }
.collection-card:hover .collection-card__cta svg { transform: translateX(4px); }

/* 14. FEATURED COLLECTIONS LAYOUT (HOME)
============================================================ */
.collections-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.collection-card__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}
.collection-card__brand-chip {
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  color: rgba(250,248,245,0.6);
  border: 1px solid rgba(250,248,245,0.18);
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

/* 15. SCENT STORY SECTION
============================================================ */
.scent-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.scent-story__visual {
  position: relative;
  overflow: hidden;
}
.scent-story__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 10s ease-out;
}
.scent-story:hover .scent-story__visual img { transform: scale(1.04); }
.scent-story__text {
  background: var(--bg-dark);
  color: var(--text-inv);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}
.scent-story__quote {
  font-family: var(--font-display);
  font-size: clamp(var(--3xl), 3.5vw, var(--5xl));
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--gold-light);
  margin-bottom: 2rem;
}
.scent-story__body {
  font-size: var(--base);
  color: rgba(250,248,245,.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.scent-story__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
}
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(var(--3xl), 4vw, var(--5xl));
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat__label { font-size: var(--xs); letter-spacing: 0.10em; text-transform: uppercase; color: rgba(250,248,245,.5); }

/* 16. TESTIMONIALS
============================================================ */
.testimonials { background: var(--bg-subtle); }
.testimonials-swiper { overflow: hidden; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  height: auto;
}
.testimonial-card__stars { margin-bottom: 1.25rem; }
.testimonial-card__text {
  font-family: var(--font-display);
  font-size: var(--xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.testimonial-card__author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  object-fit: cover;
  background: var(--bg-subtle);
}
.testimonial-card__name { font-size: var(--sm); font-weight: 600; }
.testimonial-card__meta { font-size: var(--xs); color: var(--text-muted); }

/* Swiper navigation */
.swiper-btn {
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: all var(--ease);
  flex-shrink: 0;
}
.swiper-btn:hover { border-color: var(--gold); background: var(--gold-pale); color: var(--gold-dark); }
.swiper-btns { display: flex; gap: 0.75rem; justify-content: center; margin-top: 2rem; }

/* 17. NEWSLETTER
============================================================ */
.newsletter {
  background: var(--bg-dark);
  color: var(--text-inv);
  text-align: center;
  padding-block: 6rem;
}
.newsletter__title { font-size: clamp(var(--3xl), 5vw, var(--5xl)); font-family: var(--font-display); margin-bottom: 0.75rem; }
.newsletter__sub { color: rgba(250,248,245,.65); font-size: var(--lg); margin-bottom: 2.5rem; }
.newsletter__form {
  display: flex;
  max-width: 500px;
  margin-inline: auto;
  gap: 0;
  border: 1.5px solid rgba(201,168,108,0.5);
  border-radius: var(--r-full);
  padding: 0.375rem;
  transition: border-color var(--ease);
}
.newsletter__form:focus-within { border-color: var(--gold); }
.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.5rem 1.25rem;
  color: var(--text-inv);
  font-size: var(--sm);
}
.newsletter__input::placeholder { color: rgba(250,248,245,.4); }

/* 18. FOOTER
============================================================ */
.footer {
  background: var(--ink);
  color: var(--text-inv);
  padding-top: 5rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--border-dark);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__brand {}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: inline-block;
}
.footer__logo span { color: var(--gold); }
.footer__tagline { font-size: var(--sm); color: rgba(250,248,245,.5); line-height: 1.75; max-width: 280px; margin-bottom: 1.5rem; }
.footer__socials { display: flex; gap: 0.75rem; }
.footer__social {
  width: 38px; height: 38px;
  border: 1px solid var(--border-dark);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,248,245,.55);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.footer__social:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,108,.1); }
.footer__social svg { width: 16px; height: 16px; }

.footer__col-title {
  font-size: var(--xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,248,245,.4);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a {
  font-size: var(--sm);
  color: rgba(250,248,245,.65);
  transition: color var(--ease);
  line-height: 1.4;
}
.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
}
.footer__copy { font-size: var(--xs); color: rgba(250,248,245,.35); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: var(--xs); color: rgba(250,248,245,.35); transition: color var(--ease); }
.footer__legal a:hover { color: var(--gold); }

/* 19. SHOP PAGE
============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding-top: 2rem;
  padding-bottom: 6rem;
}
.filters {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  height: fit-content;
}
.filters__title {
  font-size: var(--xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filters__reset { font-size: var(--xs); color: var(--gold-dark); font-weight: 400; text-transform: none; letter-spacing: 0; cursor: pointer; }
.filters__reset:hover { text-decoration: underline; }

.filter-group { margin-bottom: 2rem; border-bottom: 1px solid var(--border); padding-bottom: 2rem; }
.filter-group:last-child { border-bottom: none; }
.filter-group__title {
  font-size: var(--sm);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.filter-group__title svg { width: 16px; transition: transform var(--ease); }
.filter-group.closed .filter-group__title svg { transform: rotate(-90deg); }
.filter-group__body { display: flex; flex-direction: column; gap: 0.625rem; }
.filter-group.closed .filter-group__body { display: none; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  user-select: none;
}
.filter-option input[type="checkbox"] {
  width: 16px; height: 16px;
  border: 1.5px solid var(--border-medium);
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
  flex-shrink: 0;
  position: relative;
}
.filter-option input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.filter-option input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 4px; height: 8px;
  border: 2px solid white;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.filter-option__label { font-size: var(--sm); color: var(--text); }
.filter-option__count { font-size: var(--xs); color: var(--text-muted); margin-left: auto; }

.price-range { padding: 0.5rem 0; }
.price-range input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  margin-bottom: 0.5rem;
}
.price-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
}
.price-range__vals { display: flex; justify-content: space-between; font-size: var(--xs); color: var(--text-muted); }

.shop-main {}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.shop-toolbar__count { font-size: var(--sm); color: var(--text-muted); }
.shop-toolbar__right { display: flex; align-items: center; gap: 1rem; }
.shop-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--sm);
}
.shop-sort select {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  background: var(--white);
  color: var(--text);
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a7f70' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  outline: none;
}
.view-toggle { display: flex; gap: 0.25rem; }
.view-toggle button {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--ease);
}
.view-toggle button.active { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }

.shop-products {}
.shop-products.list-view .products-grid { grid-template-columns: 1fr; }
.shop-products.list-view .product-card {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  border-radius: var(--r-lg);
}
.shop-products.list-view .product-card__img-wrap { aspect-ratio: 1; height: 200px; border-radius: var(--r-lg) 0 0 var(--r-lg); }
.shop-products.list-view .product-card__quick { position: static; opacity: 1; transform: none; }

/* Filter drawer (mobile) */
.filter-drawer-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--sm);
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  transition: border-color var(--ease), background var(--ease);
}
.filter-drawer-toggle:hover { border-color: var(--gold); background: var(--gold-pale); }
.filter-drawer-toggle svg { width: 16px; }

.filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 350;
  pointer-events: none;
}
.filter-drawer.open { pointer-events: all; }
.filter-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(15,13,10,.45);
  opacity: 0;
  transition: opacity var(--ease-lg);
}
.filter-drawer.open .filter-drawer__overlay { opacity: 1; }
.filter-drawer__panel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform var(--ease-lux);
  padding: 1.5rem var(--gutter) 3rem;
}
.filter-drawer.open .filter-drawer__panel { transform: translateY(0); }
.filter-drawer__handle {
  width: 40px; height: 4px;
  background: var(--border);
  border-radius: var(--r-full);
  margin-inline: auto; margin-bottom: 1.5rem;
}
.filter-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.filter-drawer__header h3 { font-size: var(--xl); }

/* 20. PRODUCT DETAIL PAGE
============================================================ */
.product-layout {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 5rem;
  padding-block: 5rem;
}
.product-gallery { position: sticky; top: calc(var(--header-h) + 2rem); height: fit-content; }
.product-gallery__main {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-subtle);
  margin-bottom: 1rem;
  cursor: zoom-in;
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-gallery__main:hover img { transform: scale(1.04); }
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 0.625rem;
}
.product-gallery__thumb {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--ease);
}
.product-gallery__thumb.active { border-color: var(--gold); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info {}
.product-info__eyebrow { margin-bottom: 0.5rem; }
.product-info__name {
  font-family: var(--font-display);
  font-size: clamp(var(--4xl), 4vw, var(--6xl));
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.product-lineage {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding: 0.55rem 1rem 0.55rem 0.9rem;
  background: linear-gradient(90deg, rgba(var(--gold-rgb, 184,148,86), 0.08) 0%, transparent 100%);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: var(--sm);
  color: var(--text-soft);
  letter-spacing: 0.03em;
  font-style: italic;
}
.product-lineage__icon {
  color: var(--gold);
  font-style: normal;
  font-size: 0.75rem;
  flex-shrink: 0;
  opacity: 0.85;
}
.product-lineage__text { line-height: 1.4; }

.product-info__rating { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.product-info__review-link { font-size: var(--sm); color: var(--text-muted); text-decoration: underline; cursor: pointer; }
.product-info__price-row { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 0.75rem; }
.product-info__price { font-family: var(--font-display); font-size: var(--4xl); font-weight: 500; }
.product-info__old-price { font-size: var(--xl); color: var(--text-muted); text-decoration: line-through; }
.product-info__savings { font-size: var(--sm); color: #c0392b; font-weight: 600; }
.product-info__short-desc { font-size: var(--base); color: var(--text-soft); line-height: 1.75; margin-bottom: 2rem; }

.size-selector { margin-bottom: 1.75rem; }
.size-selector__label { font-size: var(--sm); font-weight: 600; margin-bottom: 0.75rem; }
.size-options { display: flex; gap: 0.5rem; }
.size-option {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--sm);
  cursor: pointer;
  transition: all var(--ease);
}
.size-option:hover { border-color: var(--gold); }
.size-option.active { border-color: var(--charcoal); background: var(--charcoal); color: var(--text-inv); }
.size-option:disabled { opacity: 0.4; cursor: not-allowed; }

.qty-add { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; }
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.qty-control button {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--xl);
  transition: background var(--ease);
}
.qty-control button:hover { background: var(--bg-subtle); }
.qty-control span { min-width: 40px; text-align: center; font-size: var(--base); font-weight: 500; }

.product-features {
  display: flex; gap: 0.875rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-size: var(--xs);
  color: var(--text-soft);
}
.product-feature svg { width: 16px; color: var(--gold); }

.product-tabs { margin-top: 3rem; border-top: 1px solid var(--border); }
.tab-list { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.tab-btn {
  padding: 1rem 0;
  margin-right: 2rem;
  font-size: var(--sm);
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--ease), border-color var(--ease);
}
.tab-btn.active { color: var(--text); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.scent-notes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.scent-note { text-align: center; padding: 1.5rem; background: var(--bg-subtle); border-radius: var(--r-lg); }
.scent-note__tier { font-size: var(--xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem; }
.scent-note__notes { font-size: var(--sm); color: var(--text); line-height: 1.6; }

/* 21. ABOUT PAGE
============================================================ */
.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(90vh - var(--header-h));
  margin-top: var(--header-h);
}
.about-hero-visual {
  position: relative;
  overflow: hidden;
}
.about-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  background: var(--bg-dark);
  color: var(--text-inv);
}
.about-hero-text .eyebrow { margin-bottom: 1rem; }
.about-hero-text h1 {
  font-size: clamp(var(--4xl), 5vw, var(--7xl));
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.about-hero-text p { font-size: var(--lg); color: rgba(250,248,245,.7); line-height: 1.8; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.value-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  transition: box-shadow var(--ease), transform var(--ease);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-card__icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-dark);
}
.value-card__title { font-size: var(--xl); font-family: var(--font-display); margin-bottom: 0.75rem; }
.value-card__text { font-size: var(--sm); color: var(--text-soft); line-height: 1.75; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}
.team-card { text-align: center; }
.team-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-xl);
  margin-bottom: 1.25rem;
  filter: grayscale(20%);
  transition: filter var(--ease);
}
.team-card:hover .team-card__img { filter: grayscale(0); }
.team-card__name { font-family: var(--font-display); font-size: var(--xl); margin-bottom: 0.25rem; }
.team-card__role { font-size: var(--sm); color: var(--text-muted); }

/* 22. CONTACT PAGE
============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding-block: 6rem;
}
.contact-info__title { font-size: clamp(var(--3xl), 4vw, var(--5xl)); margin-bottom: 1.25rem; }
.contact-info__sub { font-size: var(--lg); color: var(--text-soft); line-height: 1.75; margin-bottom: 3rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-method__icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.contact-method__label { font-size: var(--xs); font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-method__value { font-size: var(--base); font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: var(--sm); font-weight: 500; color: var(--text); }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  font-size: var(--sm);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,108,0.15);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* 23. QUIZ PAGE
============================================================ */
.quiz-wrap {
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--gutter);
}
.quiz-progress {
  width: 100%;
  max-width: 600px;
  margin-bottom: 3rem;
}
.quiz-progress__bar-wrap {
  height: 3px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.quiz-progress__bar {
  height: 100%;
  background: var(--gold);
  border-radius: var(--r-full);
  transition: width 0.5s ease;
}
.quiz-progress__meta { display: flex; justify-content: space-between; font-size: var(--xs); color: var(--text-muted); }

.quiz-step { display: none; width: 100%; max-width: 800px; text-align: center; }
.quiz-step.active { display: block; animation: quizFadeIn 0.5s ease; }
@keyframes quizFadeIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.quiz-step__title { font-size: clamp(var(--3xl), 4vw, var(--5xl)); margin-bottom: 1.25rem; }
.quiz-step__sub { font-size: var(--lg); color: var(--text-soft); margin-bottom: 3rem; }

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.quiz-options--3 { grid-template-columns: repeat(3,1fr); }
.quiz-option {
  padding: 1.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  cursor: pointer;
  transition: all var(--ease);
  text-align: center;
}
.quiz-option:hover { border-color: var(--gold-dark); box-shadow: var(--shadow-sm); }
.quiz-option.selected { border-color: var(--gold); background: var(--gold-pale); }
.quiz-option__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.quiz-option__label { font-size: var(--base); font-weight: 500; margin-bottom: 0.25rem; }
.quiz-option__desc { font-size: var(--xs); color: var(--text-muted); }
.quiz-nav { display: flex; justify-content: center; gap: 1rem; align-items: center; }
.quiz-back { font-size: var(--sm); color: var(--text-muted); cursor: pointer; text-decoration: underline; }

.quiz-result { display: none; max-width: 900px; text-align: center; }
.quiz-result.active { display: block; animation: quizFadeIn 0.6s ease; }
.quiz-result__title { font-size: clamp(var(--3xl), 5vw, var(--6xl)); margin-bottom: 1rem; }
.quiz-result__sub { font-size: var(--lg); color: var(--text-soft); margin-bottom: 3rem; max-width: 500px; margin-inline: auto; }

/* 24. SCENT FAMILIES BAND
============================================================ */
.scent-families {
  padding-block: 2rem;
  background: var(--bg-dark2);
  overflow: hidden;
}
.scent-families__inner {
  display: flex;
  gap: 0;
}
.scent-family-pill {
  flex-shrink: 0;
  padding: 0.875rem 2rem;
  border-right: 1px solid var(--border-dark);
  cursor: pointer;
  transition: background var(--ease);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.scent-family-pill:last-child { border-right: none; }
.scent-family-pill:hover { background: rgba(201,168,108,.08); }
.scent-family-pill.active { background: rgba(201,168,108,.12); }
.scent-family-pill__dot { width: 10px; height: 10px; border-radius: var(--r-full); flex-shrink: 0; }
.scent-family-pill__label { font-size: var(--sm); color: rgba(250,248,245,.75); white-space: nowrap; }
.scent-family-pill.active .scent-family-pill__label { color: var(--gold-light); }

/* 25. UTILITY CLASSES
============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-gold   { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-muted  { color: var(--text-muted); }
.text-inv    { color: var(--text-inv); }
.font-display { font-family: var(--font-display); }
.font-italic { font-style: italic; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col    { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.gap-lg { gap: 2rem; }
.mt-auto { margin-top: auto; }
.mb-0    { margin-bottom: 0; }
.hidden  { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.divider { height: 1px; background: var(--border); border: none; margin-block: 2rem; }
.divider--dark { background: var(--border-dark); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.w-full   { width: 100%; }

/* 26. LOADING & TOAST
============================================================ */
.page-loader {
  position: fixed; inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.page-loader__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 600;
  background: var(--charcoal);
  color: var(--text-inv);
  padding: 1rem 1.5rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: var(--sm);
  max-width: 320px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast__icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.toast__close { margin-left: auto; color: rgba(250,248,245,.45); width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* 27. ANIMATIONS
============================================================ */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* 28. RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
  .footer__grid > *:last-child { grid-column: 1 / -1; }
  .products-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 1024px) {
  :root { --header-h: 70px; }
  .header__nav--left  { display: none; }
  .header__hamburger  { display: flex; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { display: none; position: static; }
  .filter-drawer-toggle { display: flex; }
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .collections-feature { grid-template-columns: 1fr 1fr; }
  .collections-feature .collection-card:first-child { grid-row: auto; }
  .scent-story { grid-template-columns: 1fr; }
  .scent-story__text { padding: 4rem 2.5rem; }
  .product-layout { grid-template-columns: 1fr; gap: 3rem; }
  .product-gallery { position: static; }
  .about-hero-split { grid-template-columns: 1fr; min-height: auto; }
  .about-hero-visual { height: 50vw; min-height: 300px; }
  .about-hero-text { padding: 3.5rem 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --gutter: 16px; }
  .section { padding-block: 4rem; }
  .section--lg { padding-block: 5rem; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .collections-grid { grid-template-columns: 1fr; }
  .collections-feature { grid-template-columns: 1fr; }
  .trust-bar__inner { flex-direction: column; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .trust-bar__item:last-child { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > *:first-child { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero__actions { flex-direction: column; align-items: center; }
  .scent-story__stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .quiz-options { grid-template-columns: 1fr 1fr; }
  .quiz-options--3 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .scent-notes { grid-template-columns: 1fr; }
  .product-gallery__thumbs { grid-template-columns: repeat(4,1fr); }
  .shop-toolbar { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .product-card__info { padding: 0.75rem; }
  .product-card__name { font-size: var(--base); }
  .footer__grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .qty-add { flex-direction: column; align-items: stretch; }
  .newsletter__form { flex-direction: column; border-radius: var(--r-lg); padding: 1rem; gap: 0.75rem; }
  .page-hero { height: 40vh; min-height: 280px; }
  .scent-story__stats { grid-template-columns: 1fr; }
  .quiz-options { grid-template-columns: 1fr; }
  .toast { right: 1rem; left: 1rem; max-width: none; bottom: 1rem; }
}

/* Smooth scrolling when header is present */
html { scroll-padding-top: var(--header-h); }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Selection color */
::selection {
  background: var(--gold-pale);
  color: var(--gold-dark);
}
