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

:root {
  --cream:      #faf9f7;
  --cream-warm: #f3ede5;
  --white:      #ffffff;
  --ink:        #111110;
  --ink-soft:   #292925;
  --muted:      #7c7c74;
  --line:       rgba(0,0,0,0.09);
  --line-mid:   rgba(0,0,0,0.15);
  --gold:       #c49a3c;
  --gold-dark:  #a07c2a;
  --gold-soft:  #e8cc80;
  --gold-dim:   rgba(196,154,60,0.10);
  --dark:       #0f0f0c;
  --dark-soft:  #1b1b18;
  --danger:     #be3a3a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Poppins', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow:    0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --r-sm: 4px;
  --r:    8px;
  --r-lg: 14px;
  --r-full: 999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --sidebar-w: 480px;
  --px: clamp(20px, 5.5vw, 88px);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }
.store-shell { min-height: 100vh; overflow-x: clip; }

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────── */
.announcement {
  background: var(--dark);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}
.announcement-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.announcement span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,204,128,0.82);
}
.announcement span i { color: var(--gold-soft); font-size: 10px; }
.ann-sep { color: rgba(255,255,255,0.18); }

/* ── HEADER ─────────────────────────────────────────────────── */
.store-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 var(--px);
  height: 68px;
  background: rgba(250,249,247,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.store-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.brand-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.header-logo {
  width: min(150px, 38vw);
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.store-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold-dark); background: var(--gold-dim); }

/* ── NAV DROPDOWN ──────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-has-dropdown { cursor: default; }
.nav-caret {
  font-size: 9px;
  transition: transform 0.22s var(--ease);
  opacity: 0.55;
}
.nav-dropdown:hover .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 210px;
  padding: 8px;
  background: var(--dark);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 9999;
}
/* bridge gap so hover doesn't break between trigger and menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-item:first-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 4px;
  padding-bottom: 12px;
  color: rgba(255,255,255,0.9);
}
.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.08);
  color: var(--gold-soft);
}
.nav-dropdown-item i {
  font-size: 11px;
  width: 14px;
  text-align: center;
  color: var(--gold);
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
}

.header-icon-btn {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  font-size: 17px;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease;
  text-decoration: none;
}
.header-icon-btn:hover { border-color: var(--gold); color: var(--gold-dark); }

.cart-trigger {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--dark);
  color: var(--cream);
  font-size: 17px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cart-trigger:hover { background: var(--dark-soft); transform: translateY(-1px); }
.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  display: grid;
  place-items: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: var(--r-full);
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  border: 2px solid var(--cream);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 24px;
  border: 1.5px solid var(--dark);
  border-radius: var(--r);
  background: var(--dark);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.store-button i { font-size: 0.88em; }
.store-button:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.store-button:active { transform: translateY(0); box-shadow: none; }
.store-button:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.store-button.gold { border-color: var(--gold); background: var(--gold); color: var(--dark); }
.store-button.gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.store-button.outline { background: transparent; border-color: var(--dark); color: var(--dark); }
.store-button.outline:hover { background: var(--dark); color: var(--cream); }
.store-button.light { border-color: var(--cream); background: var(--cream); color: var(--dark); }
.store-button.glass { border-color: rgba(255,255,255,0.36); background: rgba(255,255,255,0.08); color: var(--cream); backdrop-filter: blur(8px); }
.store-button.secondary { border-color: var(--line-mid); background: var(--white); color: var(--ink-soft); }
.store-button.secondary:hover { border-color: var(--gold); color: var(--gold-dark); }
.store-button.w-full { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.18s ease;
}
.text-link:hover { color: var(--gold-dark); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero-luxury {
  position: relative;
  min-height: min(820px, calc(100svh - 68px));
  display: grid;
  align-items: center;
  padding: clamp(60px,8vw,110px) var(--px);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,9,8,0.78) 0%, rgba(10,9,8,0.44) 48%, rgba(10,9,8,0.06) 80%),
    linear-gradient(180deg, rgba(10,9,8,0.10), rgba(10,9,8,0.24));
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  width: min(100%, 660px);
  color: var(--cream);
}
.hero-content > * { will-change: transform; }

.eyebrow {
  margin: 0;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-eyebrow {
  margin: 0;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--gold-dark); }

.hero-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(80px, 13vw, 148px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.hero-content h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
}
.hero-content > p:not(.eyebrow):not(.hero-eyebrow) {
  margin: 0;
  color: rgba(250,249,247,0.82);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
  max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── SECTION TYPOGRAPHY ─────────────────────────────────────── */
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title em { font-style: italic; font-weight: 300; color: var(--gold-dark); }

