/* ==========================================================================
   Gentle Monster Jennie — Redesign
   Direction: Dark Mode Premium (gallery-lit eyewear, champagne-gold accents)
   Pure CSS, mobile-first, zero external requests. Fonts = system stacks.
   ========================================================================== */

:root {
  /* palette */
  --bg:            #0b0b0d;
  --bg-2:          #111114;
  --surface:       #16161a;
  --surface-2:     #1c1c22;
  --line:          #2a2a31;
  --line-soft:     #232329;
  --ink:           #f4f1ea;      /* primary text (warm ivory) */
  --ink-soft:      #b9b4aa;      /* secondary text */
  --ink-dim:       #86817a;      /* tertiary / captions */
  --gold:          #e8c88a;      /* champagne gold accent */
  --gold-strong:   #d8b26a;
  --gold-ink:      #1a1408;      /* text on gold */
  --glow:          rgba(232, 200, 138, 0.16);
  --ok:            #7bd389;

  /* type */
  --serif: "Cormorant Garamond", "Hoefler Text", "Iowan Old Style", Palatino, Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono:  ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* scale */
  --container: 1240px;
  --gap: clamp(16px, 4vw, 28px);
  --radius: 14px;
  --radius-sm: 9px;
  --radius-pill: 999px;
  --shadow: 0 18px 44px -20px rgba(0,0,0,0.75);
  --shadow-lift: 0 26px 60px -24px rgba(0,0,0,0.85);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 40px);
}

/* subtle top-of-page gold horizon glow */
body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 60vh;
  background: radial-gradient(120% 70% at 50% -10%, var(--glow), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
}
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Header
   ========================================================================== */
.rd-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.rd-header.scrolled {
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  border-bottom-color: var(--line);
}
.rd-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand .logo-icon { flex-shrink: 0; filter: drop-shadow(0 0 10px var(--glow)); }
.brand:hover { color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  list-style: none;
}
.nav-menu a {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  transition: color .2s var(--ease);
  position: relative;
}
.nav-menu a:not(.shop-now-header):not(.cart-link)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-menu a:not(.shop-now-header):not(.cart-link):hover { color: var(--ink); }
.nav-menu a:not(.shop-now-header):not(.cart-link):hover::after { width: 100%; }

.shop-now-header {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: var(--gold-ink) !important;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px -10px var(--gold);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.shop-now-header:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -10px var(--gold); }

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}
.cart-link svg path { fill: currentColor; }
.cart-link:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: -8px; right: -10px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  background: var(--gold);
  color: var(--gold-ink);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
}

/* hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 18px clamp(16px,5vw,40px) 26px;
    transform: translateY(-12px);
    opacity: 0; visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 12px 0; width: 100%; font-size: 15px; }
  .nav-menu .shop-now-header { display: inline-block; width: auto; margin-top: 8px; }
  .nav-menu .cart-item { margin-top: 4px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  text-align: center;
  line-height: 1.1;
  min-height: 46px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: var(--gold-ink);
  box-shadow: 0 12px 30px -14px var(--gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -14px var(--gold); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* ==========================================================================
   Section framing
   ========================================================================== */
.section { padding: clamp(52px, 9vw, 104px) 0; }
.section-tight { padding: clamp(36px, 6vw, 64px) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(28px, 5vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 17px; }

.rule { height: 1px; background: var(--line); border: 0; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 8.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero-title .accent { color: var(--gold); font-style: italic; }
.hero-lead { color: var(--ink-soft); font-size: clamp(16px, 2vw, 19px); max-width: 46ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 30px;
  margin-top: 38px; padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-stats .stat b { font-family: var(--serif); font-size: 28px; color: var(--gold); display: block; line-height: 1; }
.hero-stats .stat span { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); }

.hero-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(90% 70% at 70% 20%, rgba(232,200,138,0.20), transparent 60%),
    linear-gradient(160deg, #17171c, #0d0d10);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .glowring {
  position: absolute; inset: -30% -10% auto auto; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--glow), transparent 65%);
  filter: blur(6px); pointer-events: none;
}
.hero-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 16px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-media { aspect-ratio: 16/12; max-height: 60vh; order: -1; }
}

