/* ==========================================================================
   SEIA — Luxury Jewellery
   Design System & Global Stylesheet
   Fonts: Cormorant (display) + Montserrat (body)
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --ink: #1c1917;
  --ink-soft: #44403c;
  --ink-mute: #78716c;
  --line: #e9e3da;
  --line-soft: #f1ece4;
  --bg: #fbf9f6;
  --bg-alt: #f5f1ea;
  --bg-deep: #16130f;
  --paper: #ffffff;

  /* Gold accent system */
  --gold: #c5a368;
  --gold-soft: #d8c39a;
  --gold-deep: #a07c3f;
  --gold-wash: #f3ecdd;

  /* Feedback */
  --sale: #a8443a;
  --success: #5b7257;

  /* Typography */
  --font-display: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Fluid type scale */
  --fs-hero: clamp(2.75rem, 6vw, 5.5rem);
  --fs-h1: clamp(2.25rem, 4.5vw, 3.75rem);
  --fs-h2: clamp(1.9rem, 3.4vw, 2.9rem);
  --fs-h3: clamp(1.4rem, 2.2vw, 1.85rem);
  --fs-eyebrow: 0.72rem;

  /* Spacing */
  --container: 1320px;
  --container-wide: 1600px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-y: clamp(2.25rem, 4.5vw, 4rem);

  /* Radius & shadow */
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 6px 20px rgba(28, 25, 23, 0.06);
  --shadow-md: 0 18px 50px rgba(28, 25, 23, 0.1);
  --shadow-lg: 0 30px 80px rgba(28, 25, 23, 0.16);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.5s;

  /* Layering */
  --z-header: 100;
  --z-drawer: 200;
  --z-overlay: 190;
  --z-modal: 300;
  --z-toast: 400;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: 0.01em;
}

::selection { background: var(--gold); color: #fff; }

:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   3. Layout Helpers
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--container-wide); }
.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-deep); color: #d9d2c7; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.75rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 0.75rem; }
.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   4. Typography Utilities
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.eyebrow--center::after { content: ""; width: 28px; height: 1px; background: var(--gold); }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { font-size: var(--fs-h2); margin-top: 0.6rem; }
.section-sub { margin-top: 0.9rem; color: var(--ink-mute); font-weight: 300; }

.lead { font-size: 1.125rem; font-weight: 300; color: var(--ink-soft); }