/* ── CATEGORIES ─────────────────────────────────────────────── */
.categories-section {
  padding: 56px var(--px) 0;
  background: var(--cream);
}
.categories-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.categories-header .section-title { font-size: clamp(28px, 3.6vw, 46px); }

.cat-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 20px;
  border: 1px solid var(--line-mid);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  will-change: transform;
}
.cat-pill:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-dim); }
.cat-pill.active { background: var(--dark); border-color: var(--dark); color: var(--cream); }

/* ── EDITORIAL BAND ─────────────────────────────────────────── */
.editorial-band {
  padding: 72px var(--px);
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.editorial-band .eyebrow { color: var(--gold-dark); margin-bottom: 16px; }
.editorial-band .section-title {
  font-size: clamp(26px, 3.6vw, 46px);
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.feature-card {
  display: grid;
  gap: 10px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  text-align: left;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  will-change: transform;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-card > i,
.feature-icon > i { color: var(--gold); font-size: 20px; }
.feature-card strong { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

/* ── PRODUCTS SECTION ───────────────────────────────────────── */
.products-section {
  padding: 72px var(--px) 88px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 36px;
}
.section-head > div { display: flex; flex-direction: column; gap: 6px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* ── PRODUCT CARD ───────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: none;
  transition: box-shadow 0.28s var(--ease), transform 0.28s var(--ease);
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-warm);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.05); }
.product-media.logo-fallback img {
  width: 52%;
  height: auto;
  object-fit: contain;
  opacity: 0.64;
  margin: auto;
  position: absolute;
  inset: 0;
}

/* Cover link — makes whole card clickable; CTA floats above via z-index */
.card-cover-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-add-form { position: relative; z-index: 2; }
.product-body  { position: relative; z-index: 2; }

/* Card overlay action */
.card-overlay-action {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(10,9,8,0.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.product-card:hover .card-overlay-action { opacity: 1; }

.quick-add-btn {
  width: 100%;
  height: 44px;
  background: rgba(250,249,247,0.97);
  color: var(--ink);
  border: none;
  border-radius: var(--r-full);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.quick-add-btn:hover { background: var(--white); transform: scale(1.01); }
.quick-add-btn:disabled {
  background: rgba(200,196,190,0.8);
  color: var(--muted);
  cursor: not-allowed;
}

/* Card badges */
.badge-low {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 10px;
  background: var(--danger);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-out {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.88);
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-category {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(250,249,247,0.92);
  color: var(--ink-soft);
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

/* Card body */
.product-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-cat-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.product-stock-note {
  font-size: 11.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-stock-note.low { color: var(--danger); }

/* card-add-form sits inside product-media, no display of its own */
.card-add-form { display: contents; }

/* ── CART CALLOUT TOOLTIP ───────────────────────────────────── */
.cart-callout {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 300px;
  background: var(--dark);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  animation: calloutIn 0.28s var(--ease);
}
.cart-callout::before {
  content: '';
  position: absolute;
  top: -5px; right: 64px;
  width: 10px; height: 10px;
  background: var(--dark);
  transform: rotate(45deg);
  border-radius: 2px;
}
@keyframes calloutIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.callout-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.callout-header i { color: #4caf50; font-size: 16px; flex-shrink: 0; }
.callout-header strong { font-size: 14px; font-weight: 700; display: block; }
.callout-header p { font-size: 12.5px; color: rgba(250,249,247,0.65); margin: 0; }
.callout-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.callout-btn {
  height: 38px;
  border-radius: var(--r-sm);
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.callout-btn:hover { opacity: 0.85; }
.callout-btn.primary { background: var(--gold); color: var(--dark); }
.callout-btn.ghost { background: rgba(255,255,255,0.10); color: rgba(250,249,247,0.88); }
.cart-callout.hidden { display: none; }

/* ── LOOKBOOK ───────────────────────────────────────────────── */
.lookbook {
  display: grid;
  grid-template-columns: minmax(0,0.75fr) minmax(0,1.25fr);
  gap: 28px;
  align-items: center;
  padding: 80px var(--px);
  background: var(--dark);
  color: var(--cream);
}
.lookbook-copy { display: grid; gap: 18px; }
.lookbook-copy .section-title { color: var(--cream); font-size: clamp(28px, 4vw, 52px); }
.lookbook-copy .section-title em { color: var(--gold-soft); }
.lookbook-copy .eyebrow { color: var(--gold-soft); }
.lookbook-copy p { margin: 0; color: rgba(250,249,247,0.65); font-size: 15px; line-height: 1.65; }

.mini-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.mini-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  color: var(--cream);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.mini-card:hover { border-color: rgba(196,154,60,0.44); background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.mini-card-img { aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; background: rgba(243,237,229,0.10); }
.mini-card-img img { width: 100%; height: 100%; object-fit: cover; }
.mini-card-name { font-size: 12.5px; line-height: 1.35; }
.mini-card-price { font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--gold-soft); }

/* ── EMPTY STATE ────────────────────────────────────────────── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.empty-state.luxe-empty {
  background: linear-gradient(145deg, rgba(243,237,229,0.7), var(--white));
}
.empty-icon { font-size: 40px; color: var(--gold); margin-bottom: 4px; }
.empty-state h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}
.empty-state p { margin: 0; color: var(--muted); }

/* ── STORE NOTICE ───────────────────────────────────────────── */
.store-notice {
  margin: 0 var(--px) 16px;
  padding: 13px 16px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}
.store-notice.error { background: #fff0f0; border: 1px solid #e4a0a0; color: #842727; }
.store-notice.info { background: #fff8e6; border: 1px solid #e6bc5e; color: #6d4a11; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.store-footer {
  background: linear-gradient(170deg, #181816, #0d0d0b);
  color: rgba(250,249,247,0.65);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px var(--px) 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  width: min(170px, 50%);
  height: auto;
  max-height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.78);
}
.footer-brand p {
  margin: 0;
  color: rgba(250,249,247,0.48);
  font-size: 13px;
  line-height: 1.65;
  max-width: 260px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(250,249,247,0.62);
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-soft); background: rgba(196,154,60,0.08); }

.footer-col h4 {
  margin: 0 0 18px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,249,247,0.36);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(250,249,247,0.65);
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-col ul li a:hover { color: var(--gold-soft); }

.footer-trust-list { display: flex; flex-direction: column; gap: 10px; }
.footer-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(250,249,247,0.55);
  font-size: 13px;
}
.footer-trust-list li i { color: var(--gold); font-size: 12px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px var(--px);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(250,249,247,0.32);
}
.footer-bottom-badges { display: flex; gap: 18px; }
.footer-bottom-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(250,249,247,0.36);
  font-size: 11.5px;
}
.footer-bottom-badges span i { color: var(--gold-soft); }

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 24px; bottom: 28px;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 16px 42px rgba(37,211,102,0.34);
  text-decoration: none;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float::before, .whatsapp-float::after {
  content: '';
  position: absolute; inset: -9px;
  z-index: -1;
  border: 1px solid rgba(37,211,102,0.4);
  border-radius: 50%;
  animation: waPulse 2.2s ease-out infinite;
}
.whatsapp-float::after { animation-delay: 0.8s; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 22px 56px rgba(37,211,102,0.42); }
@keyframes waPulse {
  0%   { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ── CART SIDEBAR ───────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,9,7,0.48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 130;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(var(--sidebar-w), 100vw);
  z-index: 140;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 72px rgba(0,0,0,0.18);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
  will-change: transform;
}
.cart-sidebar.open { transform: translateX(0); }

.cart-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  background: var(--cream);
}
.cart-sidebar-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}
.cart-sidebar-head span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 3px;
}
.cart-close-btn {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink-soft);
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
  flex-shrink: 0;
}
.cart-close-btn:hover { border-color: var(--danger); color: var(--danger); background: rgba(190,58,58,0.06); }

.cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
}
.cart-sidebar-body::-webkit-scrollbar { width: 4px; }
.cart-sidebar-body::-webkit-scrollbar-track { background: transparent; }
.cart-sidebar-body::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.sidebar-items { padding: 14px 26px; display: flex; flex-direction: column; gap: 0; }

.sidebar-item {
  display: grid;
  grid-template-columns: 72px minmax(0,1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  animation: fadeSlideIn 0.28s var(--ease);
}
.sidebar-item:last-child { border-bottom: none; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}

.sidebar-item-img {
  width: 72px; height: 72px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--cream-warm);
  flex-shrink: 0;
}
.sidebar-item-img img { width: 100%; height: 100%; object-fit: cover; }

.sidebar-item-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.sidebar-item-sku { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); }
.sidebar-item-name { font-size: 14px; font-weight: 600; line-height: 1.3; color: var(--ink); }
.sidebar-item-price { font-size: 13px; color: var(--muted); margin-top: 1px; }

.sidebar-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.sidebar-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-mid);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--white);
}
.s-qty-btn {
  width: 28px; height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  color: var(--muted);
  display: grid;
  place-items: center;
  transition: color 0.15s ease, background 0.15s ease;
}
.s-qty-btn:hover { color: var(--gold-dark); background: var(--gold-dim); }
.s-qty-val {
  width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
}
.sidebar-item-total { font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink); }
.sidebar-remove {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.15s ease;
}
.sidebar-remove:hover { color: var(--danger); }

