/* Velour — shared styles */

:root {
  --bg: #0a0808;
  --bg-soft: #141012;
  --ink: #f7f3f0;
  --ink-dim: rgba(247, 243, 240, 0.62);
  --ink-faint: rgba(247, 243, 240, 0.32);
  --paper: #f5f1ec;
  --paper-ink: #1a1416;
  --purple: #4a1d63;
  --purple-bright: #6b2a8e;
  --purple-glow: oklch(0.42 0.16 310);
  --purple-soft: oklch(0.92 0.04 310);
  --line: rgba(247, 243, 240, 0.12);
  --line-dark: rgba(26, 20, 22, 0.12);

  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body.fading-out {
  opacity: 1;
  animation: fadeOut 0.4s ease-in forwards;
}

@keyframes fadeOut {
  to { opacity: 0; }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px 40px;
  background: rgba(10, 8, 8, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-left { justify-content: center; }
.nav-right { justify-content: flex-end; }

.nav-link {
  color: var(--ink);
  font-size: 15px;
  transition: color 0.25s ease;
  position: relative;
  padding: 6px 0;
}
.nav-link:hover, .nav-link.active { color: var(--purple-bright); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--purple-bright);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.icon-btn {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}
.icon-btn:hover { color: var(--ink); transform: translateY(-1px); }
.icon-btn svg { width: 18px; height: 18px; }

.cart-count {
  position: absolute;
  top: 0; right: 0;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--purple-bright);
  color: #fff;
  font-size: 9px;
  font-family: var(--f-sans);
  font-weight: 600;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-floating {
  position: fixed;
  top: 18px; right: 40px;
  z-index: 60;
  display: none; /* moved into nav-right for cleanliness */
}

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(74, 29, 99, 0.45), transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(107, 42, 142, 0.18), transparent 60%),
    linear-gradient(180deg, #0a0808 0%, #1a0e1f 100%);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  padding: 120px 80px 60px;
  gap: 40px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.hero-logo {
  width: min(520px, 100%);
  margin: 0 0 32px -12px;
  filter: drop-shadow(0 0 60px rgba(107, 42, 142, 0.35));
}

.hero-title, .hero-subtitle, .hero-actions {
  position: relative;
  top: -40px;
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--purple-soft);
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--f-sans);
}
.btn-primary {
  background: var(--purple-bright);
  color: #fff;
}
.btn-primary:hover {
  background: var(--purple-glow);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -10px rgba(107, 42, 142, 0.6);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-image-wrap {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  margin-bottom: -60px;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(107, 42, 142, 0.5), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}
.hero-doll {
  height: 100vh;
  max-height: 1500px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}

.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  background: rgba(10, 8, 8, 0.4);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 36s linear infinite;
  padding-left: 60px;
}
.hero-marquee-track span::after {
  content: "✦";
  margin-left: 60px;
  color: var(--purple-bright);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ─── Sections shared ─────────────────────────────────────────── */
section {
  padding: 120px 80px;
  position: relative;
}

.section-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--purple-soft); }

.section-lead {
  font-size: 17px;
  color: var(--ink-dim);
  line-height: 1.65;
  max-width: 560px;
}

/* ─── About ─────────────────────────────────────────── */
.about {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 100px;
}
.about-intro > div {
  transform: translate(100px, -30px);
}

.about-rows {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-row:nth-child(even) .about-row-image { order: -1; }

.about-row-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #1a0e1f, #2a1438);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.about-row-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(107, 42, 142, 0.08) 14px 15px);
}
.about-row-image .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  padding: 24px;
}

.about-row-text h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-row-text h3 em { font-style: italic; color: var(--purple-soft); }
.about-row-text p {
  color: var(--ink-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-row-num {
  font-family: var(--f-mono);
  font-size: 33px;
  letter-spacing: 0.32em;
  color: var(--purple-bright);
  margin-bottom: 18px;
  display: block;
}

/* ─── Stats strip ─────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 80px 0 0;
}
.stat {
  background: var(--bg);
  padding: 36px 28px;
}
.stat-num {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--purple-soft);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ─── Contact ─────────────────────────────────────────── */
.contact {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info dl {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}
.contact-info dt {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.contact-info dd {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 300;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.field select option {
  background: #1a0e1f;
  color: var(--ink);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 0;
  font: inherit;
  font-size: 16px;
  font-family: var(--f-display);
  transition: border-color 0.25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--purple-bright);
}
.field textarea { resize: vertical; min-height: 100px; }
.contact-form .btn-primary { grid-column: 1 / -1; justify-self: start; margin-top: 12px; }

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  padding: 40px 80px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.site-footer a { color: var(--ink); }
.site-footer a:hover { color: var(--purple-soft); }

/* ─── Store ─────────────────────────────────────────── */
.store-hero {
  padding: 160px 80px 60px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.store-hero .section-title { margin-bottom: 0; }
.store-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: right;
}

.store-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  padding: 60px 80px 120px;
}

.filters h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.filter-group { margin-bottom: 36px; }
.filter-list { display: flex; flex-direction: column; gap: 10px; }
.filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-dim);
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.2s ease;
  text-align: left;
  width: 100%;
  font-family: var(--f-sans);
}
.filter-item:hover { color: var(--ink); }
.filter-item.active { color: var(--ink); }
.filter-item.active::before {
  content: "✦";
  color: var(--purple-bright);
  margin-right: 8px;
}
.filter-item .count {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-faint);
}

