/* ============================================================
   Dhaagay Fashion — cinematic luxe stylesheet
   Ported from the GRAGS "cinematic luxe" system:
   warm charcoal · cream · olive · gold shimmer
   Fonts: Fraunces (serif) · Inter (sans)
   ============================================================ */
:root {
  /* Core surfaces */
  --bg:           #14110d;   /* warm near-black */
  --bg-soft:      #1a1612;   /* charcoal */
  --card:         #1d1915;
  --muted:        #2c2620;
  --border:       #342d25;
  --border-soft:  #2a251f;

  /* Ink */
  --cream:        #ece1cf;   /* primary foreground */
  --cream-dim:    #cabfa9;
  --muted-fg:     #938876;   /* secondary text */
  --faint:        #6f6656;

  /* Accents */
  --olive:        #4b5240;
  --gold:         #cf9f4d;
  --gold-soft:    #ddb877;
  --gold-bright:  #ecd39a;
  --danger:       #b5533f;

  --shadow:       0 24px 60px rgba(0, 0, 0, 0.5);
  --shadow-soft:  0 12px 40px rgba(0, 0, 0, 0.35);

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', 'Jost', 'Segoe UI', sans-serif;

  --wide:   0.2em;
  --wider:  0.28em;
  --widest: 0.42em;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--cream);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
::selection { background: var(--gold); color: var(--bg); }

/* ---------- Cinematic grain overlay ---------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Shared micro-label ---------- */
.section-eyebrow,
.brand-tagline,
.product-collection a { font-family: var(--sans); }

/* ============================================================
   Announcement bar
   ============================================================ */