/* ==========================================================================
   Marquee (trust strip)
   ========================================================================== */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--serif); font-size: 18px; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 48px; white-space: nowrap;
}
.marquee-track span::after { content: "◆"; color: var(--gold); font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ==========================================================================
   Product grid (index)
   ========================================================================== */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; align-items: center;
  margin-bottom: 28px;
}
.filter-bar .filter-label { margin-right: auto; color: var(--ink-dim); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.filter-dropdown {
  appearance: none; -webkit-appearance: none;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 11px 40px 11px 18px;
  font-size: 14px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23e8c88a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.filter-dropdown:hover { border-color: var(--gold); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.4vw, 26px);
}
@media (max-width: 1024px){ .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px){ .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.product-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--gold) 55%, var(--line));
  box-shadow: var(--shadow-lift);
}
.product-card .image-wrapper {
  position: relative;
  aspect-ratio: 1;
  background:
    radial-gradient(80% 60% at 50% 30%, rgba(232,200,138,0.10), transparent 62%),
    linear-gradient(180deg, #1b1b20, #131317);
  overflow: hidden;
  cursor: pointer;
}
.product-card .primary-img,
.product-card .secondary-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; padding: 14%;
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}
.product-card .secondary-img { opacity: 0; }
.product-card:hover .secondary-img { opacity: 1; transform: scale(1.05); }
.product-card:hover .primary-img { opacity: 0; }

.card-flag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: color-mix(in srgb, var(--bg) 66%, transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius-pill); font-weight: 600;
}

.product-info { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-info .product-name {
  font-family: var(--serif); font-weight: 600; font-size: 21px; line-height: 1.15; letter-spacing: 0;
}
.product-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-item {
  font-size: 11px; letter-spacing: 0.06em; color: var(--gold);
  border: 1px solid color-mix(in srgb, var(--gold) 35%, var(--line));
  padding: 3px 10px; border-radius: var(--radius-pill); text-transform: uppercase; background: rgba(232,200,138,0.05);
}
.product-price { font-family: var(--serif); font-size: 24px; color: var(--ink); font-weight: 600; }
.status-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2px; }
.badge-item { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-soft); }
.badge-item svg { flex-shrink: 0; }
.action-buttons { display: flex; gap: 10px; margin-top: auto; padding-top: 6px; }
.action-buttons .btn { flex: 1; padding: 12px 14px; font-size: 12px; min-height: 44px; }

/* ==========================================================================
   Feature cards / benefits / reviews
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--gold) 40%, var(--line)); }
.feature-card .fc-num { font-family: var(--serif); font-size: 15px; color: var(--gold); letter-spacing: 0.1em; }
.feature-card h3 { font-family: var(--serif); font-size: clamp(20px, 2.6vw, 25px); font-weight: 600; margin: 12px 0 12px; color: var(--ink); }
.feature-card p { color: var(--ink-soft); font-size: 15px; }
.feature-card .fc-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(232,200,138,0.10); border: 1px solid color-mix(in srgb, var(--gold) 30%, var(--line));
  margin-bottom: 6px;
}
.feature-card .fc-icon svg path { stroke: var(--gold); fill: var(--gold); }

/* frame cards (Jennie's Frames + related PDP grids) reuse .feature-card,
   with a text CTA anchored to the bottom */
.frame-card { display: flex; flex-direction: column; }
.frame-card p { flex: 1; }
.frame-link {
  display: inline-flex; align-items: flex-start; gap: 8px; flex-wrap: wrap;
  margin-top: 16px; align-self: flex-start; max-width: 100%;
  color: var(--gold); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  padding-bottom: 3px; line-height: 1.35; overflow-wrap: anywhere;
  transition: gap .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.frame-link svg { flex-shrink: 0; transition: transform .2s var(--ease); }
.frame-link:hover { border-bottom-color: var(--gold); }
.frame-link:hover svg { transform: translateX(3px); }

.review-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
}
.review-card .stars { color: var(--gold); letter-spacing: 3px; font-size: 16px; margin-bottom: 12px; }
.review-card p { color: var(--ink); font-size: 15.5px; font-style: italic; font-family: var(--serif); font-size: 19px; line-height: 1.5; }
.review-card .reviewer { margin-top: 16px; font-size: 13px; letter-spacing: 0.06em; color: var(--gold); text-transform: uppercase; }

/* AI assistant */
.ai-assistant {
  background:
    radial-gradient(60% 120% at 100% 0, rgba(232,200,138,0.08), transparent 55%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px);
}
.ai-buttons { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 22px; }
.ai-btn {
  display: flex; align-items: center; gap: 12px; text-align: left;
  padding: 16px 18px; border-radius: var(--radius-sm);
  background: var(--bg-2); color: var(--ink); border: 1px solid var(--line);
  font-size: 14px; cursor: pointer; transition: border-color .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
}
.ai-btn svg { flex-shrink: 0; color: var(--gold); }
.ai-btn:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--gold); }