.range-slider {
  position: relative;
  height: 28px;
  margin-bottom: 10px;
}
.range-track {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: var(--line);
  transform: translateY(-50%);
}
.range-fill {
  position: absolute;
  height: 100%;
  background: var(--purple-bright);
}
.range-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  appearance: none;
  background: none;
  pointer-events: none;
  outline: none;
}
.range-input::-webkit-slider-thumb {
  appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--purple-bright);
  cursor: pointer;
  pointer-events: all;
  transition: background 0.2s ease;
}
.range-input::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--purple-bright);
  cursor: pointer;
  pointer-events: all;
}
.range-input::-webkit-slider-thumb:hover { background: var(--purple-bright); }
.range-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  margin-top: 4px;
}

.swatch-row { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.swatch:hover { transform: scale(1.1); }
.swatch.active { border-color: var(--ink); }
.swatch.active::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--purple-bright);
  border-radius: 50%;
}

.size-row { display: flex; flex-wrap: wrap; gap: 6px; }
.size-chip {
  padding: 6px 10px;
  border: 1px solid var(--line);
  font-size: 11px;
  font-family: var(--f-mono);
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  cursor: pointer;
  transition: all 0.2s ease;
}
.size-chip:hover { color: var(--ink); border-color: var(--ink); }
.size-chip.active { background: var(--purple-bright); color: #fff; border-color: var(--purple-bright); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

.product-card {
  position: relative;
}
.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #1a0e1f, #2a1438);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--line);
}
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  padding: 5px 9px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--purple-soft);
  border: 1px solid var(--purple-bright);
}
.product-tag.new { color: var(--ink); border-color: var(--ink); }

.product-img-1,
.product-img-2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 3s ease;
  transform: scale(1);
}
.product-img-2 { opacity: 0; }
.product-card:hover .product-img-1 { opacity: 0; transform: scale(1.1); }
.product-card:hover .product-img-2 { opacity: 1; transform: scale(1.1); }

.card-atc {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  padding: 18px;
  background: var(--purple-bright);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.2, 0, 0, 1), background 0.2s ease;
}
.card-atc:hover { background: var(--purple-glow); }
.product-card:hover .card-atc { transform: translateY(0); }

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.product-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.005em;
}
.product-sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 2px;
}
.product-price {
  font-family: var(--f-mono);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--ink);
  white-space: nowrap;
}
.product-price s { color: var(--ink-faint); margin-right: 6px; }

/* ─── PDP ─────────────────────────────────────────── */
.pdp-back-wrap {
  padding: 100px 80px 0;
}
.pdp-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.2s ease;
}
.pdp-back svg { width: 16px; height: 16px; }
.pdp-back:hover { color: var(--ink); }
.pdp {
  padding: 120px 80px 100px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: start;
}
.pdp-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pdp-gallery-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #1a0e1f, #2a1438);
  border: 1px solid var(--line);
}
.pdp-info {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: none;
}
.pdp-info::-webkit-scrollbar { display: none; }
.pdp-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 16px;
  display: block;
}
.pdp-name {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.pdp-price {
  font-family: var(--f-mono);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 32px;
}
.pdp-divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 32px;
}
.pdp-description {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-dim);
  margin-bottom: 40px;
}
.pdp-mode-row {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
}
.pdp-mode-btn,
.pdp-suboption-btn,
.pdp-picker-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  line-height: 1.5;
  text-align: center;
}
.pdp-mode-btn.active,
.pdp-suboption-btn.active,
.pdp-picker-btn.active { color: var(--ink); }