.announce-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
  color: var(--cream-dim);
}
.announce-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 9px 24px;
  font-size: 0.66rem;
  letter-spacing: var(--wide);
  text-transform: uppercase;
}
.announce-inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0.72;
  transition: opacity 0.25s, color 0.25s;
}
.announce-inner a:hover { opacity: 1; color: var(--gold-soft); }
.announce-inner svg { width: 13px; height: 13px; }
@media (max-width: 620px) {
  .announce-inner { gap: 20px; font-size: 0.6rem; }
  .announce-inner .announce-label { display: none; }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 17, 13, 0.72);
  border-bottom: 1px solid var(--border-soft);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { color: var(--gold); font-size: 1.15rem; line-height: 1; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-tagline {
  font-size: 0.55rem;
  letter-spacing: var(--wider);
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 5px;
}
.main-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.main-nav a {
  padding: 4px 0;
  font-size: 0.68rem;
  letter-spacing: var(--wide);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--cream-dim);
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 1px;
  width: 100%;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.main-nav a:hover { color: var(--cream); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.main-nav a.active { color: var(--cream); }
.main-nav a.active::after { transform: scaleX(1); background: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: 8px; }
.header-search-toggle {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}
.header-search-toggle:hover { background: rgba(236, 225, 207, 0.08); color: var(--gold-soft); }
.header-wishlist-toggle { position: relative; }
.wishlist-count {
  position: absolute;
  top: 3px; right: 3px;
  min-width: 15px; height: 15px;
  padding: 0 3px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 600;
  border-radius: 50%;
  line-height: 1;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--cream);
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 0.66rem;
  letter-spacing: var(--wide);
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.35s, border-color 0.35s, color 0.35s;
}
.header-whatsapp:hover { background: var(--cream); color: var(--bg); border-color: var(--cream); }

/* Search panel */
.search-panel {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
body.search-open .search-panel { max-height: 110px; }
.search-panel-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-soft);
}
.search-panel-form input {
  flex: 1;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 8px 2px;
  color: var(--cream);
}
.search-panel-form input::placeholder { color: var(--faint); }
.search-panel-form input:focus { outline: none; border-color: var(--gold); }
.search-panel-close {
  border: 0; background: none; cursor: pointer;
  color: var(--muted-fg); font-size: 1.1rem; line-height: 1; padding: 4px;
}
.search-page-form {
  max-width: 560px;
  margin: 0 auto 48px;
  display: flex;
  gap: 12px;
}
.search-page-form input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--card);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--cream);
}
.search-page-form input::placeholder { color: var(--faint); }
.search-page-form input:focus { outline: none; border-color: var(--gold); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--cream); transition: 0.2s; }
.nav-backdrop { display: none; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 34px;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: var(--wide);
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.35s ease;
}
.btn-primary { background: var(--cream); color: var(--bg); }
.btn-primary:hover { background: var(--gold-bright); }
.btn-outline { border-color: rgba(236, 225, 207, 0.35); color: var(--cream); background: transparent; }
.btn-outline:hover { background: var(--cream); color: var(--bg); border-color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-sm { padding: 11px 22px; font-size: 0.62rem; }
.btn-whatsapp { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.btn-whatsapp:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-buy {
  width: 100%;
  background: var(--cream);
  color: var(--bg);
  padding: 13px 16px;
  font-size: 0.62rem;
  font-weight: 600;
  margin-top: auto;
}
.btn-buy:hover { background: var(--gold-bright); }
.btn-buy-lg { width: auto; padding: 17px 40px; font-size: 0.72rem; background: var(--gold); color: var(--bg); border-color: var(--gold); }
.btn-buy-lg:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-disabled { background: var(--muted) !important; color: var(--faint) !important; border-color: var(--border) !important; cursor: not-allowed; pointer-events: none; }

/* Button border-trace (grags signature) */
.btn-trace { position: relative; overflow: hidden; }
.btn-trace::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(236, 225, 207, 0.3);
  transition: all 0.4s ease;
  pointer-events: none;
}
.btn-trace:hover::before { border-color: var(--cream); box-shadow: inset 0 0 24px rgba(236, 225, 207, 0.06); }

/* ============================================================
   Hero — full-bleed cinematic
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  width: 100%;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  animation: heroZoom 8s ease-out forwards;
}
.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,17,13,0.35) 0%, rgba(20,17,13,0.12) 42%, rgba(20,17,13,0.78) 100%);
}
.hero-inner {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 24px 96px;
}
.hero-content { max-width: 900px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: var(--widest);
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 26px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}
.hero-eyebrow .divider { width: 34px; height: 1px; background: rgba(255,255,255,0.55); }
.hero-title {
  font-size: clamp(2.9rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 0.98;
  color: #fff;
  margin-bottom: 34px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
.hero-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s ease 0.68s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s ease 0.85s forwards;
}
.hero-actions .btn-primary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.hero-actions .btn-primary:hover { background: rgba(255,255,255,0.2); border-color: #fff; }
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.hero-actions .btn-outline:hover { background: #fff; color: var(--bg); border-color: #fff; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  z-index: 11;
  animation: cueBob 2.2s ease-in-out infinite;
}
.scroll-cue span { font-size: 0.6rem; letter-spacing: var(--wider); text-transform: uppercase; }
.scroll-cue svg { width: 16px; height: 16px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
@keyframes cueBob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }
@media (max-width: 700px) { .scroll-cue { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-eyebrow, .hero-title, .hero-subtitle, .hero-actions { animation: none; opacity: 1; }
  .scroll-cue { animation: none; }
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip {
  background: var(--bg-soft);
  color: var(--cream);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 34px 40px;
  border-bottom: 1px solid var(--border-soft);
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: transform 0.4s ease;
}
.trust-item:hover { transform: translateY(-3px); }
.trust-icon { color: var(--gold-soft); line-height: 1; flex-shrink: 0; display: inline-flex; }
.trust-icon svg { width: 26px; height: 26px; }
.trust-item strong {
  display: block; font-family: var(--sans); font-weight: 500; letter-spacing: 0.02em;
  font-size: 0.82rem; text-transform: uppercase; color: var(--cream);
}
.trust-item div span { font-size: 0.76rem; color: var(--muted-fg); text-transform: none; letter-spacing: normal; }

/* ============================================================
   Sections
   ============================================================ */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 110px 40px;
}
.section-alt { max-width: none; background: var(--bg-soft); }
/* Listing pages: the compact page-hero already provides the heading —
   pull the grid up so products are visible without scrolling. */