.serif-italic { font-family: var(--font-display); font-style: italic; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2.1rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform var(--dur) var(--ease);
  z-index: -1;
}
.btn:hover { color: #fff; border-color: var(--gold); }
.btn:hover::before { transform: translateY(0); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: #fff; }
.btn--gold::before { background: var(--ink); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--ink); }
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { color: #fff; }

.btn--light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,0.5); }
.btn--light::before { background: #fff; }
.btn--light:hover { color: var(--ink); border-color: #fff; }

.btn--sm { padding: 0.75rem 1.5rem; }
.btn--block { display: flex; width: 100%; }

/* Text link with animated underline */
.link-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 3px;
}
.link-line::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.link-line:hover { color: var(--gold-deep); }
.link-line:hover::after { transform: scaleX(0); transform-origin: left; }
.link-line svg { transition: transform var(--dur) var(--ease); }
.link-line:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   6. Announcement Bar
   -------------------------------------------------------------------------- */
.announce {
  background: var(--bg-deep);
  color: #cbb285;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.announce__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  height: 42px;
  overflow: hidden;
  white-space: nowrap;
}
.announce__item { display: inline-flex; align-items: center; gap: 0.6rem; }
.announce__item svg { width: 15px; height: 15px; color: var(--gold); }

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(251, 249, 246, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.header.is-stuck { border-color: var(--line); box-shadow: var(--shadow-sm); }

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 86px;
}
.nav__menu { display: flex; align-items: center; gap: 2.1rem; }
.nav__menu--right { justify-self: end; }

.brand {
  justify-self: center;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-align: center;
  color: var(--ink);
}
.brand small { display: block; font-family: var(--font-body); font-size: 0.5rem; letter-spacing: 0.5em; text-indent: 0.5em; color: var(--gold-deep); text-align: center; margin-top: -2px; }

.nav__link {
  position: relative;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.4rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link .caret { width: 9px; height: 9px; opacity: 0.6; transition: transform var(--dur) var(--ease); }

.nav__actions { display: flex; align-items: center; gap: 1.25rem; }
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn:hover { color: var(--gold-deep); }
.icon-btn__badge {
  position: absolute;
  top: 2px; right: 0;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  display: grid; place-items: center;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  color: #fff;
  background: var(--gold);
  border-radius: 999px;
}

.nav__toggle { display: none; }

/* Mega menu */
.has-mega { position: static; }
.mega {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: clamp(2rem, 4vw, 3rem) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  z-index: 5;
}
.has-mega:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.has-mega:hover .caret { transform: rotate(180deg); }
.mega__inner { display: grid; grid-template-columns: repeat(4, 1fr) 1.3fr; gap: 2.5rem; }
.mega__col h5 { font-family: var(--font-body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1.1rem; }
.mega__col a { display: block; font-size: 0.9rem; color: var(--ink-soft); padding: 0.4rem 0; transition: color var(--dur) var(--ease), padding var(--dur) var(--ease); }
.mega__col a:hover { color: var(--ink); padding-left: 6px; }
.mega__promo { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 240px; }
.mega__promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.mega__promo:hover img { transform: scale(1.06); }
.mega__promo-cap { position: absolute; left: 0; bottom: 0; padding: 1.4rem; background: linear-gradient(transparent, rgba(0,0,0,0.65)); color: #fff; width: 100%; }
.mega__promo-cap span { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); }
.mega__promo-cap h4 { color: #fff; font-size: 1.4rem; margin-top: 0.25rem; }

/* --------------------------------------------------------------------------
   8. Hero Carousel
   -------------------------------------------------------------------------- */
.hero { position: relative; }
.hero__viewport { position: relative; height: clamp(560px, 88vh, 880px); overflow: hidden; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease-soft), visibility 1s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,10,8,0.82) 0%, rgba(12,10,8,0.6) 40%, rgba(12,10,8,0.32) 72%, rgba(12,10,8,0.2) 100%); }
.hero__slide.align-center .hero__media::after { background: linear-gradient(180deg, rgba(12,10,8,0.45) 0%, rgba(12,10,8,0.35) 45%, rgba(12,10,8,0.7) 100%); }

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  color: #fff;
}
.hero__slide.align-center .hero__content { max-width: 760px; margin-inline: auto; text-align: center; align-items: center; }
.hero__eyebrow { color: var(--gold-soft); }
.hero__eyebrow::before { background: var(--gold-soft); }
.hero__title { font-size: var(--fs-hero); color: #fff; margin: 1.1rem 0 1.4rem; font-weight: 500; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.hero__title em { font-style: italic; color: var(--gold-soft); }
.hero__text { font-size: 1.1rem; font-weight: 400; color: rgba(255,255,255,0.94); max-width: 480px; margin-bottom: 2.2rem; text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
.hero__eyebrow { text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero animated reveal */
.hero__slide.is-active .anim { animation: heroUp 0.9s var(--ease) both; }
.hero__slide.is-active .anim-1 { animation-delay: 0.25s; }
.hero__slide.is-active .anim-2 { animation-delay: 0.4s; }
.hero__slide.is-active .anim-3 { animation-delay: 0.55s; }
.hero__slide.is-active .anim-4 { animation-delay: 0.7s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.hero__nav {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__arrow {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  transition: all var(--dur) var(--ease);
}
.hero__arrow:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero__arrow svg { width: 18px; height: 18px; }
.hero__dots { position: absolute; z-index: 3; bottom: 2.4rem; left: var(--gutter); display: flex; gap: 0.6rem; }
.hero__dot { width: 34px; height: 3px; background: rgba(255,255,255,0.35); border-radius: 2px; overflow: hidden; }
.hero__dot.is-active { background: rgba(255,255,255,0.35); }
.hero__dot span { display: block; height: 100%; width: 0; background: var(--gold-soft); }
.hero__dot.is-active span { width: 100%; transition: width 6s linear; }

/* --------------------------------------------------------------------------
   9. Trust Bar
   -------------------------------------------------------------------------- */
.trust { border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem clamp(1rem, 2vw, 2rem);
  border-left: 1px solid var(--line);
}
.trust__item:first-child { border-left: none; }
.trust__item svg { width: 34px; height: 34px; color: var(--gold-deep); flex-shrink: 0; stroke-width: 1.2; }
.trust__item h4 { font-family: var(--font-body); font-size: 0.84rem; font-weight: 600; letter-spacing: 0.06em; color: var(--ink); text-transform: uppercase; }
.trust__item p { font-size: 0.8rem; color: var(--ink-mute); }

/* --------------------------------------------------------------------------
   10. Product Card
   -------------------------------------------------------------------------- */
.product { position: relative; }
.product__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.1rem;
}
.product__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.7s var(--ease), transform 1.2s var(--ease);
}
.product__media .product__img--back { opacity: 0; }
.product:hover .product__img--front { opacity: 0; }
.product:hover .product__img--back { opacity: 1; transform: scale(1.05); }

.product__badges { position: absolute; top: 1rem; left: 1rem; z-index: 2; display: flex; flex-direction: column; gap: 0.4rem; }
.badge {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  background: var(--ink);
  color: #fff;
}
.badge--sale { background: var(--sale); }
.badge--new { background: var(--gold); }
.badge--soft { background: #fff; color: var(--ink); border: 1px solid var(--line); }

.product__actions {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product__act {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateX(12px);
  transition: all var(--dur) var(--ease);
}
.product__act svg { width: 18px; height: 18px; }
.product__act:hover { background: var(--gold); color: #fff; }
.product:hover .product__act { opacity: 1; transform: translateX(0); }
.product:hover .product__act:nth-child(2) { transition-delay: 0.05s; }
.product:hover .product__act:nth-child(3) { transition-delay: 0.1s; }

.product__cart {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px);
  transition: all var(--dur) var(--ease);
}
.product:hover .product__cart { opacity: 1; transform: translateY(0); }

.product__cat { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.product__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; margin: 0.2rem 0 0.4rem; color: var(--ink); transition: color var(--dur) var(--ease); }
.product:hover .product__name { color: var(--gold-deep); }
.product__price { display: flex; align-items: center; gap: 0.6rem; font-size: 0.98rem; }
.product__price .now { font-weight: 600; color: var(--ink); }
.product__price .was { color: var(--ink-mute); text-decoration: line-through; font-size: 0.86rem; }

.product__rating { display: inline-flex; gap: 1px; margin-top: 0.4rem; color: var(--gold); }
.product__rating svg { width: 14px; height: 14px; }

/* Stock progress (selling fast) */
.product__stock { margin-top: 0.6rem; }
.product__stock-bar { height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; }
.product__stock-bar span { display: block; height: 100%; background: var(--sale); }
.product__stock small { display: block; margin-top: 0.35rem; font-size: 0.68rem; color: var(--ink-mute); }

/* --------------------------------------------------------------------------
   11. Collection Cards
   -------------------------------------------------------------------------- */
.collection {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.collection img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.collection::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(16,13,10,0.7)); }
.collection:hover img { transform: scale(1.07); }
.collection__cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 1.8rem; color: #fff; width: 100%; }
.collection__cap span { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); }
.collection__cap h3 { color: #fff; font-size: 1.7rem; margin: 0.3rem 0 0.6rem; }
.collection__cap .link-line { color: #fff; }
.collection__cap .link-line::after { background: var(--gold-soft); }
.collection--wide { aspect-ratio: 16 / 9; }
.collection--tall { aspect-ratio: 3 / 4; }

/* --------------------------------------------------------------------------
   12. Promo Banner
   -------------------------------------------------------------------------- */
.promo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: clamp(380px, 50vw, 520px);
  display: flex;
  align-items: center;
}
.promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,13,10,0.6), transparent 65%); }
.promo__body { position: relative; z-index: 2; color: #fff; padding: clamp(2rem, 5vw, 4.5rem); max-width: 560px; }
.promo__body h2 { color: #fff; font-size: var(--fs-h1); margin: 0.8rem 0 1rem; }
.promo__body p { color: rgba(255,255,255,0.82); font-weight: 300; margin-bottom: 1.8rem; }
.promo__discount { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--gold-soft); }

/* --------------------------------------------------------------------------
   13. Carousel rail (horizontal scroll for products)
   -------------------------------------------------------------------------- */
.rail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(2rem, 4vw, 3rem); flex-wrap: wrap; }
.rail-nav { display: flex; gap: 0.6rem; }
.rail-arrow {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  transition: all var(--dur) var(--ease);
}
.rail-arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.rail-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.rail-arrow svg { width: 18px; height: 18px; }

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }

/* --------------------------------------------------------------------------
   14. Shop the Look
   -------------------------------------------------------------------------- */
.look { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 560px; }
.look img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.look__dot {
  position: absolute;
  z-index: 3;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  display: grid; place-items: center;
}
.look__dot::before { content: ""; width: 9px; height: 9px; border-radius: 999px; background: var(--gold); }
.look__dot::after { content: ""; position: absolute; inset: 0; border-radius: 999px; border: 2px solid rgba(255,255,255,0.6); animation: pulse 2.2s var(--ease-soft) infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2.2); opacity: 0; } }
.look__tip {
  position: absolute;
  z-index: 4;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 200px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.9rem;
  display: flex;
  gap: 0.7rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
}
.look__dot:hover .look__tip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.look__tip img { position: static; width: 52px; height: 64px; object-fit: cover; border-radius: 2px; }
.look__tip h5 { font-family: var(--font-display); font-size: 1rem; }
.look__tip span { font-size: 0.82rem; font-weight: 600; color: var(--gold-deep); }

/* --------------------------------------------------------------------------
   15. Testimonials
   -------------------------------------------------------------------------- */
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.review:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold-soft); }
.review__stars { display: inline-flex; gap: 2px; color: var(--gold); }
.review__stars svg { width: 16px; height: 16px; }
.review__quote { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.4; color: var(--ink); font-weight: 500; }
.review__author { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.review__author img { width: 46px; height: 46px; border-radius: 999px; object-fit: cover; }
.review__author strong { display: block; font-size: 0.9rem; color: var(--ink); }
.review__author span { font-size: 0.78rem; color: var(--ink-mute); }
.review__verified { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.7rem; color: var(--success); }
.review__verified svg { width: 13px; height: 13px; }

/* --------------------------------------------------------------------------
   16. Marquee
   -------------------------------------------------------------------------- */
.marquee { overflow: hidden; padding-block: clamp(2rem, 4vw, 3rem); border-block: 1px solid var(--line); }
.marquee__track { display: flex; gap: 3.5rem; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee__item { display: inline-flex; align-items: center; gap: 1.2rem; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.6rem); color: var(--ink); }
.marquee__item svg { width: 22px; height: 22px; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   17. Editorial / Story split
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--offset { aspect-ratio: 3/4; }
.split__badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  width: 140px; height: 140px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-display);
  line-height: 1.1;
}
.split__badge strong { font-size: 2.4rem; font-weight: 600; }
.split__badge span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; font-family: var(--font-body); }
.stat-row { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--ink); line-height: 1; }
.stat span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }

/* --------------------------------------------------------------------------
   18. Newsletter
   -------------------------------------------------------------------------- */
.newsletter { position: relative; overflow: hidden; }
.newsletter__inner { position: relative; z-index: 2; text-align: center; max-width: 620px; margin-inline: auto; }
.newsletter h2 { color: #fff; font-size: var(--fs-h1); }
.newsletter p { color: rgba(255,255,255,0.7); margin: 1rem 0 2rem; font-weight: 300; }
.newsletter__form { display: flex; gap: 0.6rem; max-width: 480px; margin-inline: auto; }
.newsletter__form input {
  flex: 1;
  padding: 1rem 1.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  color: #fff;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter__form input:focus { outline: none; border-color: var(--gold-soft); }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--bg-deep); color: #a8a09440; padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__brand .brand { color: #fff; justify-self: start; display: inline-block; text-align: left; text-indent: 0; }
.footer__brand .brand small { text-align: left; text-indent: 0; }
.footer__brand p { color: #9c948a; font-weight: 300; margin: 1.4rem 0; max-width: 320px; }
.footer__social { display: flex; gap: 0.7rem; }
.footer__social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; color: #cbb285; transition: all var(--dur) var(--ease); }
.footer__social a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.footer__social svg { width: 17px; height: 17px; }
.footer__col h5 { font-family: var(--font-body); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.3rem; }
.footer__col a { display: block; color: #9c948a; font-size: 0.9rem; padding: 0.4rem 0; transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease); }
.footer__col a:hover { color: var(--gold-soft); padding-left: 5px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.8rem; flex-wrap: wrap; }
.footer__bottom p { color: #79716a; font-size: 0.82rem; }
.footer__pay { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.footer__pay span { width: 44px; height: 28px; border: 1px solid rgba(255,255,255,0.14); border-radius: 4px; display: grid; place-items: center; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.05em; color: #cbb285; }
.footer__pay .pay { width: 46px; height: 30px; background: #fff; border: none; border-radius: 5px; display: grid; place-items: center; padding: 0 6px; overflow: hidden; }
.footer__pay .pay svg { width: 100%; height: auto; max-height: 17px; display: block; }

/* --------------------------------------------------------------------------
   20. Cart Drawer / Search / Overlay
   -------------------------------------------------------------------------- */
.overlay {
  position: fixed; inset: 0;
  background: rgba(16,13,10,0.5);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur);
  z-index: var(--z-overlay);
}
.overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--bg);
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.6rem 1.8rem; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 1.4rem; }
.drawer__close { width: 40px; height: 40px; display: grid; place-items: center; color: var(--ink); transition: transform var(--dur) var(--ease); }
.drawer__close:hover { transform: rotate(90deg); }
.drawer__close svg { width: 22px; height: 22px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 1.4rem 1.8rem; }
.drawer__foot { border-top: 1px solid var(--line); padding: 1.6rem 1.8rem; background: var(--paper); }

.cart-item { display: grid; grid-template-columns: 78px 1fr auto; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 78px; height: 96px; object-fit: cover; border-radius: var(--radius); }
.cart-item h4 { font-family: var(--font-display); font-size: 1.1rem; }
.cart-item .meta { font-size: 0.78rem; color: var(--ink-mute); }
.cart-item .price { font-weight: 600; color: var(--ink); margin-top: 0.3rem; font-size: 0.9rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; margin-top: 0.5rem; }
.qty button { width: 28px; height: 28px; display: grid; place-items: center; color: var(--ink-soft); }
.qty span { width: 28px; text-align: center; font-size: 0.84rem; font-weight: 600; }
.cart-item__remove { font-size: 0.72rem; color: var(--ink-mute); text-decoration: underline; align-self: start; }
.cart-item__remove:hover { color: var(--sale); }

.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.1rem; }
.cart-total span { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.cart-total strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--ink); }
.cart-ship { font-size: 0.78rem; color: var(--ink-mute); text-align: center; margin-top: 0.9rem; }
.cart-progress { height: 5px; background: var(--line); border-radius: 3px; overflow: hidden; margin: 0.6rem 0 0.4rem; }
.cart-progress span { display: block; height: 100%; background: var(--gold); transition: width 0.6s var(--ease); }

.cart-empty { text-align: center; padding: 3rem 0; color: var(--ink-mute); }
.cart-empty svg { width: 48px; height: 48px; color: var(--line); margin-bottom: 1rem; }

/* Search panel */
.search-panel {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--bg);
  z-index: var(--z-drawer);
  padding: clamp(2rem, 5vw, 4rem) 0;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
  box-shadow: var(--shadow-lg);
}
.search-panel.is-open { transform: translateY(0); }
.search-panel form { display: flex; align-items: center; gap: 1rem; border-bottom: 2px solid var(--ink); padding-bottom: 1rem; }
.search-panel input { flex: 1; font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.5rem); border: none; background: none; color: var(--ink); }
.search-panel input:focus { outline: none; }
.search-panel svg { width: 28px; height: 28px; color: var(--ink); }
.search-suggest { margin-top: 1.6rem; display: flex; gap: 0.7rem; flex-wrap: wrap; align-items: center; }
.search-suggest span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.search-suggest a { font-size: 0.84rem; padding: 0.4rem 1rem; border: 1px solid var(--line); border-radius: 999px; transition: all var(--dur) var(--ease); }
.search-suggest a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translate(-50%, 120%);
  z-index: var(--z-toast);
  background: var(--ink);
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease);
}
.toast.is-open { transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--gold-soft); }