/* ==========================================================================
   Long-form editorial / SEO content
   ========================================================================== */
.prose { max-width: 860px; }
.prose.wide { max-width: 1080px; }
.prose h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(24px, 3.6vw, 34px); line-height: 1.12; letter-spacing: -0.01em;
  margin: 46px 0 16px; color: var(--ink);
  padding-top: 8px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(19px, 2.4vw, 23px); margin: 32px 0 12px; color: var(--gold);
}
.prose p { color: var(--ink-soft); margin-bottom: 15px; font-size: 16px; line-height: 1.8; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: color-mix(in srgb, var(--gold) 45%, transparent); }
.prose a:hover { text-decoration-color: var(--gold); }
.prose ul, .prose ol { color: var(--ink-soft); margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; line-height: 1.7; }
.prose li::marker { color: var(--gold); }
.prose strong { color: var(--ink); }
.prose .lead { font-size: 18px; color: var(--ink); }

/* tables */
.table-scroll { overflow-x: auto; margin: 22px 0; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.prose table, table.data {
  width: 100%; min-width: 520px; border-collapse: collapse; background: var(--surface); font-size: 14px;
}
.prose table th, table.data th {
  background: var(--surface-2); color: var(--gold);
  text-align: left; padding: 13px 14px; font-weight: 600;
  letter-spacing: 0.04em; font-size: 12px; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.prose table td, table.data td {
  padding: 12px 14px; border-bottom: 1px solid var(--line-soft); color: var(--ink-soft); vertical-align: top;
}
.prose table tr:last-child td { border-bottom: none; }
.prose table tr:hover td { background: rgba(232,200,138,0.03); }

/* pull-callout used to break long copy */
.pull {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 22px;
  margin: 26px 0;
}
.pull p { color: var(--ink); font-family: var(--serif); font-size: clamp(20px, 3vw, 26px); line-height: 1.4; font-style: italic; }

/* author chip */
.author-chip {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 24px; margin-top: 8px;
}
.author-chip .av {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong)); color: var(--gold-ink);
  display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 20px;
}
.author-chip h3 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); font-weight: 600; margin-bottom: 2px; }
.author-chip a { color: var(--gold); font-family: var(--serif); font-size: 20px; }
.author-chip p { color: var(--ink-soft); font-size: 13px; }

/* ==========================================================================
   FAQ / Accordion (shared)
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item, .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}
.faq-item summary,
.faq-question,
.accordion-header,
.dropdown-header,
.info-header,
.info-panel > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; padding: 18px 20px;
  font-size: 15.5px; font-weight: 600; color: var(--ink); text-align: left;
  background: transparent; border: none;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.faq-item summary::-webkit-details-marker,
.info-panel > summary::-webkit-details-marker,
.dropdown-item > summary::-webkit-details-marker { display: none; }
.faq-question:hover, .accordion-header:hover, .faq-item summary:hover,
.dropdown-header:hover, .info-header:hover, .info-panel > summary:hover { color: var(--gold); }

.faq-arrow, .accordion-icon, .dropdown-icon, .chevron, .faq-chevron {
  flex-shrink: 0; transition: transform .3s var(--ease); color: var(--gold);
}
.faq-item[open] .faq-arrow, .faq-item[open] .faq-chevron,
.info-item[open] .chevron, .dropdown-item[open] .dropdown-icon,
.info-panel[open] summary svg,
.accordion-item.active .accordion-icon,
.faq-item.active .faq-arrow { transform: rotate(180deg); }

/* JS-driven (max-height) accordions */
.accordion-content, .faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
}
.accordion-item.active .accordion-content,
.faq-item.active .faq-answer { max-height: 900px; }
.accordion-content p, .faq-answer > p, .faq-answer { }
.accordion-item.active .accordion-content,
.faq-item.active .faq-answer { padding: 0; }
.accordion-content p, .faq-answer p {
  padding: 0 20px 18px; color: var(--ink-soft); font-size: 15px; line-height: 1.75; margin: 0;
}
.accordion-item.active .accordion-content p:first-child,
.faq-item.active .faq-answer p:first-child { padding-top: 2px; }