.page-hero + .section { padding-top: 40px; }
.section-alt > * { max-width: 1320px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  color: var(--muted-fg);
  letter-spacing: var(--wider);
  text-transform: uppercase;
  font-size: 0.68rem;
  margin-bottom: 16px;
}
.section-title { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--cream); font-weight: 600; }
.section-desc { color: var(--muted-fg); max-width: 580px; margin-top: 14px; font-weight: 300; }
.section-head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

/* ============================================================
   Collection cards — editorial tiles
   ============================================================ */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--muted);
}
.collection-media, .collection-media img { width: 100%; height: 100%; }
.collection-media img { object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.collection-card:hover .collection-media img { transform: scale(1.06); }
.collection-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(15,12,9,0.82) 0%, rgba(15,12,9,0.12) 55%, transparent);
  color: #fff;
}
.collection-count {
  align-self: flex-start;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: var(--wide);
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 14px;
  backdrop-filter: blur(2px);
}
.collection-overlay h3 { font-size: 1.7rem; margin-bottom: 8px; font-weight: 600; }
.collection-cta {
  color: #fff;
  font-size: 0.64rem;
  letter-spacing: var(--wide);
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s, letter-spacing 0.3s;
}
.collection-card:hover .collection-cta { opacity: 1; letter-spacing: 0.24em; }

/* ============================================================
   Product cards — image-forward editorial
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px 20px;
}
.product-card {
  position: relative;
  background: transparent;
  display: flex;
  flex-direction: column;
}
.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--muted);
}
.card-media-link { display: block; width: 100%; height: 100%; }
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .card-media img { transform: scale(1.05); }
.card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,12,9,0);
  transition: background 0.5s ease;
}
.product-card:hover .card-media::after { background: rgba(15,12,9,0.12); }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  border-radius: 0;
  font-size: 0.58rem;
  letter-spacing: var(--wide);
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(20,17,13,0.9);
  color: var(--cream);
  z-index: 3;
}
.badge-sale { background: var(--danger); color: #fff; }
.badge-new { background: var(--gold); color: var(--bg); }
.badge-bestseller { background: var(--olive); color: var(--cream); }
.badge-out { background: rgba(20,17,13,0.9); color: var(--muted-fg); left: auto; right: 14px; }

/* Slide-up buy button on hover */
.card-buy-slot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px;
  padding-right: 60px;
  transform: translateY(105%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 4;
}
.product-card:hover .card-buy-slot { transform: translateY(0); }
.card-buy-slot .btn-buy { margin-top: 0; }

/* Quick-view corner button */
.card-quick {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--cream);
  border: 1px solid var(--border);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s, background 0.25s, color 0.25s;
}
.product-card:hover .card-quick { opacity: 1; }
.card-quick:hover { background: var(--cream); color: var(--bg); }