.pdp-mode-circle {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}
.pdp-mode-circle svg { width: 28px; height: 28px; }
.pdp-mode-btn.active .pdp-mode-circle,
.pdp-suboption-btn.active .pdp-mode-circle,
.pdp-picker-btn.active .pdp-mode-circle {
  border-color: var(--purple-bright);
  background: rgba(107, 42, 142, 0.15);
}
.pdp-mode-btn:hover .pdp-mode-circle,
.pdp-suboption-btn:hover .pdp-mode-circle,
.pdp-picker-btn:hover .pdp-mode-circle { border-color: var(--purple-bright); }

.pdp-suboptions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.4s ease;
}
.pdp-suboptions.open {
  max-height: 600px;
  opacity: 1;
  margin-bottom: 24px;
}

.pdp-picker-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pdp-picker-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.pdp-picker-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 8, 0.88);
  cursor: zoom-out;
}
.pdp-picker-modal {
  position: relative;
  z-index: 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 36px;
  width: min(780px, 92vw);
}
.pdp-picker-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.pdp-purchase {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pdp-total-display {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.pdp-total-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.pdp-total-amount {
  font-family: var(--f-mono);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.pdp-atc-btn { width: 100%; justify-content: center; }
#checkoutSubmit { position: relative; }
.btn-label-default {
  transition: opacity 0.25s ease;
}
.stripe-hover-logo {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0;
  transition: opacity 0.25s ease;
}
#checkoutSubmit:hover .btn-label-default { opacity: 0; }
#checkoutSubmit:hover .stripe-hover-logo { opacity: 1; }
.pdp-picker-price {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--purple-soft);
}

/* ─── Lightbox ─────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 8, 0.96);
  cursor: zoom-out;
}
.lightbox-img {
  position: relative;
  z-index: 1;
  max-height: 90vh;
  max-width: 82vw;
  object-fit: contain;
  display: block;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
#lightboxVideo {
  pointer-events: none;
  cursor: default;
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lightbox-arrow svg { width: 22px; height: 22px; }
.lightbox-arrow:hover { border-color: var(--purple-bright); background: rgba(107, 42, 142, 0.18); }
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }
.lightbox-counter {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-faint);
  z-index: 2;
}

/* ─── Cart drawer ─────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(440px, 100%);
  height: 100vh;
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-backdrop.open { opacity: 1; pointer-events: auto; }
.cart-head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-head h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 26px;
}
.cart-body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 12px;
  color: var(--ink-faint);
}
.cart-empty span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line-img {
  width: 64px; height: 80px;
  background: linear-gradient(135deg, #1a0e1f, #2a1438);
  border: 1px solid var(--line);
}
.cart-line-name { font-family: var(--f-display); font-size: 18px; font-weight: 300; }
.cart-line-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
}
.cart-line-price { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.05em; }
.cart-line-remove {
  background: none; border: none; color: var(--ink-faint);
  font-size: 11px; cursor: pointer; margin-top: 8px;
  font-family: var(--f-mono); letter-spacing: 0.2em; text-transform: uppercase;
}
.cart-line-remove:hover { color: var(--ink); }
.cart-foot {
  padding: 24px 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cart-total-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.cart-total-amount {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 300;
}

/* ─── Toast ─────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--purple-bright);
  color: #fff;
  padding: 14px 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── Age gate ─────────────────────────────────────────── */
#agegate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(74, 29, 99, 0.5), transparent 70%),
    linear-gradient(180deg, #0a0808 0%, #1a0e1f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.5s ease;
}
#agegate.ag-hide { opacity: 0; pointer-events: none; }
.ag-box {
  text-align: center;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ag-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 8px;
}
.ag-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--purple-soft);
}
.ag-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}
.ag-title em { font-style: italic; color: var(--purple-soft); }
.ag-sub {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 380px;
}
.ag-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

/* ─── Checkout ─────────────────────────────────────────── */
.checkout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 0;
  min-height: 100vh;
  padding-top: 80px;
}
.checkout-form-wrap {
  padding: 60px 64px 80px;
  border-right: 1px solid var(--line);
}
.checkout-form-wrap h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  margin-bottom: 40px;
}
.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-field label {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.checkout-field input,
.checkout-field textarea {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
}
.checkout-field input:focus,
.checkout-field textarea:focus { border-color: var(--purple-bright); }
.checkout-field textarea { height: 110px; }

.checkout-summary {
  padding: 60px 48px 80px;
  background: var(--bg-soft);
}
.checkout-summary h3 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 28px;
}
.checkout-lines {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.checkout-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.checkout-line-img {
  width: 64px;
  height: 80px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a0e1f, #2a1438);
  border: 1px solid var(--line);
  overflow: hidden;
}
.checkout-line-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.checkout-line-name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 300;
}
.checkout-line-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-faint);
  margin-top: 4px;
}
.checkout-line-price {
  font-family: var(--f-mono);
  font-size: 14px;
  white-space: nowrap;
  color: var(--ink);
}
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 8px;
  margin-bottom: 32px;
}
.checkout-total-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.checkout-total-amount {
  font-family: var(--f-mono);
  font-size: 22px;
  color: var(--ink);
}