/* --------------------------------------------------------------------------
   21. Mobile Nav
   -------------------------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(360px, 88%);
  background: var(--bg);
  z-index: var(--z-drawer);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--line); }
.mobile-nav__body { padding: 1rem 1.6rem; overflow-y: auto; }
.mobile-nav a { display: block; font-family: var(--font-display); font-size: 1.5rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line-soft); color: var(--ink); }
.mobile-nav__foot { margin-top: auto; padding: 1.6rem; border-top: 1px solid var(--line); display: flex; gap: 1rem; }

/* --------------------------------------------------------------------------
   22. Scroll Reveal
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   23. Page header (inner pages)
   -------------------------------------------------------------------------- */
.page-hero { background: var(--bg-alt); padding-block: clamp(3rem, 6vw, 5rem); text-align: center; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: var(--fs-h1); }
.breadcrumb { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 0.9rem; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb svg { width: 12px; height: 12px; }

/* Shop toolbar & filters */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.filter h4 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; }
.filter-group { padding-block: 1.6rem; border-bottom: 1px solid var(--line); }
.filter-group:first-child { padding-top: 0; }
.filter-list a { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--ink-soft); padding: 0.35rem 0; }
.filter-list a span { color: var(--ink-mute); font-size: 0.8rem; }
.filter-list a:hover { color: var(--gold-deep); }
.swatches { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.swatch { width: 30px; height: 30px; border-radius: 999px; border: 1px solid var(--line); cursor: pointer; transition: transform var(--dur) var(--ease); }
.swatch:hover { transform: scale(1.12); }
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.toolbar select { padding: 0.6rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink); font-size: 0.84rem; }
.toolbar__count { font-size: 0.84rem; color: var(--ink-mute); }