.card-body {
  padding: 16px 2px 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-title { font-family: var(--sans); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.01em; color: var(--cream); line-height: 1.4; }
.card-title a:hover { color: var(--gold-soft); }
.card-sub { font-size: 0.78rem; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.12em; }

/* Wishlist heart */
.wishlist-toggle {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: rgba(20,17,13,0.78);
  color: var(--cream);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background 0.25s, color 0.25s;
  z-index: 6;
}
.product-card:hover .wishlist-toggle,
.wishlist-toggle.active,
.wishlist-toggle-lg { opacity: 1; }
.wishlist-toggle:hover { background: var(--cream); color: var(--bg); }
.wishlist-toggle.active { color: var(--gold); }
.wishlist-toggle.active svg { fill: currentColor; }
.wishlist-toggle-lg { top: 16px; right: 16px; width: 44px; height: 44px; }

/* Touch devices have no hover — keep order controls visible so the
   WhatsApp buy flow never depends on a hover state. */
@media (hover: none) {
  .card-buy-slot { transform: none; padding-right: 12px; }
  .wishlist-toggle { opacity: 1; }
  .card-quick { display: none; }
  .card-media::after { display: none; }
}

/* ============================================================
   Editorial (Our Craft) — parallax feel
   ============================================================ */
.editorial {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial-media { overflow: hidden; }
.editorial-media img { width: 100%; aspect-ratio: 4 / 4.8; object-fit: cover; transition: transform 0.9s ease; }
.editorial-media:hover img { transform: scale(1.04); }
.editorial-content .section-eyebrow { color: var(--gold-soft); }
.editorial-content h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin: 14px 0 22px; }
.editorial-content p { color: var(--muted-fg); margin-bottom: 34px; line-height: 1.85; font-weight: 300; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-section { background: var(--bg-soft); max-width: none; }
.testimonials-section > * { max-width: 1320px; margin-left: auto; margin-right: auto; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  padding: 36px;
}
.testimonial-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 18px; font-size: 0.9rem; }
.testimonial-stars .dim { color: var(--border); }
.testimonial-quote { color: var(--cream); font-family: var(--serif); font-style: italic; font-size: 1.2rem; line-height: 1.55; margin-bottom: 26px; }
.testimonial-person { display: flex; align-items: center; gap: 13px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-avatar-initial {
  display: grid; place-items: center;
  background: var(--olive); color: var(--cream);
  font-family: var(--serif); font-weight: 600;
}
.testimonial-person div { display: flex; flex-direction: column; }
.testimonial-person strong { color: var(--cream); font-family: var(--sans); font-weight: 500; font-size: 0.86rem; }
.testimonial-person span { color: var(--muted-fg); font-size: 0.78rem; }

/* ============================================================
   Visit Our Boutique
   ============================================================ */
.visit-band { background: var(--bg); border-top: 1px solid var(--border-soft); }
.visit-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.visit-content .section-eyebrow { color: var(--gold-soft); }
.visit-content h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin: 14px 0 22px; }
.visit-address { margin-bottom: 16px; color: var(--cream-dim); }
.visit-hours { color: var(--muted-fg); font-size: 0.92rem; margin-bottom: 34px; line-height: 1.8; }
.visit-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.visit-map { overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3.2; border: 1px solid var(--border); }
.visit-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05) brightness(0.85); }

/* ============================================================
   Instagram strip
   ============================================================ */
.instagram-handle { display: inline-block; margin-top: 10px; color: var(--gold-soft); font-size: 0.82rem; letter-spacing: 0.06em; }
.instagram-handle:hover { text-decoration: underline; }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.instagram-tile { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: var(--muted); }
.instagram-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.instagram-overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(15,12,9,0.5); color: #fff;
  opacity: 0; transition: opacity 0.3s;
}
.instagram-tile:hover img { transform: scale(1.08); }
.instagram-tile:hover .instagram-overlay { opacity: 1; }

/* ============================================================
   Page hero / breadcrumb / toolbar
   ============================================================ */
