/* ─────────────────────────────────────────────────────────────
   THE RAC STORE  ·  Editorial Luxury Design System
   Inspired by Garoa Carter — adapted for Black & Gold branding
───────────────────────────────────────────────────────────── */

/* ─── Custom Fonts ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Cormorant+Garamond:wght@300;400&family=Inter:wght@300;400;500;600&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Great+Vibes&family=Pinyon+Script&family=Corinthia&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;0,6..96,900;1,6..96,400&display=swap');

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --black:    #000000;
  --content:  #0c0b09;
  --card:     #141210;
  --border:   rgba(184,134,11,0.15);
  --gold:     #B8860B;
  --gold-lt:  #D4A017;
  --gold-dim: rgba(184,134,11,0.5);
  --white:    #ffffff;
  --cream:    #f0ece8;
  --gray:     #7a7a7a;
  --gray-lt:  #b8b8b8;

  /* ── Light theme ── */
  --bg-page:    #f8f5f0;
  --bg-section: #ffffff;
  --text-dark:  #1a1510;
  --text-mid:   #6b6560;
  --border-lt:  #e4dfd8;
  --card-lt:    #ffffff;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', 'Helvetica Neue', sans-serif;
  --mono:   'Space Mono', 'Courier New', monospace;
  --script: 'Great Vibes', cursive;

  --ease-out: cubic-bezier(0.165, 0.84, 0.44, 1);
  --dur: 0.7s;
  --radius: 1em;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: hidden; scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  background-color: var(--bg-page);
  font-family: var(--sans);
  font-size: 1vw;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── Typography Scale ───────────────────────────────────────── */
.heading-xl  { font-family: var(--serif); font-size: 7em;   line-height: 1;   font-weight: 400; }
.heading-lg  { font-family: var(--serif); font-size: 5em;   line-height: 1;   font-weight: 400; }
.heading-md  { font-family: var(--serif); font-size: 3.5em; line-height: 1.1; font-weight: 400; }
.heading-sm  { font-family: var(--serif); font-size: 2.5em; line-height: 1.1; font-weight: 400; }
.heading-xsm { font-family: var(--serif); font-size: 1.5em; line-height: 1.2; font-weight: 400; }
.label       { font-family: var(--mono);  font-size: 0.75em; letter-spacing: 0.1em; text-transform: uppercase; }
.body-text   { font-family: var(--sans);  font-size: 0.9em; line-height: 1.6; color: var(--gray-lt); }
.italics     { font-style: italic; }
.gold        { color: var(--gold); }

/* ─── Box — the rounded scrollable content panel ────────────── */
.box {
  position: relative;
  background-color: var(--bg-section);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: visible;
  min-height: 100vh;
}

/* ─── Container ─────────────────────────────────────────────── */
.container {
  width: 95%;
  margin: 0 auto;
}

/* ─── Utility Bar (top strip) ───────────────────────────────── */
/* ─── Navigation — Sephora style ────────────────────────────── */
.nav {
  position: relative;
  z-index: 100;
  height: 5em;
  padding: 0 2.5%;
  display: flex;
  align-items: center;
  gap: 0;
  background: #000;
  border-bottom: 1px solid var(--border);
}
.nav.scrolled { background: rgba(0,0,0,0.99); }
.nav-menu-btn { display: none; }

/* Logo */
.nav-logo {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.8em;
  letter-spacing: 0.06em;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 2em;
  text-decoration: none;
  color: var(--white);
}
.nav-logo sup {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--gold);
  font-family: var(--mono);
}

/* Search bar — fixed width, not full */
.nav-search-wrap {
  position: relative;
  width: clamp(160px, 26vw, 380px);
  flex-shrink: 0;
  margin-right: 1.5em;
}