.sidebar-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 24px;
  text-align: center;
}
.sidebar-empty i { font-size: 44px; color: var(--gold); opacity: 0.5; }
.sidebar-empty p { margin: 0; font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--ink-soft); }
.sidebar-empty small { color: var(--muted); font-size: 13px; }

.cart-sidebar-foot {
  padding: 20px 26px 28px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sidebar-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.sidebar-subtotal strong { font-family: var(--sans); font-size: 22px; font-weight: 700; color: var(--ink); }
.sidebar-shipping {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.sidebar-shipping i { color: var(--gold-dark); }

.sidebar-checkout-form { display: flex; flex-direction: column; gap: 10px; }
.sidebar-checkout-form input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line-mid);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.18s ease;
  outline: none;
}
.sidebar-checkout-form input:focus { border-color: var(--gold); }
.sidebar-checkout-form input::placeholder { color: var(--muted); }
.sidebar-pay-btn { min-height: 50px; font-size: 15px; }

.sidebar-trust { display: flex; flex-direction: column; gap: 6px; }
.sidebar-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.sidebar-trust i { color: var(--gold-dark); font-size: 11px; }

/* ── CART PAGE ──────────────────────────────────────────────── */
.store-main {
  padding: 48px var(--px) 72px;
}
.store-main.compact { padding-top: 22px; padding-bottom: 0; }