.page-hero {
  text-align: center;
  padding: 52px 24px 40px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero .section-eyebrow { color: var(--gold-soft); margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin-top: 4px; }
.page-hero-desc { color: var(--muted-fg); max-width: 660px; margin: 12px auto 0; font-weight: 300; font-size: 0.95rem; }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--muted-fg); margin-top: 16px; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { margin: 0 8px; color: var(--gold); }
.results-count { color: var(--muted-fg); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}
.sort-bar { display: flex; gap: 8px; }
.sort-pill {
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 0.62rem;
  letter-spacing: var(--wide);
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.sort-pill:hover { border-color: var(--cream); color: var(--cream); }
.sort-pill.active { background: var(--cream); border-color: var(--cream); color: var(--bg); }

/* ============================================================
   Recently viewed
   ============================================================ */
.recently-viewed { display: none; margin-top: 90px; padding-top: 48px; border-top: 1px solid var(--border-soft); }
.recently-viewed.has-items { display: block; }
.recently-viewed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; margin-top: 20px; }
.recently-viewed-item { display: block; }
.recently-viewed-item img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; margin-bottom: 10px; transition: transform 0.4s; }
.recently-viewed-item:hover img { transform: scale(1.04); }
.recently-viewed-item span { font-size: 0.8rem; color: var(--cream-dim); }

/* ---------- Wishlist page ---------- */
.wishlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 26px; }
.wishlist-item { position: relative; }
.wishlist-item-media { display: block; aspect-ratio: 3 / 4; overflow: hidden; background: var(--muted); }
.wishlist-item-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.wishlist-item:hover .wishlist-item-media img { transform: scale(1.05); }
.wishlist-item-remove {
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: rgba(20, 17, 13, 0.75);
  color: var(--cream);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.wishlist-item-remove:hover { background: var(--gold); color: var(--bg); }
.wishlist-item-title { margin-top: 12px; font-size: 0.95rem; font-weight: 500; }
.wishlist-item-title a:hover { color: var(--gold-soft); }

/* ============================================================
   Product page
   ============================================================ */
.product-page .breadcrumb { margin: 0 0 34px; text-align: left; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.gallery-main { position: relative; overflow: hidden; background: var(--muted); aspect-ratio: 3 / 4; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumb {
  width: 84px;
  border: 1px solid transparent;
  border-radius: 0;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: var(--muted);
  opacity: 0.6;
  transition: opacity 0.25s, border-color 0.25s;
}
.thumb img { aspect-ratio: 1; object-fit: cover; }
.thumb:hover { opacity: 1; }
.thumb.active { border-color: var(--gold); opacity: 1; }
.product-collection a { color: var(--gold-soft); letter-spacing: var(--wide); text-transform: uppercase; font-size: 0.68rem; }
.product-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin: 12px 0 30px; }
.product-desc { margin-bottom: 34px; }
.product-desc h4 { font-family: var(--sans); font-size: 0.66rem; letter-spacing: var(--wide); text-transform: uppercase; color: var(--gold-soft); margin-bottom: 12px; }
.product-desc p { color: var(--muted-fg); white-space: pre-line; line-height: 1.85; font-weight: 300; }
.buy-note { font-size: 0.8rem; color: var(--muted-fg); margin-top: 14px; }
.product-perks {
  list-style: none;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--border-soft);
  display: grid;
  gap: 10px;
  color: var(--muted-fg);
  font-size: 0.9rem;
}
.related { margin-top: 100px; }

/* ============================================================
   Empty state
   ============================================================ */
.empty-state { text-align: center; padding: 80px 24px; max-width: 480px; margin: 0 auto; }
.empty-icon { color: var(--gold); font-size: 2.4rem; margin-bottom: 14px; }
.empty-state h3 { font-size: 1.8rem; color: var(--cream); margin-bottom: 12px; }
.empty-state p { color: var(--muted-fg); margin-bottom: 28px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--bg-soft); color: var(--muted-fg); border-top: 1px solid var(--border-soft); }
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 40px 56px;
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1.1fr 1.1fr;
  gap: 56px;
}
.footer-brand { margin-bottom: 18px; }
.footer-brand .brand-name { color: var(--cream); }
.footer-about p { font-size: 0.88rem; line-height: 1.8; font-weight: 300; max-width: 320px; }
.footer-col h4 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: var(--wide);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; font-size: 0.88rem; }
.footer-col ul a { color: var(--muted-fg); transition: color 0.25s; }
.footer-col ul a:hover { color: var(--cream); }
.contact-list li { display: flex; gap: 13px; align-items: center; }
.ci {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 0.85rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.contact-list li:hover .ci { background: var(--cream); color: var(--bg); border-color: var(--cream); }
.footer-order p { font-size: 0.86rem; margin-bottom: 22px; line-height: 1.8; font-weight: 300; }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-links a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cream-dim);
  transition: 0.25s;
}
.social-links a:hover { background: var(--cream); color: var(--bg); border-color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  text-align: center;
  padding: 26px 24px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 34px rgba(0,0,0,0.5);
  z-index: 90;
  transition: transform 0.3s, background 0.3s;
}
.whatsapp-float:hover { transform: scale(1.08); background: var(--gold-bright); }