/* ─── Live search dropdown ────────────────────────────────── */
.search-live-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0.7em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 9999;
  overflow: hidden;
}
.search-live-item {
  display: flex;
  align-items: center;
  gap: 0.9em;
  padding: 0.75em 1em;
  text-decoration: none;
  color: #1a1a1a;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}
.search-live-item:last-child { border-bottom: none; }
.search-live-item:hover { background: #fafafa; }
.search-live-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0.4em;
  background: #f5f5f5;
  flex-shrink: 0;
}
.search-live-no-img {
  width: 48px; height: 48px;
  background: #f5f5f5;
  border-radius: 0.4em;
  flex-shrink: 0;
}
.search-live-info { flex: 1; min-width: 0; }
.search-live-title {
  font-size: 0.88em;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-live-cat {
  font-size: 0.72em;
  color: #b8860b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2em;
}
.search-live-price {
  font-size: 0.85em;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-search {
  display: flex;
  align-items: center;
  gap: 0.6em;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 2em;
  padding: 0.55em 1.2em;
  transition: border-color 0.2s, background 0.2s;
}
.nav-search:focus-within {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
}
.nav-search-icon { color: var(--gray); flex-shrink: 0; display: flex; align-items: center; }
.nav-search-icon svg { width: 1em; height: 1em; }
.nav-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.82em;
  min-width: 0;
}
.nav-search-input::placeholder { color: var(--gray); }

/* Search dropdown */
.search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.6em);
  left: 0; right: 0;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 0.8em;
  overflow: hidden;
  z-index: 300;
  box-shadow: 0 1em 3em rgba(0,0,0,0.6);
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 0.8em 1.2em;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  cursor: pointer;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: rgba(184,134,11,0.08); }
.search-result-img {
  width: 3em; height: 3em;
  border-radius: 0.4em;
  overflow: hidden;
  background: var(--card);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.search-result-img img { width: 100%; height: 100%; object-fit: contain; }
.search-result-placeholder { color: var(--border); font-size: 1.2em; }
.search-result-info { flex: 1; min-width: 0; }
.search-result-name { font-size: 0.82em; font-weight: 500; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-cat  { font-family: var(--mono); font-size: 0.58em; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-top: 0.2em; }
.search-result-price { font-family: var(--mono); font-size: 0.68em; color: var(--gold); white-space: nowrap; flex-shrink: 0; }
.search-no-results { padding: 1em 1.2em; font-size: 0.8em; color: var(--gray); text-align: center; }

/* Nav icon+text links (Sephora-style) */
.nav-links {
  display: flex;
  align-items: stretch;
  height: 100%;
  flex: 1;
  min-width: 0;
  overflow: visible;
}
.nav-link-item {
  display: flex;
  align-items: center;
  gap: 0.7em;
  padding: 0 1.4em;
  border-left: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
  transition: background 0.2s;
  cursor: pointer;
}
.nav-link-item:hover { background: rgba(255,255,255,0.04); }
.nav-link-icon {
  flex-shrink: 0;
  color: var(--gray-lt);
  display: flex;
  align-items: center;
}
.nav-link-icon svg { width: 1.6em; height: 1.6em; }
.nav-link-text strong {
  display: block;
  font-size: 0.82em;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  font-family: var(--sans);
}
.nav-link-text span {
  display: block;
  font-size: 0.72em;
  color: var(--gray);
  line-height: 1.3;
}

/* Cart icon — far right */
.nav-cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.4em;
  padding: 0.4em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  flex-shrink: 0;
}
.nav-cart-icon:hover { color: var(--gold); }
.nav-cart-icon svg { width: 1.8em; height: 1.8em; }
.cart-count,
.rac-wl-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.45em;
  font-weight: 700;
  min-width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ─── Category Nav Bar (Sephora-style) ──────────────────────── */
.cat-nav {
  position: relative;
  z-index: 10;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  pointer-events: all;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 2.5%;
  white-space: nowrap;
}
.cat-nav-link {
  font-family: var(--mono);
  font-size: 0.72em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-lt);
  padding: 1em 1.4em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  cursor: pointer;
  display: inline-block;
}
.cat-nav-link:hover,
.cat-nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ─── Full-Screen Menu Overlay ───────────────────────────────── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.menu-overlay.open {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}
.menu-panel {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: clamp(280px, 36em, 100%);
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5em 8% 3em;
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out);
  overflow: hidden;
}
.menu-overlay.open .menu-panel { transform: translateX(0); }
.menu-bg-close {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.menu-close {
  position: absolute;
  top: 2em; right: 2em;
  font-family: var(--mono);
  font-size: 0.75em;
  letter-spacing: 0.12em;
  color: var(--gray);
  cursor: pointer;
}
.menu-close:hover { color: var(--white); }
.menu-links { display: flex; flex-direction: column; gap: 1.2em; }
.menu-link {
  font-family: var(--serif);
  font-size: 3.2em;
  line-height: 1.15;
  color: var(--white);
  cursor: pointer;
  display: block;
  position: relative;
  white-space: nowrap;
}
.menu-link:hover { color: var(--gold); }
.menu-footer-links {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
}
.menu-footer-link {
  font-family: var(--sans);
  font-size: 0.85em;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.2s;
}
.menu-footer-link:hover { color: var(--gold); }

/* ─── Hero Section (split layout) ───────────────────────────── */
.hero {
  display: flex;
  min-height: 88vh;
  background: var(--bg-page);
  overflow: hidden;
}

/* Full-bleed hero with image behind text */
.hero.hero-full {
  position: relative;
  align-items: center;
}
.hero-full-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 0;
}
.hero-full-overlay {
  display: none;
}
.hero-cta-overlay {
  position: absolute;
  bottom: 10%;
  left: 4%;
  z-index: 2;
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

/* Hero slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.hero-slide-contain {
  background: #f0ece8;
}
.hero-slide-contain img {
  object-fit: contain;
  object-position: center center;
}
.hero-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5em;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.hero-dot.active {
  background: var(--gold);
}
.hero.hero-full .hero-left {
  position: relative;
  z-index: 2;
  flex: 0 0 40%;
  max-width: 40%;
  padding-right: 1%;
  padding-left: 4%;
}
.hero.hero-full .hero-eyebrow {
  color: var(--gold);
  opacity: 1;
  transform: none;
  padding-bottom: 0.6em;
  border-bottom: 1px solid var(--gold);
  display: inline-block;
  margin-bottom: 0.8em;
}
.hero.hero-full .hero-headline-main {
  color: #fff;
  opacity: 1;
  transform: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0;
  font-size: 6.5em;
}
.hero-hl-bold {
  font-family: 'Cormorant Garamond', var(--serif);
  font-weight: 300;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 0.92;
}
.hero-hl-script {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  font-size: 1.6em;
  color: var(--gold);
  line-height: 0.95;
  text-transform: none;
  letter-spacing: 0;
  margin-top: -0.25em;
}
.hero.hero-full .hero-desc { color: rgba(255,255,255,0.82); opacity: 1; transform: none; }
.hero.hero-full .hero-cta { opacity: 1; transform: none; }
.hero.hero-full .hero-btn-outline {
  border-color: var(--gold);
  color: #fff;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero.hero-full .hero-btn-outline:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.hero-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5em 5% 5em 6%;
}
.hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
.hero-right-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8ddd0 0%, #d6c9b6 50%, #c8b89e 100%);
}
.hero-right-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.hero-right-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse at bottom right, rgba(184,134,11,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.7em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1em;
  opacity: 0;
  transform: translateY(16px);
}
.hero-headline-main {
  font-family: var(--serif);
  font-size: 5.5em;
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 0.6em;
  opacity: 0;
  transform: translateY(24px);
}
.hero-desc {
  font-size: 0.86em;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 36em;
  margin-bottom: 2.2em;
  opacity: 0;
  transform: translateY(16px);
}
/* Legacy word-wrap kept for other pages */
.hero-headline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.3em;
  margin-bottom: 1.8em;
  width: 100%;
}
.word-wrap { overflow: hidden; display: inline-block; }
.word { display: inline-block; transform: translateY(110%); will-change: transform; }
/* CTA buttons */
.hero-cta {
  opacity: 0;
  transform: translateY(10px);
  display: flex;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.72em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1em 2.4em;
  border-radius: 0.3em;
  font-weight: 700;
  transition: background 0.25s;
  text-decoration: none;
}
.hero-btn-primary:hover { background: var(--gold-lt); }
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--mono);
  font-size: 0.72em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1em 2.4em;
  border-radius: 0.3em;
  border: 1.5px solid var(--text-dark);
  transition: background 0.25s, color 0.25s;
  text-decoration: none;
}
.hero-btn-outline:hover { background: var(--text-dark); color: var(--white); }
/* Legacy pill-btn kept for non-hero use */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9em 2em;
  border-radius: 0.3em;
  background: var(--gold);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.72em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.25s;
  text-decoration: none;
  white-space: nowrap;
}
.pill-btn:hover { background: var(--gold-lt); }
.pill-btn-text { white-space: nowrap; }
.pill-btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.pill-btn-outline:hover { background: rgba(184,134,11,0.1); }