.checkout-hero { display: grid; gap: 10px; max-width: 820px; margin-bottom: 32px; }
.checkout-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
}
.checkout-hero p { margin: 0; color: var(--muted); }

.cart-layout { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(320px,0.65fr); gap: 24px; align-items: start; }

.store-panel {
  padding: clamp(18px,3vw,28px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  will-change: transform;
}
.panel-title-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 20px;
}
.panel-title-row h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.cart-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 88px minmax(0,1fr) 90px 110px;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
}
.cart-item img { width: 88px; aspect-ratio: 1; border-radius: var(--r-sm); object-fit: cover; background: var(--cream-warm); }
.cart-item div { display: grid; gap: 4px; }
.cart-item strong { font-size: 15px; line-height: 1.25; }
.item-kicker { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); }
.cart-item small { color: var(--muted); font-size: 13px; }
.cart-item label { display: grid; gap: 5px; color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; }
.cart-item input { width: 100%; min-height: 40px; border: 1px solid var(--line-mid); border-radius: var(--r-sm); padding: 8px 10px; background: var(--white); }
.item-total { justify-self: end; font-family: var(--sans); font-size: 18px; font-weight: 600; }

.cart-summary { position: sticky; top: 90px; display: grid; gap: 14px; }
.cart-summary h2 { margin: 0; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.summary-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 14px; }
.summary-row strong { color: var(--ink); font-weight: 600; }
.summary-row.total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.summary-row.total strong { font-family: var(--sans); font-size: 22px; font-weight: 700; }

.checkout-form { display: grid; gap: 11px; margin-top: 6px; }
.checkout-form input, .checkout-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid var(--line-mid);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s ease;
}
.checkout-form input:focus, .checkout-form textarea:focus { border-color: var(--gold); }
.checkout-form textarea { resize: vertical; min-height: 80px; }

.trust-list { display: grid; gap: 9px; padding-top: 4px; }
.trust-list span { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 13px; font-weight: 500; }
.trust-list i { margin-top: 2px; color: var(--gold-dark); flex-shrink: 0; }

.notice { margin-bottom: 16px; padding: 13px 15px; border-radius: var(--r-sm); font-size: 14px; }
.notice.error { border: 1px solid #e4a0a0; background: #fff0f0; color: #842727; }

/* ── GSAP HINTS ─────────────────────────────────────────────── */
.gsap-ready .hero-image,
.gsap-ready .hero-content > *,
.gsap-ready .product-card,
.gsap-ready .feature-card,
.gsap-ready .cat-pill,
.gsap-ready .store-panel { will-change: transform; }

/* ── CART BADGE PULSE ───────────────────────────────────────── */
@keyframes badgePulse {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.45); }
  65%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.cart-badge.pulse { animation: badgePulse 0.42s cubic-bezier(0.34,1.56,0.64,1); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 1080px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 40px; }
}