/* ============================================================
   Cinematic loader (homepage, once per session)
   ============================================================ */
.cinematic-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
  /* Fail-open: if JS never removes the loader (blocked/errored), this
     animation slides it away anyway. JS removes the element at 4.2s,
     before the 5.2s fallback ever fires. */
  animation: loaderAutoExit 1s cubic-bezier(0.76, 0, 0.24, 1) 5.2s forwards;
}
.cinematic-loader.done { transform: translateY(-100%); }
@keyframes loaderAutoExit { to { transform: translateY(-100%); visibility: hidden; } }
.loader-brand {
  display: flex;
  align-items: baseline;
  gap: 18px;
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  animation: loaderIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.loader-star {
  color: var(--gold);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  line-height: 1;
}
.loader-mark {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 9vw, 5.2rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.loader-tagline {
  margin-top: 26px;
  font-size: 0.72rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(236, 225, 207, 0.5);
  padding-left: 0.6em;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.2s forwards;
}
/* Shimmer phase — sweeps the whole screen starting at 1.8s, grags-style */
.loader-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(110deg, transparent 33%, rgba(207,159,77,0.3) 50%, transparent 67%);
  background-size: 300% 100%;
  animation: fadeIn 0.5s ease 1.8s forwards, shimmer 2.5s ease-in-out 1.8s infinite;
}
@keyframes loaderIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) {
  /* JS removes the loader immediately for these users; hiding it in CSS
     too means it never flashes even if JS is slow or absent. */
  .cinematic-loader { display: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .header-inner { padding: 16px 24px; }
  .main-nav { gap: 20px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 22px; padding: 30px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 44px; }
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .editorial { grid-template-columns: 1fr; gap: 44px; padding: 80px 24px; }
  .editorial-media img { aspect-ratio: 16 / 10; }
  .visit-inner { grid-template-columns: 1fr; gap: 44px; padding: 80px 24px; }
  .visit-map { aspect-ratio: 16 / 10; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 80px 24px; }
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: min(340px, 86vw);
    background: var(--bg-soft);
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-y: auto;
    gap: 6px;
    padding: 100px 30px 30px;
    margin: 0;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
    z-index: 110;
    box-shadow: 0 0 80px rgba(0,0,0,0.5);
    visibility: hidden;
    border-right: 1px solid var(--border);
  }
  body.nav-open .main-nav { transform: none; visibility: visible; }
  body.nav-open .site-header { z-index: 120; }
  body.nav-open .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 105;
  }
  body.nav-open { overflow: hidden; }
  .main-nav a { font-size: 0.9rem; padding: 12px 0; letter-spacing: 0.14em; }
  .header-whatsapp span { display: none; }
  .header-whatsapp { padding: 10px; border-radius: 50%; }
  .section-head-split { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item { justify-content: flex-start; }
  .brand-name { font-size: 1.25rem; }
  .section { padding: 64px 18px; }
  .editorial, .visit-inner { padding: 60px 18px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-actions { flex-direction: column; align-items: stretch; }
  .header-inner { padding: 14px 18px; }
  .hero-inner { padding-bottom: 72px; }
}