/* Product detail */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.pdp__gallery { display: grid; grid-template-columns: 84px 1fr; gap: 1rem; }
.pdp__thumbs { display: flex; flex-direction: column; gap: 0.8rem; }
.pdp__thumb { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); cursor: pointer; opacity: 0.6; transition: opacity var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumb.is-active, .pdp__thumb:hover { opacity: 1; border-color: var(--gold); }
.pdp__main { aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-alt); }
.pdp__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp__info h1 { font-size: var(--fs-h2); margin: 0.5rem 0; }
.pdp__price { display: flex; align-items: center; gap: 0.8rem; font-size: 1.5rem; margin: 1rem 0; }
.pdp__price .now { font-weight: 600; color: var(--ink); }
.pdp__price .was { color: var(--ink-mute); text-decoration: line-through; font-size: 1.1rem; }
.pdp__desc { color: var(--ink-soft); font-weight: 300; margin: 1.4rem 0; padding-block: 1.4rem; border-block: 1px solid var(--line); }
.pdp__opt { margin: 1.4rem 0; }
.pdp__opt-label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.7rem; display: flex; gap: 0.5rem; }
.pdp__opt-label span { color: var(--ink-mute); font-weight: 400; }
.size-opts { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.size-opt { min-width: 46px; padding: 0.6rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius); font-size: 0.84rem; text-align: center; cursor: pointer; transition: all var(--dur) var(--ease); }
.size-opt:hover, .size-opt.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.pdp__buy { display: flex; gap: 0.8rem; margin: 1.8rem 0; }
.pdp__buy .qty { margin-top: 0; height: 54px; }
.pdp__buy .qty button { width: 44px; height: 100%; }
.pdp__meta { font-size: 0.84rem; color: var(--ink-mute); display: grid; gap: 0.5rem; }
.pdp__meta strong { color: var(--ink-soft); }
.pdp__assure { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.8rem; }
.pdp__assure div { text-align: center; padding: 1.1rem 0.5rem; border: 1px solid var(--line); border-radius: var(--radius); }
.pdp__assure svg { width: 24px; height: 24px; color: var(--gold-deep); margin-bottom: 0.4rem; }
.pdp__assure p { font-size: 0.72rem; color: var(--ink-mute); }