@media (max-width: 980px) {
  .editorial-band { padding: 56px var(--px); }
  .lookbook { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mini-products { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 768px) {
  .store-header { padding: 0 20px; height: 58px; }
  .store-nav { display: none; }
  .header-logo { max-height: 38px; }

  .hero-luxury {
    min-height: min(580px, calc(100svh - 58px));
    align-items: flex-end;
    padding: 40px 20px 52px;
  }
  .hero-content { gap: 16px; }

  .categories-section { padding: 40px 20px 0; }
  .editorial-band { padding: 48px 20px; text-align: left; }
  .editorial-band .section-title { margin-left: 0; margin-right: 0; }
  .products-section { padding: 48px 20px 56px; }
  .lookbook { padding: 56px 20px; }

  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }

  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px 20px; }
  .footer-bottom-badges { flex-wrap: wrap; }

  .cart-sidebar { width: 100vw; }
  .cart-item { grid-template-columns: 72px minmax(0,1fr); }
  .item-total { display: none; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .mini-products { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature-grid { grid-template-columns: 1fr; }
}

/* ── PRODUCT DETAIL PAGE (produto.php) ─────────────────────── */
.pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px var(--px) 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.pdp-breadcrumb a { color: var(--muted); transition: color 0.2s; }
.pdp-breadcrumb a:hover { color: var(--gold); }
.bc-sep { font-size: 10px; opacity: 0.5; }
.bc-current { color: var(--ink); font-weight: 600; }

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 40px var(--px) 64px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

/* Gallery */
.pdp-gallery { position: sticky; top: 88px; }
.pdp-main-wrap {
  position: relative;
  background: var(--cream-warm);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.pdp-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s var(--ease);
}
.pdp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}
.pdp-badge.low { background: #fff3cd; color: #7a5c00; }
.pdp-badge.out { background: #f8d7da; color: #6b1a1a; }

.pdp-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pdp-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--r);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s;
  background: var(--cream-warm);
  flex-shrink: 0;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb:hover,
.pdp-thumb.active { border-color: var(--gold); }

/* Info */
.pdp-info { display: flex; flex-direction: column; gap: 20px; }

.pdp-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--gold-dim);
  color: var(--gold-dark);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  width: fit-content;
}
.pdp-cat-pill:hover { background: rgba(196,154,60,0.18); }

.pdp-name {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  margin: 0;
}

.pdp-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pdp-price {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--ink);
}
.pdp-compare {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
}
.pdp-discount-badge {
  background: #d4edda;
  color: #155724;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
  letter-spacing: 0.06em;
}

.pdp-free-ship {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0;
}

.pdp-short-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* Add to cart */
.pdp-add-form { display: flex; flex-direction: column; gap: 14px; }
.pdp-qty-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.pdp-qty-row { display: flex; flex-direction: column; }
.pdp-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line-mid);
  border-radius: var(--r);
  overflow: hidden;
  width: fit-content;
}
.pdp-qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-qty-btn:hover { background: var(--cream-warm); }
.pdp-qty-input {
  width: 56px;
  height: 44px;
  border: none;
  border-left: 1.5px solid var(--line-mid);
  border-right: 1.5px solid var(--line-mid);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.pdp-qty-input::-webkit-outer-spin-button,
.pdp-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.pdp-add-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.pdp-wa-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 14px;
  color: #1a7c3e;
  border-color: #1a7c3e;
}
.pdp-wa-btn:hover { background: #1a7c3e; color: white; }

.pdp-stock-note {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.pdp-stock-note.low { color: #a0700a; }

/* Meta table */
.pdp-meta {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.pdp-meta-label { color: var(--muted); font-weight: 500; }
.pdp-meta-val { font-weight: 600; color: var(--ink); }
.pdp-meta-val.in-stock { color: #1a7c3e; }
.pdp-meta-val.out-stock { color: var(--danger); }

/* Trust */
.pdp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.pdp-trust span { display: flex; align-items: center; gap: 6px; }
.pdp-trust i { color: var(--gold); }

/* Full description */
.pdp-full-desc {
  background: var(--cream-warm);
  padding: 56px var(--px);
}
.pdp-full-desc-inner {
  max-width: 760px;
  margin: 0 auto;
}
.pdp-full-desc h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  margin: 0 0 24px;
  color: var(--ink);
}
.pdp-desc-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* Related section */
.related-section {
  padding: 64px var(--px);
}
.product-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.product-name a:hover { color: var(--gold-dark); }
.product-media-link { display: block; }

@media (max-width: 900px) {
  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px var(--px) 48px;
  }
  .pdp-gallery { position: static; }
}
@media (max-width: 600px) {
  .pdp-thumbs .pdp-thumb { width: 60px; height: 60px; }
  .pdp-trust { gap: 6px 12px; }
}