/* native <details> answers */
.info-content, .dropdown-content, .faq-item[open] > .faq-answer {
  padding: 0 20px 18px;
}
.info-content p, .dropdown-content p { color: var(--ink-soft); font-size: 15px; line-height: 1.75; margin-bottom: 10px; }
.info-content p:last-child, .dropdown-content p:last-child { margin-bottom: 0; }
.faq-item[open] > .faq-answer p { padding: 0 20px 18px; color: var(--ink-soft); font-size: 15px; line-height: 1.75; margin: 0; }
/* faq-answer inside details that hold a table */
.faq-item[open] > .faq-answer > p:first-child { padding-bottom: 8px; }

/* ==========================================================================
   Product detail page
   ========================================================================== */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--ink-dim); padding: 22px 0 6px; list-style: none;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--line); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "/"; color: var(--ink-dim); opacity: .6; }

.pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding: 20px 0 clamp(48px, 7vw, 88px);
}
@media (max-width: 900px){ .pdp-grid { grid-template-columns: 1fr; gap: 32px; } }

.pdp-gallery { position: sticky; top: 92px; }
@media (max-width: 900px){ .pdp-gallery { position: relative; top: 0; } }
.pdp-stage {
  position: relative; aspect-ratio: 1; border-radius: 20px; overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 28%, rgba(232,200,138,0.14), transparent 62%),
    linear-gradient(180deg, #1a1a20, #101014);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}
.pdp-stage img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.pdp-stage .secondary-image { position: absolute; inset: 0; opacity: 0; transition: opacity .5s var(--ease); }
.pdp-stage:hover .secondary-image { opacity: 0; } /* controlled via thumbs/JS; keep primary */
.pdp-thumbs { display: flex; gap: 12px; }
.pdp-thumbs img {
  width: 88px; height: 88px; object-fit: contain; padding: 8px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  transition: border-color .2s var(--ease); flex: 0 0 auto;
}
.pdp-thumbs img:hover { border-color: var(--gold-strong); }
.pdp-thumbs img.active, .pdp-thumbs img.active-thumb { border-color: var(--gold); }

.pdp-info { display: flex; flex-direction: column; }
.pdp-eyebrow { margin-bottom: 12px; }
.pdp-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 4.4vw, 42px); line-height: 1.06; letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.pdp-badges { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 22px; }
.pdp-badges .badge-stock, .pdp-badges .stock-badge { color: var(--ok); }
.pdp-badges .badge-auth, .pdp-badges .auth-badge { color: var(--gold); }
.pdp-badges span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; letter-spacing: 0.03em; }
.pdp-brief { color: var(--ink-soft); font-size: 16px; line-height: 1.8; margin-bottom: 26px; }

.price-box {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 22px; margin-bottom: 26px;
}
.price-box .price-label { color: var(--ink-dim); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.price-box .price-value { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--gold); }

.size-selector { margin-bottom: 24px; }
.size-label { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 12px; }
.size-options { display: flex; flex-wrap: wrap; gap: 10px; }
.size-options input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.size-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 52px; min-height: 46px; padding: 10px 16px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink-soft); cursor: pointer;
  font-size: 14px; font-weight: 600; transition: all .2s var(--ease);
}
.size-btn:hover { border-color: var(--gold-strong); color: var(--ink); }
.size-options input[type="radio"]:checked + .size-btn { background: var(--gold); color: var(--gold-ink); border-color: var(--gold); }

.add-to-cart-btn, .add-cart-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 17px; margin-bottom: 30px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: var(--gold-ink);
  border: none; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; text-align: center; min-height: 54px;
  box-shadow: 0 14px 34px -16px var(--gold);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.add-to-cart-btn:hover, .add-cart-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px var(--gold); }