/* ─── Section Common ─────────────────────────────────────────── */
.section { padding: 6em 2.5%; background: var(--bg-section); }
.section-sm { padding: 4em 2.5%; background: var(--bg-section); }
.section h2 { color: var(--text-dark); }
.section-eyebrow {
  font-family: var(--mono);
  font-size: 1em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1em;
}
.gold-line {
  width: 3em;
  height: 1px;
  background: var(--gold);
  margin: 1em 0;
}

/* ─── Editorial Product List (Garoa-style) ───────────────────── */
.product-list { padding: 0; }
.product-list-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2em 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  overflow: hidden;
}
.product-list-item:first-child { border-top: 1px solid var(--border); }
.product-list-name-wrap { overflow: hidden; position: relative; }
.product-list-name {
  font-family: var(--serif);
  font-size: 4em;
  line-height: 1;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
  display: block;
}
.product-list-name-hover {
  font-family: var(--mono);
  font-size: 3.6em;
  line-height: 1;
  position: absolute;
  top: 0; left: 0;
  color: var(--gold);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  display: block;
  white-space: nowrap;
}
.product-list-item:hover .product-list-name {
  transform: translateY(-100%);
}
.product-list-item:hover .product-list-name-hover {
  transform: translateY(0%);
}
.product-list-meta {
  display: flex;
  align-items: center;
  gap: 2em;
  flex-shrink: 0;
  padding-left: 2em;
}
.product-list-cat {
  font-family: var(--mono);
  font-size: 0.65em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.product-list-price {
  font-family: var(--sans);
  font-size: 0.9em;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}
.product-list-arrow {
  font-size: 1.2em;
  color: var(--gold);
  transition: transform 0.3s;
}
.product-list-item:hover .product-list-arrow { transform: translateX(4px); }

/* Hover image preview */
.product-list-preview {
  position: absolute;
  right: 12em;
  top: 50%;
  transform: translateY(-50%);
  width: 18vw;
  height: 24vw;
  border-radius: var(--radius);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  z-index: 5;
}
.product-list-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-list-item:hover .product-list-preview { opacity: 1; }

/* ─── Product Grid (Shop Page) ───────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22em, 1fr));
  gap: 1.5em;
}

/* ─── Carousel (Best Sellers) ───────────────────────────────── */
.carousel-section { padding-top: 2em; padding-bottom: 1em; }
.carousel-wrap {
  position: relative;
}
.product-carousel {
  display: flex;
  gap: 1.2em;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5em 0.2em 1em;
  scrollbar-width: none;
}
.product-carousel::-webkit-scrollbar { display: none; }
.product-carousel .product-card {
  flex: 0 0 16em;
  scroll-snap-align: start;
  min-width: 0;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.carousel-arrow:hover { background: var(--gold-lt); transform: translateY(-50%) scale(1.08); }
.carousel-arrow-next { right: -1.4em; }
.carousel-arrow-prev { left: -1.4em; display: none; }
.carousel-arrow-prev.visible { display: flex; }
.product-card {
  background: var(--card-lt);
  border: 1px solid var(--border-lt);
  border-radius: 0.8em;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.product-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* Image area */
.product-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Heart / wishlist icon */
.product-card-heart {
  position: absolute;
  top: 0.8em;
  right: 0.8em;
  z-index: 2;
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.product-card-heart:hover { background: #fff; transform: scale(1.1); }
.product-card-heart .heart-icon { width: 1.1em; height: 1.1em; color: #bbb; transition: color 0.2s, fill 0.2s; }
.product-card-heart:hover .heart-icon { color: #e05555; }
.product-card-heart.wishlisted .heart-icon { color: #e05555; fill: #e05555; }
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover .product-card-img img { transform: scale(1.04); }

/* Sale / badge tag */
.product-card-badge {
  position: absolute;
  top: 0.8em; left: 0.8em;
  font-family: var(--mono);
  font-size: 0.6em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35em 0.8em;
  border-radius: 0.35em;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  z-index: 1;
}

.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0ece6 0%, #e5dfd6 100%);
  color: rgba(184,134,11,0.3);
  font-size: 4em;
}

/* Card body */
.product-card-body {
  padding: 1.2em 1.4em 1.5em;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-cat {
  font-family: var(--mono);
  font-size: 0.68em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45em;
}
.product-card-name {
  font-family: var(--sans);
  font-size: 1.05em;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 0.25em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Star ratings */
.product-card-stars {
  display: flex;
  align-items: center;
  gap: 0.3em;
  margin-bottom: 0.5em;
}
.product-card-stars .stars {
  color: #f5a623;
  font-size: 1em;
  letter-spacing: 0.05em;
}
.product-card-stars .count {
  font-size: 0.78em;
  color: var(--text-mid);
}
.product-card-tag {
  font-size: 0.85em;
  color: var(--text-mid);
  margin-bottom: 0.9em;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Price */
.product-card-price {
  font-size: 1.05em;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1em;
  display: block;
  margin-top: auto;
}
.product-card-price .original {
  text-decoration: line-through;
  color: var(--text-mid);
  font-weight: 400;
  font-size: 0.88em;
  margin-right: 0.45em;
}
.product-card-price .sale { color: var(--gold); }
.product-card-price .range { color: var(--gold); font-size: 0.88em; }

/* Full-width Add to Cart button */
.product-card-tag { flex: 1; }
.product-add-btn {
  width: 100%;
  background: var(--text-dark);
  color: var(--white);
  border: none;
  border-radius: 0.4em;
  padding: 0.95em 1em;
  font-family: var(--sans);
  font-size: 0.92em;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.product-add-btn:hover { background: var(--gold); color: var(--black); }
.product-add-btn svg { width: 1em; height: 1em; }

/* Pre-Order button */
.product-preorder-btn {
  width: 100%;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 0.4em;
  padding: 0.95em 1em;
  font-family: var(--sans);
  font-size: 0.92em;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.product-preorder-btn:hover { background: var(--gold); color: #fff; }

/* ─── Product Page Pre-Order Info Box ───────────────────────── */
.pdp-preorder-box {
  margin: 0.4em 0 1.2em;
  border: 2px solid var(--gold);
  border-radius: 0.8em;
  background: #fffdf7;
  padding: 1.8em 2em;
  box-shadow: 0 4px 20px rgba(184,134,11,0.12);
}
.pdp-preorder-box-title {
  font-family: var(--mono);
  font-size: 1em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.2em;
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding-bottom: 0.9em;
  border-bottom: 1px solid rgba(184,134,11,0.3);
}
.pdp-preorder-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
}
.pdp-preorder-box ul li {
  font-size: 0.91em;
  color: var(--text-dark);
  line-height: 1.55;
  padding-left: 1.6em;
  position: relative;
}
.pdp-preorder-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9em;
}
.pdp-preorder-box ul li strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Out of Stock badge */
.product-card-badge-oos {
  position: absolute;
  top: 0.8em; left: 0.8em;
  font-family: var(--mono);
  font-size: 0.6em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35em 0.8em;
  border-radius: 0.35em;
  background: #555;
  color: #fff;
  z-index: 2;
}

/* ─── Filter Bar ─────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0.6em;
  flex-wrap: wrap;
  margin-bottom: 3em;
}
.filter-pill {
  font-family: var(--mono);
  font-size: 0.65em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6em 1.5em;
  border-radius: 2em;
  border: 1px solid var(--border);
  color: var(--gray-lt);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-pill:hover { border-color: var(--gold); color: var(--gold); }
.filter-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 700;
}

/* ─── Page Banner ────────────────────────────────────────────── */
.page-banner {
  padding: 0.5em 2.5% 1.5em;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.65em;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 1em;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }

/* ─── Product Detail ─────────────────────────────────────────── */
/* ─── Product Detail Page (PDP) ─────────────────────────────── */
.pdp-layout {
  display: grid;
  grid-template-columns: 5.5em 1fr 1fr;
  gap: 2em;
  align-items: start;
  padding: 2em 4% 6em;
  background: var(--bg-section);
}
/* Thumbnails column */
.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  position: sticky;
  top: 1em;
}
.thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.5em;
  overflow: hidden;
  border: 1.5px solid var(--border-lt);
  cursor: pointer;
  transition: border-color 0.2s;
}
.thumb.active { border-color: var(--gold); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Main image column */
.pdp-main-img {
  position: sticky;
  top: 1em;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.8em;
  overflow: hidden;
  background: #f5f3ef;
  border: 1px solid var(--border-lt);
}
.pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main-img .img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4em; color: var(--border-lt); }

/* Info column */
.pdp-info { padding-top: 0.5em; }
.pdp-cat {
  font-family: var(--mono);
  font-size: 0.7em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6em;
}
.pdp-name {
  font-family: var(--sans);
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 0.6em;
}
.pdp-stars-row {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.8em;
}
.pdp-stars { color: #f5a623; font-size: 1em; letter-spacing: 0.05em; }
.pdp-rating-val { font-size: 0.85em; font-weight: 600; color: var(--text-dark); }
.pdp-review-ct { font-size: 0.78em; color: var(--text-mid); }
.pdp-tagline {
  font-size: 0.88em;
  color: var(--text-mid);
  margin-bottom: 1.2em;
  font-style: italic;
}
.pdp-price {
  font-size: 2em;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.1em;
}
.pdp-price .original {
  font-size: 0.65em;
  font-weight: 400;
  text-decoration: line-through;
  color: var(--text-mid);
  margin-right: 0.5em;
}
.pdp-price .sale { color: var(--gold); }
.pdp-price-note {
  font-family: var(--mono);
  font-size: 0.62em;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  margin-bottom: 1.5em;
}
.pdp-desc {
  font-size: 0.88em;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid var(--border-lt);
}
.variant-label {
  font-family: var(--mono);
  font-size: 0.68em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.7em;
}
.variant-options { display: flex; flex-wrap: wrap; gap: 0.5em; margin-bottom: 1.5em; }
.variant-opt {
  font-family: var(--mono);
  font-size: 0.72em;
  letter-spacing: 0.04em;
  padding: 0.6em 1.2em;
  border-radius: 0.4em;
  border: 1.5px solid var(--border-lt);
  color: var(--text-dark);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.variant-opt:hover { border-color: var(--gold); }
.variant-opt.selected { border-color: var(--gold); color: var(--gold); background: rgba(184,134,11,0.06); font-weight: 600; }

/* Actions row: qty + add to cart + heart */
.pdp-actions {
  display: flex;
  gap: 0.7em;
  align-items: center;
  margin-bottom: 1.5em;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-lt);
  border-radius: 0.5em;
  overflow: hidden;
  flex-shrink: 0;
}
.qty-btn {
  width: 2.6em; height: 3em;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1em;
  color: var(--text-dark);
  background: var(--bg-section);
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.qty-btn:hover { background: var(--bg-page); }
.qty-num {
  width: 2.4em;
  text-align: center;
  font-weight: 600;
  font-size: 0.9em;
  background: transparent;
  border: none;
  color: var(--text-dark);
}
.add-btn-large {
  flex: 1;
  height: 3em;
  border-radius: 0.5em;
  background: var(--text-dark);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.88em;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.add-btn-large:hover { background: var(--gold); color: var(--black); }
.pdp-wish-btn {
  width: 3em; height: 3em;
  border-radius: 50%;
  border: 1.5px solid var(--border-lt);
  background: var(--bg-section);
  color: var(--text-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.pdp-wish-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Delivery boxes */
.pdp-dboxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6em;
  margin-bottom: 1.2em;
}
.pdp-dbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 0.5em;
  border: 1px solid var(--border-lt);
  border-radius: 0.6em;
  text-align: center;
  color: var(--text-mid);
}
.pdp-dbox svg { color: var(--text-mid); flex-shrink: 0; }
.pdp-dbox span { font-size: 0.65em; line-height: 1.4; color: var(--text-dark); font-weight: 500; }

.pdp-note {
  font-size: 0.78em;
  color: var(--text-mid);
  line-height: 1.6;
  padding: 1em 1.2em;
  background: var(--bg-page);
  border-radius: 0.5em;
  border: 1px solid var(--border-lt);
  margin-bottom: 1em;
}

.view-cart-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3em;
  border-radius: 0.5em;
  border: 1.5px solid var(--border-lt);
  font-family: var(--mono);
  font-size: 0.7em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.view-cart-link:hover { border-color: var(--gold); background: rgba(184,134,11,0.05); }

.delivery-note {
  margin-top: 1.5em;
  padding: 1em 1.2em;
  border-radius: 0.6em;
  border: 1px solid var(--border-lt);
  font-size: 0.78em;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ─── Cart & Checkout ────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 26em;
  gap: 3em;
  align-items: start;
  padding: 4em 2.5% 8em;
}
.cart-item {
  display: flex;
  gap: 1.5em;
  padding: 1.5em 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 6em; height: 6em;
  border-radius: 0.6em;
  object-fit: cover;
  background: var(--card);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.cart-item-name { font-family: var(--serif); font-size: 1.2em; margin-bottom: 0.3em; }
.cart-item-variant { font-family: var(--mono); font-size: 0.65em; letter-spacing: 0.06em; color: var(--gray); margin-bottom: 0.5em; }
.cart-item-price { color: var(--gold); font-weight: 500; font-size: 0.9em; }
.cart-item-remove { font-family: var(--mono); font-size: 0.6em; letter-spacing: 0.06em; color: var(--gray); text-decoration: underline; cursor: pointer; margin-top: 0.6em; display: inline-block; }
.cart-item-remove:hover { color: #e44; }

.order-summary {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2em;
  position: sticky;
  top: 6em;
}
.order-summary-title {
  font-family: var(--serif);
  font-size: 1.8em;
  margin-bottom: 1.5em;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85em;
  color: var(--gray-lt);
  margin-bottom: 0.8em;
}
.summary-row.total {
  font-size: 1em;
  font-weight: 600;
  color: var(--white);
  padding-top: 1em;
  margin-top: 0.5em;
  border-top: 1px solid var(--border);
}
.summary-row.total .amount { color: var(--gold); }
.checkout-cta {
  width: 100%;
  height: 3em;
  margin-top: 1.5em;
  border-radius: 0.6em;
  background: var(--gold);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.7em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.checkout-cta:hover { background: var(--gold-lt); }
.summary-note {
  font-size: 0.65em;
  color: var(--gray);
  text-align: center;
  margin-top: 0.8em;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.cart-empty {
  text-align: center;
  padding: 8em 2.5%;
}
.cart-empty-icon { font-size: 4em; opacity: 0.2; margin-bottom: 0.5em; }

/* ─── Checkout form ──────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 26em;
  gap: 3em;
  align-items: start;
  padding: 4em 2.5% 8em;
}
.form-section { margin-bottom: 2.5em; }
.form-section-title {
  font-family: var(--sans);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 1.2em;
  padding-bottom: 0.8em;
  border-bottom: 2px solid var(--border-lt);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1em; }
.form-field { display: flex; flex-direction: column; gap: 0.4em; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--sans);
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: #fff;
  border: 1.5px solid #d1cbc4;
  border-radius: 0.6em;
  padding: 0.9em 1em;
  color: #1a1a1a;
  font-size: 0.95em;
  font-family: var(--sans);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.12);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #aaa; font-size: 0.92em; }
.form-field textarea { resize: vertical; min-height: 5em; }
.form-field select option { background: #fff; color: #1a1a1a; }
.payment-note {
  padding: 1.2em 1.4em;
  border-radius: 0.6em;
  border: 1px solid var(--border);
  margin-bottom: 1.5em;
}
.payment-note h4 {
  font-family: var(--mono);
  font-size: 0.65em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5em;
}
.payment-note p { font-size: 0.8em; color: var(--gray-lt); line-height: 1.5; }
.submit-btn {
  width: 100%;
  height: 3.2em;
  border-radius: 0.6em;
  background: var(--gold);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.75em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.submit-btn:hover { background: var(--gold-lt); }
.form-disclaimer {
  font-size: 0.65em;
  color: var(--gray);
  text-align: center;
  margin-top: 0.8em;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

/* ─── Order Confirmation ─────────────────────────────────────── */
.confirm-box {
  max-width: 40em;
  margin: 8em auto;
  text-align: center;
  padding: 0 2.5%;
}
.confirm-icon {
  width: 5em; height: 5em;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(184,134,11,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: var(--gold);
  margin: 0 auto 1.5em;
}

/* ─── Toast ──────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 2em;
  right: 2em;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  z-index: 999;
}
.toast {
  display: flex;
  align-items: center;
  gap: 0.8em;
  background: var(--card);
  border: 1px solid var(--gold-dim);
  border-radius: 0.6em;
  padding: 0.9em 1.4em;
  font-size: 0.85em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: slideUp 0.25s var(--ease-out);
}
.toast-icon { color: var(--gold); }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Editorial Brand Statement ─────────────────────────────── */
.statement-section {
  padding: 8em 2.5%;
  text-align: center;
}
.statement-text {
  font-family: var(--serif);
  font-size: 3.5em;
  line-height: 1.2;
  max-width: 14em;
  margin: 0 auto;
  font-weight: 400;
}

/* ─── Shop by Category (photo cards) ────────────────────────── */
.guidance-section {
  padding: 2.5em 2.5% 2em;
  background: var(--bg-section);
}
.guidance-section-header {
  text-align: center;
  margin-bottom: 2em;
}
.guidance-section-header .section-eyebrow {
  display: block;
}
.guidance-cards {
  display: flex;
  gap: 1em;
  overflow-x: auto;
  padding-bottom: 0.5em;
  scrollbar-width: none;
}
.guidance-cards::-webkit-scrollbar { display: none; }
.guidance-card {
  position: relative;
  flex: 0 0 13em;
  height: 18em;
  border-radius: 0.8em;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.guidance-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.guidance-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease-out);
}
.guidance-card:hover .guidance-card-bg { transform: scale(1.06); }
.guidance-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%);
}
.guidance-card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  color: var(--gold);
  width: 2.6em;
  height: 2.6em;
}
.guidance-card-icon svg { width: 100%; height: 100%; }
.guidance-card-name {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 0.78em;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.3em;
  padding: 0 0.5em;
}
.guidance-card-shop {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 0.58em;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  margin-bottom: 1.1em;
  text-align: center;
}
/* Category background colors (fallback when no photo) */
.cat-bg-wellness  { background: linear-gradient(135deg, #2d4a3e 0%, #1a3028 100%); }
.cat-bg-selfcare  { background: linear-gradient(135deg, #4a2d3e 0%, #301a28 100%); }
.cat-bg-beauty    { background: linear-gradient(135deg, #4a3828 0%, #302818 100%); }
.cat-bg-kitchen   { background: linear-gradient(135deg, #28384a 0%, #182830 100%); }
.cat-bg-acc       { background: linear-gradient(135deg, #3a2d4a 0%, #281a30 100%); }
.cat-bg-outdoors  { background: linear-gradient(135deg, #2d3a28 0%, #1a2818 100%); }
.cat-bg-purse     { background: linear-gradient(135deg, #4a2828 0%, #301818 100%); }
.cat-bg-apparel   { background: linear-gradient(135deg, #28284a 0%, #181830 100%); }
.cat-bg-baby      { background: linear-gradient(135deg, #4a3a28 0%, #302818 100%); }
.cat-bg-safety    { background: linear-gradient(135deg, #3a3a28 0%, #282818 100%); }
.cat-bg-default   { background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%); }

/* ─── Category Tiles ────────────────────────────────────────── */
.cat-tile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1em;
}
.cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6em;
  padding: 1.8em 1em;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1em;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
}
.cat-tile:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}
.cat-tile-icon {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  margin-bottom: 0.2em;
}
.cat-tile-name {
  font-family: var(--serif);
  font-size: 0.9em;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.cat-tile-count {
  font-family: var(--mono);
  font-size: 0.58em;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-transform: uppercase;
}
.cat-tile-arrow {
  font-size: 0.75em;
  color: var(--gold);
  margin-top: auto;
}

/* ─── Value Props Strip ──────────────────────────────────────── */
.props-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #111009;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.prop-item {
  display: flex;
  align-items: center;
  gap: 1.2em;
  padding: 2em 2.2em;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.prop-item:last-child { border-right: none; }
.prop-icon-svg {
  flex-shrink: 0;
  color: var(--gold);
  display: flex;
  align-items: center;
}
.prop-icon-svg svg { width: 2.2em; height: 2.2em; }
.prop-content { display: flex; flex-direction: column; gap: 0.2em; }
.prop-title {
  font-family: var(--sans);
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.prop-body { font-size: 0.75em; color: var(--gray); line-height: 1.4; }

/* ─── Related Products Section ───────────────────────────────── */
.related-section {
  padding: 6em 2.5%;
  border-top: 1px solid var(--border);
}

/* ─── Footer ─────────────────────────────────────────────────── */
/* ─── Footer — Sephora Style ─────────────────────────────────── */
.footer {
  background: #0a0908;
  border-top: 1px solid var(--border);
  padding: 0;
}

/* Top strip */
.footer-top-strip {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.footer-strip-item {
  display: flex;
  align-items: center;
  gap: 0.9em;
  padding: 1.4em 2.4em;
  flex: 1 1 0;
  min-width: 10em;
  border-right: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s;
}
.footer-strip-item:last-child { border-right: none; }
.footer-strip-item:hover { background: rgba(255,255,255,0.04); }
.footer-strip-icon {
  width: 1.8em;
  height: 1.8em;
  flex-shrink: 0;
  color: var(--gray-lt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-strip-icon svg { width: 100%; height: 100%; }
.footer-strip-label strong {
  display: block;
  font-size: 0.92em;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  font-family: var(--sans);
}
.footer-strip-label span {
  display: block;
  font-size: 0.82em;
  color: var(--gray);
  line-height: 1.4;
  margin-top: 0.15em;
}

/* Footer body */
.footer-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: 3em 4em;
  padding: 3.5em 6vw 3em;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-col-title {
  font-family: var(--mono);
  font-size: 0.78em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.4em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85em;
}
.footer-col ul li a {
  font-size: 0.94em;
  color: var(--gray-lt);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-col ul li a:hover { color: var(--white); }

/* Right — brand tagline + CTA */
.footer-brand-right { }
.footer-tagline {
  font-family: var(--serif);
  font-size: 3.2em;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.4em;
}
.footer-cta-label {
  font-family: var(--mono);
  font-size: 0.68em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.8em;
}
.footer-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 0.7em 1.5em;
  border-radius: 3em;
  font-size: 0.72em;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-cta-btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.footer-cta-btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.footer-cta-btn.primary:hover { background: #d4a800; border-color: #d4a800; }

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2em 6vw;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.6em;
  letter-spacing: 0.06em;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 1em;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-bottom-left { display: flex; flex-direction: column; gap: 0.4em; }
.footer-bottom-links { display: flex; gap: 1.8em; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }
.footer-social-icons { display: flex; align-items: center; gap: 1.4em; }
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6em;
  height: 2.6em;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1em;
  transition: background 0.2s, border-color 0.2s;
}
.footer-social-icon:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ─── Announcement Bar ───────────────────────────────────────── */
.announce-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  background: linear-gradient(90deg, #1a1408 0%, #6b4f08 25%, #B8860B 50%, #6b4f08 75%, #1a1408 100%);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.7em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55em 1em;
  text-align: center;
  height: 2.4em;
}
.announce-bar svg { flex-shrink: 0; }

/* ─── Hero outline CTA button ────────────────────────────────── */
.pill-btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.pill-btn-outline.expanded { width: 14em; }
.pill-btn-outline:hover { background: rgba(184,134,11,0.12); }
.pill-btn-outline .pill-btn-text { color: var(--gold); }

/* ─── View All Products button ───────────────────────────────── */
.view-all-btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.9em 2.8em;
  border-radius: 0.3em;
  transition: background 0.25s;
}
.view-all-btn:hover { background: var(--gold-lt); }

/* ─── Lifestyle Banner ───────────────────────────────────────── */
.lifestyle-banner {
  position: relative;
  min-height: 42em;
  display: flex;
  align-items: center;
  background: url('images/lifestyle-banner.jpg') center/cover no-repeat;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lifestyle-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.1) 100%);
}
.lifestyle-banner-overlay {
  display: none;
}
.lifestyle-banner-content {
  position: relative;
  z-index: 1;
  padding: 5em 6%;
  max-width: 55%;
}
.lifestyle-banner-eyebrow {
  font-family: var(--mono);
  font-size: 0.68em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2em;
}
.lifestyle-banner-heading {
  font-family: var(--serif);
  font-size: 3.2em;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.4em;
}
.lifestyle-banner-btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.9em 2.5em;
  border-radius: 0.3em;
  transition: background 0.25s;
}
.lifestyle-banner-btn:hover { background: var(--gold-lt); }

/* ─── Need a Little Guidance ────────────────────────────────── */
.needle-section {
  display: flex;
  align-items: center;
  gap: 3em;
  padding: 2.5em 4%;
  background: var(--bg-section);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}
.needle-left { flex-shrink: 0; min-width: 13em; }
.needle-heading {
  font-family: var(--sans);
  font-size: 1.25em;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35em;
}
.needle-sub { font-size: 0.82em; color: var(--text-mid); }
.needle-cards {
  display: flex;
  gap: 0.75em;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}
.needle-cards::-webkit-scrollbar { display: none; }
.needle-card {
  flex: 0 0 9em;
  height: 11em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.1em 1em 1em;
  border: 1px solid var(--border-lt);
  border-radius: 0.7em;
  text-decoration: none;
  background: var(--bg-section);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.needle-card:hover { border-color: var(--gold); box-shadow: 0 4px 18px rgba(0,0,0,0.08); }
.needle-card-name {
  font-family: var(--sans);
  font-size: 0.82em;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  line-height: 1.3;
}
.needle-card-icon { width: 3.2em; height: 3.2em; color: var(--gold); align-self: flex-start; }
.needle-card-icon svg { width: 100%; height: 100%; }

/* ─── Newsletter Section ─────────────────────────────────────── */
.newsletter-section {
  display: flex;
  align-items: center;
  gap: 2em;
  flex-wrap: wrap;
  padding: 3.5em 5%;
  background: var(--bg-section);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}
.newsletter-icon {
  flex-shrink: 0;
  color: var(--gold);
}
.newsletter-text {
  flex: 1;
  min-width: 14em;
}
.newsletter-title {
  font-family: var(--serif);
  font-size: 1.4em;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.2em;
}
.newsletter-sub {
  font-size: 0.78em;
  color: var(--text-mid);
}
.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  border-radius: 0.4em;
  overflow: hidden;
  border: 1px solid var(--border-lt);
}
.newsletter-input {
  background: var(--bg-page);
  border: none;
  outline: none;
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: 0.82em;
  padding: 0.85em 1.4em;
  width: 22em;
}
.newsletter-input::placeholder { color: var(--text-mid); }
.newsletter-btn {
  background: var(--gold);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.7em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85em 1.6em;
  white-space: nowrap;
  transition: background 0.25s;
  cursor: pointer;
  border: none;
}
.newsletter-btn:hover { background: var(--gold-lt); }

/* ─── Payment Badges ─────────────────────────────────────────── */
.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.4em;
  font-family: var(--mono);
  font-size: 0.55em;
  letter-spacing: 0.05em;
  color: var(--gray-lt);
  padding: 0.4em 0.8em;
  font-weight: 700;
}

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(2em);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  body { font-size: 1.5vw; }
  .product-detail { grid-template-columns: 1fr; gap: 3em; padding: 3em 4% 6em; }
  .product-gallery { position: static; }
  .pdp-layout { grid-template-columns: 1fr; }
  .pdp-thumbs { flex-direction: row; }
  .pdp-main-img { position: static; }
  .pdp-dboxes { grid-template-columns: repeat(2,1fr); }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; padding: 3em 4% 6em; }
  .order-summary { position: static; }
  .footer-body { grid-template-columns: 1fr 1fr; }
  .footer-brand-right { grid-column: 1 / -1; }
  .props-strip { grid-template-columns: 1fr 1fr; }
  .prop-item:nth-child(2) { border-right: none; }
  .prop-item { padding: 1.6em 1.8em; }
  .hero-content { padding: 1.5em; }
  .product-list-name { font-size: 3em; }
  .product-list-preview { display: none; }
  .cat-tile-grid { grid-template-columns: repeat(3, 1fr); }
  /* Tablet: hide some nav links */
  .nav-links .nav-link-item:not(:first-child):not(:last-child):nth-child(n+4) { display: none; }
}

/* ─── Mobile Nav ──────────────────────────────────────────── */
@media (max-width: 767px) {
  body { font-size: 16px; }

  /* Nav: compact - logo + search + heart + cart + menu btn */
  .nav { padding: 0 3%; gap: 0; height: 56px; overflow: visible; }
  .nav-links { display: none; }
  .nav-search-wrap { flex: 0 1 120px; min-width: 80px; margin-right: 0.5em; }
  .nav-search-wrap .nav-search { padding: 0.4em 0.6em; }
  .nav-search-wrap .nav-search input { font-size: 0.78em; }
  .nav-cart-icon svg { width: 17px; height: 17px; }
  .nav-cart-icon { margin-left: 0.4em; }
  .nav-wishlist-icon { margin-left: 0.4em; margin-right: 0; }
  .nav-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4em;
    cursor: pointer;
    padding: 0.3em 0.5em;
    margin-left: 0.5em;
    flex-shrink: 0;
  }
  .nav-logo { font-size: 1.3em; margin-right: 0.8em; }
  .nav-cart-icon { margin-left: 0.5em; }

  /* Hero: slideshow on mobile */
  .hero { min-height: 66vw; }
  .hero-slides { position: absolute; inset: 0; }
  .hero-slide { position: absolute; inset: 0; }
  .hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
  .hero-slide-left img { object-position: 20% center !important; }
  .hero-cta-overlay { bottom: 8%; left: 3%; }
  .hero-dots { bottom: 2%; }
  .hero-left { flex: none; padding: 3.5em 6% 2.5em; order: 2; }
  .hero-right { flex: none; min-height: 45vw; order: 1; }
  .hero-headline-main { font-size: 3em; }
  .hero-desc { font-size: 0.95em; }

  /* Typography */
  .heading-xl  { font-size: 2.8em; }
  .heading-lg  { font-size: 2.2em; }
  .heading-md  { font-size: 1.8em; }
  .hero-headline { gap: 0 0.2em; }
  .product-list-name { font-size: 1.8em; }


  /* Guidance section: stack on mobile */
  .needle-section { flex-direction: column; align-items: flex-start; gap: 0.8em; padding: 1.2em 4%; position: relative; }
  .needle-left { min-width: unset; }
  .needle-heading { font-size: 0.95em; margin-bottom: 0.2em; }
  .needle-sub { font-size: 0.72em; }
  .needle-cards { width: 100%; padding-bottom: 0.5em; }
  .needle-card { flex: 0 0 6.5em; height: 8.5em; padding: 0.9em 0.8em; }
  .needle-card-icon { width: 2.6em; height: 2.6em; }
  .needle-section::after { content: ''; position: absolute; right: 0; top: 0; width: 3.5em; height: 100%; background: linear-gradient(to right, transparent, var(--bg-section)); pointer-events: none; z-index: 1; }

  /* Footer */
  .footer-body { grid-template-columns: 1fr; }
  .footer-brand-right { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 0.5em; text-align: center; }
  .footer-top-strip { flex-wrap: wrap; }
  .footer-strip-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid var(--border); }
  .footer-strip-item:last-child { border-bottom: none; }

  /* Props strip */
  .props-strip { grid-template-columns: 1fr; }
  .prop-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 1.4em 1.6em; }
  .prop-item:last-child { border-bottom: none; }

  /* Menu panel */
  .menu-panel { width: 100%; }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }

  /* Cart & Checkout */
  .cart-layout, .checkout-layout { padding: 1.5em 4% 4em; gap: 2em; }
  .cart-item { gap: 1em; }
  .cart-item-img { width: 5.5em; height: 5.5em; flex-shrink: 0; }
  .order-summary { padding: 1.5em; }
  .checkout-cta { font-size: 1em; padding: 1em; }
  .payment-methods { gap: 0.6em; }
  .pay-btn { font-size: 0.82em; padding: 0.75em 1em; }

  /* Shop */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1em; }
  .cat-tile-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-body { padding: 0.9em; }
  .product-card-name { font-size: 0.82em; }

  /* Lifestyle banner */
  .lifestyle-banner { min-height: unset; background-size: cover; background-position: center center; padding: 2.5em 5% 2.5em; }
  .lifestyle-banner-content { max-width: 90%; padding: 0; }
  .lifestyle-banner-heading { font-size: 1.6em; }

  /* Newsletter */
  .newsletter-section { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; }
  .newsletter-input { width: 100%; flex: 1; }
  .footer-payment-icons { justify-content: center; }

  /* Checkout page padding */
  .box > div[style*="padding:8em"] { padding-top: 5em !important; }

  /* WhatsApp float — bigger tap target on mobile */
  .wa-float { width: 3.6em; height: 3.6em; bottom: 1.2em; right: 1.2em; }
}

@media (max-width: 479px) {
  body { font-size: 15px; }
  .hero-headline-main { font-size: 2.5em; }
  .heading-lg { font-size: 1.8em; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7em; }
  .cat-tile-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-body { padding: 0.7em; }
  .nav { height: 52px; }
}

/* ─── Util bar — hidden everywhere ───────────────────────── */
.util-bar-right { display: none !important; }

/* ─── Hero Slideshow ─────────────────────────────────────── */

/* ─── Floating WhatsApp Button ───────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5em;
  right: 1.5em;
  z-index: 999;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 3.2em;
  height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.wa-float svg { width: 1.6em; height: 1.6em; }

/* ─── Pre-Order Section ──────────────────────────────────── */
.preorder-section { background: #0e0b06; padding: 3em 4%; }
.preorder-heading {
  font-family: var(--serif);
  font-size: 2.2em;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0 0 0.3em;
}
.preorder-sub {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.82em;
  margin-bottom: 2em;
}
.preorder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16em, 1fr));
  gap: 1.4em;
}
.preorder-card {
  background: #1a1408;
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: 0.8em;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.preorder-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.preorder-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #111;
}
.preorder-card-img img { width: 100%; height: 100%; object-fit: cover; }
.preorder-card-body { padding: 1em 1.1em 1.3em; }
.preorder-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 0.62em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 0.7em;
  border-radius: 2em;
  margin-bottom: 0.6em;
}
.preorder-card-name {
  font-family: var(--serif);
  font-size: 1em;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.3em;
}
.preorder-card-date {
  font-size: 0.72em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.7em;
}
.preorder-card-price {
  font-size: 1em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.9em;
}
.preorder-card-btn {
  width: 100%;
  padding: 0.75em;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 0.4em;
  font-family: var(--sans);
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.preorder-card-btn:hover { background: #d4a017; }

/* ─── Nav account dropdown ───────────────────────────────────── */
.nav-account-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  border-left: 1px solid var(--border);
}
.nav-account-btn {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0 1.2em;
  color: var(--white);
  font: inherit;
  font-size: 0.88em;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-account-btn:hover { background: rgba(255,255,255,0.04); }
.nav-account-btn strong { font-size: 0.95em; letter-spacing: 0.01em; }
.nav-account-icon { display: flex; align-items: center; color: var(--gray-lt); }
.nav-account-caret { color: var(--gray-lt); transition: transform 0.2s; flex-shrink: 0; }
.nav-account-btn[aria-expanded="true"] .nav-account-caret { transform: rotate(180deg); }

.nav-account-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #e8e0d8;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  min-width: 210px;
  padding: 0.5em 0;
  z-index: 99999;
}
.nav-account-wrap:hover .nav-account-dropdown,
.nav-account-btn[aria-expanded="true"] + .nav-account-dropdown { display: block; }

.nav-account-item { display: flex; align-items: center; gap: 0.75em; padding: 0.7em 1.3em; color: #2a2a2a; text-decoration: none; font-size: 0.88em; transition: background 0.15s; white-space: nowrap; }
.nav-account-item svg { color: #aaa; flex-shrink: 0; }
.nav-account-item:hover { background: #faf7f3; }
.nav-account-item:hover svg { color: var(--gold); }
.nav-account-divider { height: 1px; background: #f0ebe4; margin: 0.4em 0; }
.nav-account-logout { color: #999; }
.nav-account-logout:hover { color: #c0392b; background: #fff5f5; }