/* Contact / forms */
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.5rem; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color var(--dur) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 150px; resize: vertical; }
.info-card { display: flex; gap: 1rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }
.info-card svg { width: 26px; height: 26px; color: var(--gold-deep); flex-shrink: 0; }
.info-card h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.info-card p { font-size: 0.88rem; color: var(--ink-mute); }

/* Values grid (about) */
.value { text-align: center; padding: 2rem 1rem; }
.value svg { width: 40px; height: 40px; color: var(--gold-deep); stroke-width: 1.2; margin-bottom: 1rem; }
.value h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.value p { font-size: 0.9rem; color: var(--ink-mute); }

/* --------------------------------------------------------------------------
   24. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .mega__inner { grid-template-columns: repeat(3, 1fr); }
  .mega__promo { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter { display: none; }
}
@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; height: 72px; }
  .nav__menu--left { display: none; }
  .nav__toggle { display: grid; place-items: center; width: 42px; height: 42px; color: var(--ink); }
  .nav__toggle svg { width: 24px; height: 24px; }
  .brand { justify-self: start; font-size: 1.5rem; }
  .nav__actions { gap: 0.5rem; }
  .icon-btn--hide-sm { display: none; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(3) { border-left: none; }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .announce__item--hide { display: none; }
}
@media (max-width: 680px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: 1fr; }
  .cols-2 { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__item { border-left: none; border-bottom: 1px solid var(--line); }
  .hero__content { max-width: 100%; }
  .hero__dots { display: none; }
  .hero__viewport { height: clamp(480px, 80vh, 640px); }
  .hero__actions { width: 100%; }
  .footer__top { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; }
  .stat-row { gap: 1.5rem; }
  .pdp__gallery { grid-template-columns: 1fr; }
  .pdp__thumbs { flex-direction: row; order: 2; }
  .pdp__thumb { width: 70px; }
  /* Announcement bar: allow it to fit instead of clipping */
  .announce { font-size: 0.62rem; }
  .announce__track { white-space: normal; height: auto; min-height: 38px; padding-block: 0.5rem; gap: 1rem; text-align: center; line-height: 1.4; }
  .announce__item { letter-spacing: 0.08em; }
  /* Testimonials / editorial cards read better full-width */
  .review { padding: 1.5rem; }
  .review__quote { font-size: 1.15rem; line-height: 1.45; }
  .promo__body { max-width: 100%; }
  .look { min-height: 420px; }
}

/* Touch devices have no hover — reveal product actions & add-to-cart so they're usable */
@media (hover: none) {
  .product__act { opacity: 1; transform: none; }
  .product__cart { opacity: 1; transform: none; }
  .product__img--back { opacity: 0 !important; }
  .product__media .product__img--front { opacity: 1 !important; }
}

/* --------------------------------------------------------------------------
   25. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