/* spec panels */
.spec-panel { margin-bottom: 26px; }
.spec-panel > h3, .tech-specs > h3, .auth-block h3, .auth-section h3, .measurements-block h3,
.measurements-box h3, .tags-section h3, .tags-block h3 {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; font-weight: 700;
}
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table td { padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; color: var(--ink); }
.specs-table td:first-child { color: var(--ink-dim); width: 44%; }
.specs-grid { display: grid; gap: 10px; }
.spec-item { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.spec-item .spec-label { color: var(--ink-dim); }
.spec-item .spec-value { color: var(--ink); font-weight: 600; text-align: right; }
.specs-list { list-style: none; }
.specs-list li { display: flex; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; color: var(--ink); }
.specs-list li .spec-label { color: var(--ink-dim); }
.measure-table { width: 100%; border-collapse: collapse; }
.measure-table td { padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; color: var(--ink); }
.measure-table td:first-child { color: var(--ink-dim); }
.measure-table td:last-child { text-align: right; font-weight: 600; }

.auth-block, .auth-section { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 26px; }
.auth-block p, .auth-section p, .auth-text { color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

.measure-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 520px){ .measure-list { grid-template-columns: 1fr; } }
.measure-list li { font-size: 14px; color: var(--ink-soft); padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.measure-list li::before { content: "—"; color: var(--gold); margin-right: 8px; }

.tags-section .tag-list, .tags-block .tag-list, .tags-list { display: flex; flex-wrap: wrap; gap: 8px; }
.info-dropdowns, .accordion-section { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.rd-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(44px, 6vw, 72px) 0 26px;
  margin-top: clamp(48px, 8vw, 96px);
}
.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  margin-bottom: 40px;
}
@media (max-width: 760px){ .footer-content { grid-template-columns: 1fr; gap: 32px; text-align: left; } }
.footer-column h3 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 700; }
.footer-column p { color: var(--ink-soft); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-column p strong { color: var(--ink); }
.footer-column a { color: var(--ink-soft); transition: color .2s var(--ease); }
.footer-column a:hover { color: var(--gold); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 20px; color: var(--ink); margin-bottom: 14px; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.payment-icons img { height: 30px; width: auto; background: #fff; padding: 5px 6px; border-radius: 6px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; text-align: center; color: var(--ink-dim); font-size: 13px; }

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); }
.contact-item { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.contact-item:last-child { border-bottom: none; }
.contact-item h3 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 700; }
.contact-item p { color: var(--ink-soft); font-size: 15px; margin-bottom: 4px; }
.contact-item a { color: var(--ink); }
.contact-item a:hover { color: var(--gold); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 8px; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 13px 15px; color: var(--ink); font-size: 15px; font-family: inherit;
  transition: border-color .2s var(--ease);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23e8c88a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.submit-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong)); color: var(--gold-ink);
  border: none; border-radius: var(--radius-pill); padding: 15px 30px; font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; min-height: 50px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease); box-shadow: 0 12px 30px -14px var(--gold);
}
.submit-btn:hover { transform: translateY(-2px); }
.map-panel {
  margin-top: clamp(32px, 5vw, 56px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.map-placeholder {
  aspect-ratio: 21/8; min-height: 200px; display: grid; place-items: center;
  background:
    radial-gradient(70% 120% at 30% 20%, rgba(232,200,138,0.12), transparent 55%),
    repeating-linear-gradient(45deg, #131317 0 22px, #16161b 22px 44px);
  color: var(--gold); font-size: 15px; letter-spacing: 0.06em; text-align: center; padding: 20px;
}
.map-panel > p { padding: 20px 24px; color: var(--ink-soft); font-size: 15px; }

/* about values */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 28px; }
.value-item {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px; text-align: left;
}
.value-item .value-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(232,200,138,0.10); border: 1px solid color-mix(in srgb, var(--gold) 30%, var(--line)); margin-bottom: 16px;
}
.value-item .value-icon svg path { stroke: var(--gold); }
.value-item h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.value-item p { color: var(--ink-soft); font-size: 14px; }

/* generic hero for interior pages */
.page-hero { padding: clamp(48px, 8vw, 92px) 0 clamp(20px, 3vw, 36px); position: relative; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 7vw, 68px); line-height: 1.02; letter-spacing: -0.02em;
}
.page-hero p { color: var(--ink-soft); font-size: clamp(16px, 2vw, 19px); max-width: 60ch; margin-top: 16px; }
.updated-chip {
  display: inline-block; margin-bottom: 8px; font-size: 12px; letter-spacing: 0.08em;
  color: var(--ink-dim); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px 14px;
}
.updated-chip strong { color: var(--gold); }

/* highlight box shared (policies) */
.highlight-box, .highlight {
  background: linear-gradient(180deg, rgba(232,200,138,0.06), transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 28%, var(--line));
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 22px; margin: 22px 0;
}
.highlight-box h3, .highlight-box h4 { font-family: var(--serif); color: var(--gold); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.highlight-box p, .highlight p { color: var(--ink); font-size: 15px; }
.highlight p strong { color: var(--gold); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Back to top
   ========================================================================== */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--gold-ink); border: none; cursor: pointer;
  display: grid; place-items: center; box-shadow: 0 10px 26px -10px var(--gold);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-2px); }

/* ==========================================================================
   Utilities
   ========================================================================== */
.stack-lg > * + * { margin-top: clamp(48px, 8vw, 92px); }
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.divider-band { background: var(--bg-2); border-block: 1px solid var(--line); }