/* ─── FAQ ─────────────────────────────────────────── */
.faq-hero {
  padding: 160px 80px 60px;
  border-bottom: 1px solid var(--line);
}
.faq-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 80px 100px;
}
.faq-item {
  background: linear-gradient(135deg, rgba(74, 29, 99, 0.28), rgba(26, 14, 31, 0.6));
  border: 1px solid rgba(107, 42, 142, 0.2);
  margin-bottom: 10px;
  padding: 0 28px;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--purple-soft); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.35s ease;
}
.faq-icon svg { width: 12px; height: 12px; transition: transform 0.35s ease; }
.faq-item.open .faq-icon {
  border-color: var(--purple-bright);
  background: rgba(107, 42, 142, 0.15);
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  opacity: 1;
  padding-bottom: 28px;
}
.faq-answer p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-dim);
}
.faq-answer video, .faq-answer iframe {
  width: 100%;
  margin-top: 20px;
  border: 1px solid var(--line);
}
.faq-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.faq-media-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}
.faq-media-grid video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  margin-top: 0;
}

/* ─── Hamburger & mobile nav ─────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 67px; left: 0; right: 0;
  background: rgba(10, 8, 8, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 49;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1), opacity 0.3s ease;
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--ink); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 980px) {
  /* Header */
  .site-header { padding: 14px 20px; grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { grid-template-columns: 1fr; padding: 100px 20px 60px; text-align: left; overflow: hidden; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-image-wrap {
    display: flex;
    position: absolute;
    right: -100px;
    bottom: -400px;
    top: auto;
    width: 95%;
    align-items: flex-end;
    justify-content: flex-end;
    align-self: auto;
    margin-bottom: 0;
    height: auto;
    z-index: 1;
    opacity: 0.45;
  }
  .hero-doll { height: 150vh; max-height: none; width: auto; }
  .hero-title, .hero-subtitle, .hero-actions { top: 0; }
  .hero-logo { width: min(260px, 100%); }
  .hero-marquee { display: none; }

  /* Sections */
  section { padding: 80px 24px; }

  /* About */
  .about-intro, .about-row, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro > div { transform: none; }
  .about-row:nth-child(even) .about-row-image { order: 0; }
  .about-row-num { font-size: 18px; }
  .stats { grid-template-columns: repeat(2, 1fr); }

  /* Store */
  .store-hero { padding: 120px 24px 40px; grid-template-columns: 1fr; }
  .store-layout { grid-template-columns: 1fr; padding: 40px 24px 80px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }

  /* PDP */
  .pdp { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
  .pdp-gallery { order: 2; }
  .pdp-info { order: 1; }
  .pdp-info { position: relative; top: 0; max-height: none; overflow-y: visible; }
  .pdp-back-wrap { padding: 80px 24px 0; }
  .pdp-suboptions.open { max-height: 500px; }
  .pdp-picker-modal { width: 94vw; padding: 24px; }
  .pdp-picker-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }

  /* Checkout */
  .checkout { grid-template-columns: 1fr; }
  .checkout-form-wrap { padding: 100px 24px 40px; }
  .checkout-summary { padding: 32px 24px 60px; }

  /* FAQ */
  .faq-hero { padding: 120px 24px 40px; }
  .faq-list { padding: 40px 24px 60px; }

  /* Privacy */
  .privacy-wrap { padding: 120px 24px 60px; }

  /* Contact */
  .contact-form { grid-template-columns: 1fr; }

  /* Footer */
  .site-footer { padding: 24px; flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 640px) {
  /* Hero */
  .hero { padding: 100px 20px 60px; }
  .hero-logo { width: min(300px, 100%); }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  /* Store */
  .product-grid { grid-template-columns: 1fr; }

  /* PDP gallery */
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-mode-circle { width: 68px; height: 68px; }
  .pdp-picker-grid { grid-template-columns: repeat(3, 1fr); }

  /* Checkout rows */
  .checkout-row { grid-template-columns: 1fr; }

  /* Stats */
  .stats { grid-template-columns: 1fr 1fr; }

  /* FAQ media grid */
  .faq-media-grid { grid-template-columns: repeat(2, 1fr); }

  /* Age gate */
  .ag-actions { flex-direction: column; width: 100%; }
  .ag-actions .btn { width: 100%; justify-content: center; }
}
