:root {
  --bg: #f5f3ee;
  --bg-paper: #ebe8e0;
  --bg-deep: #14110f;
  --bg-card: #ffffff;
  --ink: #14110f;
  --ink-soft: #2a2622;
  --ink-mid: #6e6862;
  --ink-faint: #b3ada4;
  --ink-line: #d8d3ca;
  --line: #e0dcd2;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============= CUSTOM CURSOR ============= */
@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
  
  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #ffffff;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, background 0.3s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
  }
  
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 32px; height: 32px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.2,0.8,0.2,1), height 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.3s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
  }
  
  .cursor-ring.hover {
    width: 80px; height: 80px;
    border-color: #ffffff;
  }
  .cursor-dot.hover {
    transform: translate(-50%, -50%) scale(0);
  }
  
  .cursor-dot.text {
    transform: translate(-50%, -50%) scale(0);
  }
  .cursor-ring.text {
    width: 4px; height: 24px;
    border-radius: 2px;
    background: #ffffff;
    border-color: transparent;
  }
}

@media (hover: none), (pointer: coarse), (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ============= SCROLL REVEAL ============= */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

[data-reveal="blur"] {
  filter: blur(14px);
}

[data-reveal="scale"] {
  transform: scale(0.96);
}
[data-reveal="scale"].visible {
  transform: scale(1);
}

/* ============= PARALLAX ============= */
.parallax-img {
  will-change: transform;
}

/* ============= MARQUEE ============= */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
  padding: 22px 0;
  position: relative;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  letter-spacing: 0.02em;
}
.marquee-item::after {
  content: '◦';
  font-size: 16px;
  opacity: 0.5;
  margin-left: 32px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============= WATERMARK ============= */
.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(280px, 50vw, 760px);
  color: var(--ink);
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.watermark.dark { color: var(--bg); opacity: 0.05; }

.symbols-list, .about-content, .manifesto, .final-cta {
  position: relative;
  overflow: hidden;
}
.symbols-list .symbol-row, .about-content > *, .manifesto-inner, .final-cta > * {
  position: relative;
  z-index: 1;
}

/* ============= LOADING SCREEN ============= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease 0.4s, visibility 0.8s ease 0.4s;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(80px, 14vw, 180px);
  letter-spacing: 0.12em;
  color: var(--ink);
  opacity: 0;
  animation: loaderFade 1.4s ease forwards;
  margin-bottom: 32px;
}

.loader-line {
  width: 0;
  height: 1px;
  background: var(--ink);
  animation: loaderLine 1.6s 0.5s cubic-bezier(0.2,0.8,0.2,1) forwards;
}

.loader-tagline {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-top: 32px;
  opacity: 0;
  animation: loaderTagline 1s 1.4s ease forwards;
}

@keyframes loaderFade {
  from { opacity: 0; transform: translateY(20px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes loaderLine {
  to { width: 220px; }
}
@keyframes loaderTagline {
  to { opacity: 1; }
}

/* ============= PAGE TRANSITIONS ============= */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9000;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
.page-transition.in {
  transform: translateY(0);
}
.page-transition.out {
  transform: translateY(-100%);
}

.page-transition-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-style: italic;
  color: var(--bg);
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 0.15em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.page-transition.in .page-transition-logo {
  opacity: 1;
  transition: opacity 0.15s 0.1s ease;
}

/* ============= QUIZ RESULT EDITORIAL CARD ============= */
.quiz-result-card {
  display: none;
  max-width: 480px;
  margin: 0 auto 56px;
  background: var(--bg);
  color: var(--ink);
  padding: 56px 48px;
  position: relative;
  text-align: left;
  border: 1px solid var(--ink);
}
.quiz-result.active .quiz-result-card { display: block; }

.qrc-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.qrc-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.qrc-meaning {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 36px;
}
.qrc-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 36px;
  color: var(--ink);
}
.qrc-glyph {
  width: 80px; height: 80px;
  margin: 0 auto 36px;
  color: var(--ink);
  opacity: 0.7;
}
.qrc-photo {
  width: 100%;
  aspect-ratio: 4/5;
  margin: 0 auto 32px;
  overflow: hidden;
  background: var(--bg-paper);
  border-radius: 2px;
}
.qrc-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
}
.qrc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.qrc-footer em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
  color: var(--ink);
}

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ============= NAV ============= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(245, 243, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: padding 0.3s, background 0.3s;
}
nav.scrolled { padding: 16px 48px; background: rgba(245, 243, 238, 0.96); }
@media (max-width: 768px) { nav, nav.scrolled { padding: 14px 16px; } }

.nav-left, .nav-right { display: flex; align-items: center; }
.nav-left { gap: 36px; }
.nav-right { gap: 20px; justify-content: flex-end; }
@media (max-width: 768px) { .nav-left { display: none; } }

.logo {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.2em;
  cursor: pointer;
  color: var(--ink);
  text-align: center;
  font-style: italic;
}
@media (max-width: 768px) { .logo { font-size: 24px; } }

.nav-link {
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.25s;
  cursor: pointer;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--ink); }

.switcher {
  background: transparent;
  border: none;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  padding: 6px 4px;
  cursor: pointer;
  text-transform: uppercase;
  transition: color 0.25s;
}
.switcher:hover { color: var(--ink); }
.switcher + .switcher { border-left: 1px solid var(--ink-line); padding-left: 12px; }

.cart-btn {
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0 6px 12px;
  border-left: 1px solid var(--ink-line);
}
.cart-count {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

/* ============= PAGES ============= */
.page { display: none; padding-top: 114px; }
.page.active { display: block; }

/* ============= HERO ============= */
.hero {
  height: 100vh;
  min-height: 720px;
  position: relative;
  overflow: hidden;
  margin: 0;
  margin-top: -78px;
  padding-top: 78px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.65) contrast(1.1) saturate(0.85);
}
.hero-bg video {
  filter: brightness(0.5) contrast(1.15) saturate(0.7);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 60px;
  color: var(--bg);
}
@media (max-width: 600px) { .hero-content { padding: 60px 24px; } }

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 32px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 1.2s 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--bg);
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(64px, 11vw, 180px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144;
  margin-bottom: 32px;
  max-width: 1200px;
  opacity: 0;
  animation: fadeUp 1.4s 0.5s forwards;
}
.hero h1 em { font-style: italic; font-weight: 300; }

.hero-sub {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 56px;
  line-height: 1.4;
  opacity: 0;
  animation: fadeUp 1.4s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.4s 0.9s forwards;
}

.hero-meta-bottom {
  position: absolute;
  bottom: 32px;
  right: 60px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--bg);
  opacity: 0;
  animation: fadeUp 1.4s 1.1s forwards;
}
@media (max-width: 768px) { .hero-meta-bottom { display: none; } }
.hero-meta-bottom span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero-meta-num {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: 13px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  border-radius: 0;
  white-space: nowrap;
}
.btn-light {
  background: var(--bg);
  border: 1px solid var(--bg);
  color: var(--ink);
}
.btn-light:hover { background: transparent; color: var(--bg); }

.btn-light-outline {
  background: transparent;
  border: 1px solid var(--bg);
  color: var(--bg);
}
.btn-light-outline:hover { background: var(--bg); color: var(--ink); }

.btn-dark {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--bg);
}
.btn-dark:hover { background: transparent; color: var(--ink); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--bg); }

/* ============= EDITORIAL / MOOD BLOCK ============= */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  align-items: stretch;
}
@media (max-width: 900px) { .editorial-split { grid-template-columns: 1fr; min-height: auto; } }

.editorial-text {
  padding: 140px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
@media (max-width: 600px) { .editorial-text { padding: 80px 28px; } }

.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-mid);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--ink);
}

.editorial-text h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 36px;
  max-width: 540px;
}
.editorial-text h2 em { font-style: italic; }

.editorial-text p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 24px;
  max-width: 460px;
}

.editorial-text .btn {
  align-self: flex-start;
  margin-top: 24px;
}

.editorial-image {
  background: var(--bg-paper);
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.editorial-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.editorial-image-meta {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--bg);
  z-index: 2;
}
.editorial-image-meta::before {
  content: '';
  position: absolute;
  inset: -80px -28px -28px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  z-index: -1;
  pointer-events: none;
}
.editorial-image-meta span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.editorial-image-meta em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}

/* ============= MANIFESTO ============= */
.manifesto {
  padding: 240px 40px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-inner { max-width: 1000px; margin: 0 auto; }

.manifesto-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 56px;
  font-weight: 400;
}

.manifesto h2 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 120px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
  margin-bottom: 56px;
}

.manifesto h2 em { font-style: italic; }

.manifesto-line {
  width: 1px;
  height: 56px;
  background: var(--ink);
  margin: 0 auto 56px;
}

.manifesto p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
}

/* ============= LOOKBOOK STRIP ============= */
.lookbook {
  padding: 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  height: 100vh;
  min-height: 700px;
}
@media (max-width: 900px) {
  .lookbook { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 1fr); height: auto; }
  .lookbook-1 { grid-column: 1 / -1; aspect-ratio: 16/10; }
  .lookbook-2, .lookbook-3, .lookbook-4 { aspect-ratio: 1; }
  .lookbook-2 { grid-column: 1; grid-row: 2; }
  .lookbook-3 { grid-column: 2; grid-row: 2; }
  .lookbook-4 { grid-column: 1 / -1; grid-row: 3; aspect-ratio: 16/10; }
}

.lookbook-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-paper);
}
.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lookbook-item:hover img { transform: scale(1.04); }

.lookbook-1 { grid-column: 1; grid-row: 1 / -1; }
.lookbook-2 { grid-column: 2; grid-row: 1; }
.lookbook-3 { grid-column: 3; grid-row: 1; }
.lookbook-4 { grid-column: 2 / -1; grid-row: 2; }

.lookbook-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: var(--bg);
  z-index: 2;
}
.lookbook-caption::before {
  content: '';
  position: absolute;
  inset: -60px -24px -24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
  z-index: -1;
}
.lookbook-caption div:first-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  margin-bottom: 4px;
}
.lookbook-caption div:last-child {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ============= SECTION HEADERS ============= */
.section-header {
  padding: 200px 40px 100px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section-header h2 {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
  font-variation-settings: "opsz" 144;
  margin-bottom: 24px;
}
.section-header h2 em { font-style: italic; }
.section-header p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mid);
  font-size: 19px;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto;
}

.section-header .eyebrow {
  justify-content: center;
  margin-bottom: 32px;
}
.section-header .eyebrow::before { display: none; }

/* ============= FILTER ============= */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0 40px 60px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  margin: 0 40px 0;
}

.filter {
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  color: var(--ink-mid);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  padding: 16px 28px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s;
  margin-bottom: -1px;
}
.filter:hover { color: var(--ink); }
.filter.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* ============= PRODUCTS GRID ============= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
  padding: 80px 40px 160px;
  max-width: 1500px;
  margin: 0 auto;
}
.products-grid .product-card {
  grid-column: auto;
}
.products-grid .product-card .product-image {
  aspect-ratio: 4/5;
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
}
@media (max-width: 700px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 60px 0;
    padding: 60px 16px 100px;
  }
}

/* Editorial pause between products */
.catalog-pause {
  grid-column: 1 / -1;
  padding: 80px 0 40px;
  text-align: center;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.catalog-pause-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.2;
}
.catalog-pause-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 24px;
}

.product-card {
  cursor: pointer;
  position: relative;
  background: transparent;
}

.product-image {
  aspect-ratio: 4/5;
  background: var(--bg-paper);
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.product-card:hover .product-image { background: #e3dfd4; }

/* Placeholder for product photos - showing it's awaiting real photos */
.product-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  text-align: center;
  position: relative;
}

.product-placeholder-glyph {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  opacity: 0.45;
  transition: opacity 0.4s, transform 0.6s;
}
.product-card:hover .product-placeholder-glyph {
  opacity: 0.7;
  transform: scale(1.05);
}

.product-placeholder-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.product-placeholder-meaning {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 400;
}

.product-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg);
  padding: 6px 10px;
  z-index: 2;
}
.product-tag.tag-limited {
  background: var(--ink);
  color: var(--bg);
}
.product-tag.tag-capsule {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.product-stock {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  color: var(--ink-mid);
  letter-spacing: 0.1em;
  z-index: 2;
}

.product-info {
  padding: 0 4px;
}

.product-name {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 144;
  line-height: 1;
}

.product-meaning {
  font-family: var(--serif);
  color: var(--ink-mid);
  font-size: 15px;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.4;
  font-weight: 300;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.product-price {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.product-link {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--ink-mid);
  text-transform: uppercase;
  transition: color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card:hover .product-link {
  color: var(--ink);
}
.product-card:hover .product-link::after {
  transform: translateX(4px);
}
.product-link::after {
  content: '→';
  transition: transform 0.3s;
}

/* ============= QUIZ ============= */
.quiz {
  background: var(--bg-deep);
  color: var(--bg);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.quiz-inner {
  width: 100%;
  max-width: 1100px;
  padding: 100px 40px;
  position: relative;
  z-index: 1;
}

/* QUIZ INTRO */
.quiz-intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quiz-intro.hidden { display: none; }

.quiz-intro .eyebrow {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  justify-content: center;
}
.quiz-intro .eyebrow::before { background: rgba(255,255,255,0.5); }

.quiz-intro h2 {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 1000px;
}
.quiz-intro h2 em { font-style: italic; }

.quiz-intro p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 56px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

/* QUIZ STEPS */
.quiz-steps { display: none; }
.quiz-steps.active { display: block; }

.quiz-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 80px;
}

.quiz-progress-dot {
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  transition: background 0.4s;
}
.quiz-progress-dot.passed { background: rgba(255,255,255,0.8); }
.quiz-progress-dot.active { background: var(--bg); }

.quiz-step {
  display: none;
  text-align: center;
  animation: fadeInQuiz 0.5s ease;
}
.quiz-step.active { display: block; }

@keyframes fadeInQuiz {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.quiz-step h3 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  margin-bottom: 64px;
  line-height: 1.15;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.quiz-step h3 em { font-style: italic; }

.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
}

.quiz-option {
  background: var(--bg-deep);
  border: none;
  padding: 36px 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--bg);
  transition: all 0.4s;
  letter-spacing: 0.02em;
  position: relative;
}
.quiz-option:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.quiz-option-label {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  font-weight: 400;
}

/* QUIZ RESULT */
.quiz-result { display: none; text-align: center; }
.quiz-result.active { display: block; animation: fadeInQuiz 0.8s ease; }

.quiz-result-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.quiz-result h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  margin-bottom: 56px;
  color: rgba(255,255,255,0.95);
  line-height: 1;
}
.quiz-result h2 em { font-style: italic; }

.quiz-result-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============= CRAFT BLOCK ============= */
.craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--bg);
}
@media (max-width: 900px) { .craft { grid-template-columns: 1fr; } }

.craft-image {
  background: var(--bg-paper);
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.craft-image img { width: 100%; height: 100%; object-fit: cover; }

.craft-text {
  padding: 140px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 600px) { .craft-text { padding: 80px 28px; } }

.craft-text h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 36px;
  max-width: 480px;
}
.craft-text h2 em { font-style: italic; }

.craft-text p {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 460px;
}
.craft-text p strong { font-weight: 400; font-style: normal; }

.craft-list {
  margin: 40px 0;
  list-style: none;
  max-width: 480px;
  border-top: 1px solid var(--line);
}
.craft-list li {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.craft-list li strong { font-weight: 500; letter-spacing: 0.03em; }
.craft-list li span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mid);
  font-size: 15px;
}

/* ============= FINAL CTA ============= */
.final-cta {
  padding: 280px 40px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.final-cta-line {
  width: 1px;
  height: 64px;
  background: var(--ink);
  margin: 0 auto 56px;
}

.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 140px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
  margin-bottom: 56px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 em { font-style: italic; }

.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============= MOOD GALLERY ============= */
.mood-gallery {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
@media (max-width: 900px) { .mood-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .mood-gallery { grid-template-columns: 1fr; } }

.mood-item {
  aspect-ratio: 3/4;
  background: var(--bg-paper);
  position: relative;
  overflow: hidden;
}
.mood-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.mood-item:hover img { transform: scale(1.04); }

/* ============= TELEGRAM ============= */
.telegram {
  padding: 220px 40px;
  text-align: center;
  background: var(--bg-paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.telegram-symbol {
  width: 56px;
  height: 56px;
  margin: 0 auto 32px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}

.telegram h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  margin-bottom: 20px;
  font-style: italic;
}

.telegram p {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mid);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

/* ============= FOOTER ============= */
footer {
  padding: 100px 40px 40px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto 80px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo {
  display: block;
  font-size: 32px;
  margin-bottom: 24px;
  text-align: left;
}
.footer-brand p {
  font-family: var(--serif);
  color: var(--ink-mid);
  font-style: italic;
  font-weight: 300;
  max-width: 320px;
  font-size: 17px;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-family: var(--sans);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s;
  cursor: pointer;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--sans);
  font-size: 10px;
  color: var(--ink-mid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  max-width: 1300px;
  margin: 0 auto;
}

/* ============= PRODUCT DETAIL ============= */
.product-detail {
  display: block;
  background: var(--bg);
  min-height: calc(100vh - 78px);
}

.detail-image {
  background: var(--bg-paper);
  position: sticky;
  top: 78px;
  height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 900px) { .detail-image { position: relative; top: 0; height: 70vh; } }

.detail-content { padding: 100px 80px 120px; max-width: 640px; }
@media (max-width: 600px) { .detail-content { padding: 60px 28px; } }

.detail-back {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  margin-bottom: 40px;
  display: inline-block;
  cursor: pointer;
  transition: color 0.3s;
}
.detail-back:hover { color: var(--ink); }

.detail-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--ink-mid);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.detail-content h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1;
}
.detail-content h1 em { font-style: italic; }

.detail-meaning {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mid);
  font-size: 20px;
  margin-bottom: 40px;
}

.detail-myth {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
  padding-left: 28px;
  border-left: 1px solid var(--ink);
  color: var(--ink-soft);
}

.detail-archetype {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 56px;
  line-height: 1.5;
}
.detail-archetype::before { content: '— '; }

.detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  margin-bottom: 32px;
}
.meta-item {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.meta-item:nth-child(2n) { border-right: none; }
.meta-item:nth-last-child(-n+2) { border-bottom: none; }
.meta-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.meta-value {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}

.detail-fit {
  background: var(--bg-paper);
  padding: 24px;
  margin-bottom: 32px;
  border-left: 2px solid var(--ink);
}
.detail-fit-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 8px;
}
.detail-fit p {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.55;
}

.detail-stock-wrap {
  margin-bottom: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.detail-stock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--ink-mid);
}
.detail-stock-row strong {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}
.stock-bar {
  height: 1px;
  background: var(--line);
  position: relative;
}
.stock-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--ink);
}

.detail-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}
.detail-price {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  font-style: italic;
}
.detail-price-note {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--ink-mid);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

.detail-cta {
  width: 100%;
  padding: 22px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 14px;
}
.detail-cta:hover { background: transparent; color: var(--ink); }

.detail-secondary {
  width: 100%;
  padding: 18px;
  background: transparent;
  color: var(--ink-mid);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.detail-secondary:hover { border-color: var(--ink); color: var(--ink); }

.detail-section {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.detail-section h3 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 16px;
}
.detail-section p {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* SYMBOLS / ABOUT */
.symbols-hero, .about-hero {
  padding: 140px 40px 100px;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}
.symbols-hero h1, .about-hero h1 {
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 120px);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
}
.symbols-hero h1 em, .about-hero h1 em { font-style: italic; }
.symbols-hero p, .about-hero p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 21px;
  color: var(--ink-mid);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.5;
}

.symbols-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 140px;
}
.symbol-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
@media (max-width: 800px) { .symbol-row { grid-template-columns: 1fr; gap: 32px; } }
.symbol-row:last-child { border-bottom: 1px solid var(--line); }

.symbol-glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: var(--bg-paper);
}
.symbol-glyph svg { width: 60%; height: 60%; opacity: 0.7; }

.symbol-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 700px) { .symbol-info { grid-template-columns: 1fr; gap: 28px; } }

.symbol-info h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1;
}
.symbol-info h3 em {
  font-style: italic;
  font-size: 18px;
  color: var(--ink-mid);
  margin-left: 12px;
  font-weight: 300;
}
.symbol-meaning {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 20px;
}
.symbol-info p {
  font-family: var(--serif);
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}
.symbol-archetype {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
}
.symbol-archetype-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
  font-style: normal;
}

/* CAPSULE */
.capsule-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px;
  background: var(--bg-deep);
  color: var(--bg);
  overflow: hidden;
}
.capsule-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.capsule-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.capsule-hero-content { position: relative; z-index: 1; max-width: 900px; }
.capsule-hero h1 {
  font-family: var(--display);
  font-size: clamp(80px, 16vw, 240px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
  margin: 32px 0 24px;
  line-height: 0.88;
}
.capsule-subtitle {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 56px;
  line-height: 1.4;
}
.capsule-hero .eyebrow {
  color: rgba(255,255,255,0.7);
  justify-content: center;
}
.capsule-hero .eyebrow::before { background: rgba(255,255,255,0.5); }

.capsule-meta-row {
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}
.capsule-meta-cell {
  padding: 20px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.capsule-meta-cell:last-child { border-right: none; }
.capsule-meta-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.capsule-meta-value {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--bg);
}
.capsule-meta-value em { font-style: italic; }

@media (max-width: 700px) {
  .capsule-meta-row { grid-template-columns: 1fr; }
  .capsule-meta-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .capsule-meta-cell:last-child { border-bottom: none; }
}

/* ABOUT CONTENT */
.about-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 40px 120px;
}
.about-content p {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.about-content h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin: 80px 0 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.about-content h3:first-of-type { margin-top: 40px; }

.about-pull {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.4;
  text-align: center;
  padding: 56px 20px;
  margin: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.about-image-block {
  margin: 80px 0;
  aspect-ratio: 16/9;
  background: var(--bg-paper);
  overflow: hidden;
}
.about-image-block img { width: 100%; height: 100%; object-fit: cover; }

/* CART */
.cart-drawer {
  position: fixed;
  top: 0; right: -460px;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  height: 100dvh; /* dynamic viewport — correct on iOS Safari */
  background: var(--bg);
  border-left: 1px solid var(--line);
  z-index: 200;
  transition: right 0.4s cubic-bezier(0.2,0.8,0.2,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-header {
  padding: 30px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.cart-header h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
}
.cart-close {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.cart-close:active { background: var(--ink); color: var(--bg); }
.cart-close-x { display: block; margin-top: -3px; }
.cart-body { flex: 1; padding: 24px 32px; overflow-y: auto; }
.cart-empty {
  font-family: var(--serif);
  text-align: center;
  color: var(--ink-mid);
  padding: 80px 20px;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
}
.cart-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-img {
  width: 80px; height: 100px;
  background: var(--bg-paper);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.cart-item-img svg { width: 50%; height: 50%; opacity: 0.5; }
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}
.cart-item-meaning {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-mid);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 10px;
}
.cart-item-price {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--ink-faint);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  align-self: flex-start;
}
.cart-item-remove:hover { color: var(--ink); }
.cart-footer {
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  background: var(--bg-paper);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  align-items: baseline;
}
.cart-total span:last-child {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}
.cart-checkout {
  width: 100%;
  padding: 20px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.cart-checkout:hover { background: transparent; color: var(--ink); }

.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.show { opacity: 1; pointer-events: auto; }

.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: var(--bg);
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  z-index: 300;
  transition: transform 0.4s;
}
.toast.show { transform: translateX(-50%) translateY(0); }


.detail-thumbs {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  background: rgba(245, 243, 238, 0.85);
  backdrop-filter: blur(8px);
  padding: 8px;
  border: 1px solid var(--line);
}
.detail-thumb {
  width: 50px;
  height: 60px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
  overflow: hidden;
  border: 1px solid transparent;
}
.detail-thumb:hover { opacity: 0.85; }
.detail-thumb.active {
  opacity: 1;
  border-color: var(--ink);
}
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .detail-thumbs {
    bottom: 16px;
    padding: 6px;
  }
  .detail-thumb { width: 42px; height: 50px; }
}

/* ============= EDITORIAL PRODUCT PAGE ============= */
.product-detail {
  display: block;
  grid-template-columns: none;
  gap: 0;
  background: var(--bg);
}

.ed-back {
  position: fixed;
  top: 100px;
  left: 40px;
  z-index: 50;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bg);
  text-decoration: none;
  padding: 14px 24px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.3s;
  mix-blend-mode: difference;
}
.ed-back:hover { background: rgba(0,0,0,0.8); }
@media (max-width: 600px) {
  .ed-back { top: 80px; left: 20px; padding: 10px 16px; font-size: 9px; }
}

/* HERO */
.ed-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--bg-deep);
}
.ed-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: edKenBurns 18s ease-out forwards;
}
@keyframes edKenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .ed-hero-img { animation: none; }
}
.ed-hero-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-deep);
}
.ed-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.05) 28%, rgba(0,0,0,0.15) 52%, rgba(0,0,0,0.62) 82%, rgba(0,0,0,0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
  color: var(--bg);
}
@media (max-width: 600px) { .ed-hero-overlay { padding: 32px 24px; } }

.ed-hero-content {
  max-width: 800px;
  text-shadow: 0 1px 24px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.35);
}
.ed-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ed-tag::before {
  content: ''; width: 32px; height: 1px; background: var(--bg); opacity: 0.7;
}
.ed-name {
  font-family: var(--display);
  font-size: clamp(64px, 12vw, 200px);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 16px;
}
.ed-meaning {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 32px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144;
}
.ed-hero-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.7);
}

/* SHARED EDITORIAL ELEMENTS */
.ed-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.ed-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--ink);
}

/* QUOTE BLOCK */
.ed-quote-block {
  padding: 200px 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.ed-quote-block .ed-eyebrow { justify-content: center; }
.ed-quote-block .ed-eyebrow::before { display: none; }
.ed-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 88px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
  color: var(--ink);
  max-width: 1100px;
  margin: 0 auto;
}
.ed-quote::before { content: '"'; }
.ed-quote::after { content: '"'; }

/* PHOTO BLOCK */
.ed-photo-block {
  width: 100%;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  position: relative;
  background: var(--bg-paper);
}
.ed-photo-tall { height: 110vh; min-height: 700px; }
.ed-photo-block img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
}

/* CINEMATIC VIDEO BLOCK */
.ed-video-block {
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  position: relative;
  background: var(--bg-deep);
}
.ed-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.04) saturate(0.92);
}
.ed-video-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 25%, transparent 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.ed-video-caption {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 2;
  color: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ed-video-caption span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.ed-video-caption span::before {
  content: '';
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.7);
}
.ed-video-caption em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
  line-height: 1;
}
@media (max-width: 600px) {
  .ed-video-block { height: 80vh; min-height: 480px; }
  .ed-video-caption { bottom: 32px; left: 24px; }
}

/* FLATLAY BANNER */
.flatlay-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  background: var(--bg-paper);
}
.flatlay-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.flatlay-banner::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at bottom left, rgba(245,243,238,0.92) 0%, rgba(245,243,238,0.6) 35%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.flatlay-banner-text {
  position: absolute;
  left: 60px;
  bottom: 60px;
  color: var(--ink);
  max-width: 600px;
  z-index: 2;
}
.flatlay-banner-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 20px;
}
.flatlay-banner-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
}
.flatlay-banner-title em { font-style: italic; }
@media (max-width: 600px) {
  .flatlay-banner { height: 70vh; min-height: 420px; }
  .flatlay-banner-text { left: 24px; bottom: 32px; }
}

/* HOMEPAGE CINEMATIC FILM BREAK */
.film-break {
  position: relative;
  width: 100%;
  min-height: 640px;
  overflow: hidden;
  background: var(--bg-deep);
}
.film-break-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.05) saturate(0.9);
}
.film-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 35%, transparent 55%, rgba(0,0,0,0.55) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 90px;
}
.film-break-text {
  text-align: center;
  color: var(--bg);
  max-width: 900px;
  padding: 0 40px;
}
.film-break-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.film-break-title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
}
.film-break-title em {
  font-style: italic;
}
@media (max-width: 600px) {
  .film-break { height: 88vh; min-height: 520px; }
  .film-break-overlay { padding-bottom: 56px; }
}

/* MYTH BLOCK */
.ed-myth-block {
  padding: 200px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.ed-myth-block .ed-eyebrow { justify-content: center; }
.ed-myth-block .ed-eyebrow::before { display: none; }
.ed-myth-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.7;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto;
}

/* DETAIL BLOCK (split) */
.ed-detail-block {
  padding: 0;
  background: var(--bg-paper);
}
.ed-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 80vh;
}
@media (max-width: 900px) { .ed-detail-grid { grid-template-columns: 1fr; } }

.ed-detail-photo {
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg-paper);
}
.ed-detail-photo img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
}
.ed-detail-text {
  padding: 100px 80px;
}
@media (max-width: 600px) { .ed-detail-text { padding: 60px 28px; } }

.ed-detail-title {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
  margin-bottom: 28px;
  max-width: 480px;
}
.ed-detail-text p {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 460px;
}

/* PHOTO STRIP */
.ed-strip-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
}
.ed-strip-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-paper);
}
.ed-strip-item img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
}

/* MATERIAL BLOCK */
.ed-material-block {
  padding: 200px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.ed-material-block .ed-eyebrow { justify-content: center; }
.ed-material-block .ed-eyebrow::before { display: none; }
.ed-material-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
  margin-bottom: 64px;
}
.ed-material-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 48px;
}
@media (max-width: 700px) { .ed-material-grid { grid-template-columns: repeat(2, 1fr); } }
.ed-meta-item {
  background: var(--bg);
  padding: 28px 20px;
  text-align: left;
}
.ed-meta-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.ed-meta-value {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}

.ed-fit-callout {
  background: var(--bg-paper);
  padding: 32px 40px;
  margin: 0 auto;
  max-width: 720px;
  text-align: left;
  border-left: 2px solid var(--ink);
}
.ed-fit-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 10px;
}
.ed-fit-callout p {
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 144;
  line-height: 1.5;
}

/* CTA SECTION (sticky-like at bottom) */
.ed-cta-section {
  padding: 120px 40px;
  background: var(--ink);
  color: var(--bg);
  position: relative;
}
.ed-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 700px) { .ed-cta-inner { grid-template-columns: 1fr; gap: 40px; } }

.ed-cta-left {
  max-width: 480px;
}
.ed-cta-name {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: "opsz" 144;
  margin-bottom: 12px;
}
.ed-cta-meaning {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144;
}
.ed-stock-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.ed-stock-row strong {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bg);
}
.ed-cta-section .stock-bar {
  background: rgba(255,255,255,0.15);
}
.ed-cta-section .stock-bar-fill {
  background: var(--bg);
}

.ed-cta-right { text-align: right; }
@media (max-width: 700px) { .ed-cta-right { text-align: left; } }
.ed-cta-price {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.ed-cta-button {
  padding: 22px 48px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--bg);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.ed-cta-button:hover {
  background: transparent;
  color: var(--bg);
}

/* SHIPPING */
.ed-shipping {
  padding: 120px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.ed-shipping h3 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 24px;
}
.ed-shipping p {
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
  font-variation-settings: "opsz" 144;
}



/* Product page: nav transparent over hero */
#page-product { padding-top: 0; }
#page-product.active ~ * #nav,
body:has(#page-product.active) #nav {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
body:has(#page-product.active) #nav.scrolled {
  background: rgba(245, 243, 238, 0.96);
  border-bottom-color: var(--line);
}
body:has(#page-product.active) #nav .nav-link,
body:has(#page-product.active) #nav .logo,
body:has(#page-product.active) #nav .switcher,
body:has(#page-product.active) #nav .cart-btn {
  color: var(--bg);
  mix-blend-mode: difference;
}
body:has(#page-product.active) #nav.scrolled .nav-link,
body:has(#page-product.active) #nav.scrolled .logo,
body:has(#page-product.active) #nav.scrolled .switcher,
body:has(#page-product.active) #nav.scrolled .cart-btn {
  color: var(--ink);
  mix-blend-mode: normal;
}
/* ============= BUNDLES / SETS ============= */
.bundles {
  padding: 140px 40px 160px;
  max-width: 1400px;
  margin: 0 auto;
}
.bundles-header {
  text-align: center;
  margin-bottom: 80px;
}
.bundles-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 24px;
}
.bundles-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
  margin-bottom: 20px;
}
.bundles-title em { font-style: italic; }
.bundles-sub {
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink-mid);
  font-style: italic;
}
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bundle-card {
  border: 1px solid var(--line);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  background: var(--bg-paper);
  transition: border-color 0.4s, transform 0.4s;
}
.bundle-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}
.bundle-thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.bundle-thumb {
  width: 90px; height: 110px;
  overflow: hidden;
  background: var(--bg);
  flex-shrink: 0;
}
.bundle-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8%;
}
.bundle-thumb-glyph {
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mid);
  padding: 20px;
}
.bundle-plus {
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink-mid);
  flex-shrink: 0;
}
.bundle-info { display: flex; flex-direction: column; flex: 1; }
.bundle-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 12px;
}
.bundle-name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.bundle-desc {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-bottom: 28px;
  flex: 1;
}
.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.bundle-price-full {
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink-mid);
  text-decoration: line-through;
  opacity: 0.6;
}
.bundle-price-now {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
}
.bundle-save {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--ink);
  padding: 4px 10px;
  border-radius: 2px;
}
.bundle-cta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.bundle-cta:hover { opacity: 0.85; }
@media (max-width: 1000px) {
  .bundles-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ============= VOICES / STORIES ============= */
.voices {
  padding: 140px 40px 160px;
  max-width: 1400px;
  margin: 0 auto;
}
.voices-header {
  text-align: center;
  margin-bottom: 80px;
}
.voices-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 24px;
}
.voices-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
  margin-bottom: 18px;
}
.voices-title em { font-style: italic; }
.voices-sub {
  font-family: var(--body);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-mid);
}
.voices-grid {
  columns: 3;
  column-gap: 32px;
}
.voice-card {
  break-inside: avoid;
  margin: 0 0 32px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: var(--bg-paper);
}
.voice-text {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 28px;
  font-style: italic;
}
.voice-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.voice-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg);
}
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-avatar-initial {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink-mid);
  border: 1px solid var(--line);
}
.voice-person { display: flex; flex-direction: column; gap: 3px; }
.voice-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.voice-detail {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
@media (max-width: 1000px) { .voices-grid { columns: 2; } }
@media (max-width: 640px) { .voices-grid { columns: 1; max-width: 480px; margin: 0 auto; } }

/* Instagram link in header */
.nav-ig {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* Telegram section dual CTA */
.telegram-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ============= CHECKOUT PAYMENT METHODS ============= */
.checkout-methods {
  margin-top: 8px;
}
.checkout-methods-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 16px;
  text-align: center;
}
.pay-method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  margin-bottom: 10px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.pay-method:hover {
  border-color: var(--ink);
  background: var(--bg);
  transform: translateY(-1px);
}
.pay-method-name {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pay-method-desc {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.4;
  color: var(--ink-mid);
  letter-spacing: 0.02em;
}
.checkout-back {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mid);
  padding: 12px;
  margin-top: 4px;
  transition: color 0.3s;
}
.checkout-back:hover { color: var(--ink); }

/* ============= MOBILE NAV / BURGER ============= */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav.burger-open .nav-burger span:nth-child(1),
#nav.burger-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#nav.burger-open .nav-burger span:nth-child(2) { opacity: 0; }
#nav.burger-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--bg);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 90px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), visibility 0.45s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  visibility: hidden;
  max-height: 100vh;
  overflow-y: auto;
}
.mobile-nav.open { visibility: visible; }
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-link {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-decoration: none;
}
.mobile-nav-link:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  #nav {
    grid-template-columns: auto 1fr auto;
    padding: 14px 20px;
  }
  .logo { position: static; transform: none; text-align: center; }
  .nav-right { gap: 10px; }
}

/* Tighten header controls on mobile so they fit */
@media (max-width: 768px) {
  .nav-right { gap: 12px; }
  .switcher { font-size: 11px; }
  .cart-btn { font-size: 11px; white-space: nowrap; }
  /* IG lives in the burger menu on mobile — remove from top bar to free space */
  .nav-right .nav-ig { display: none; }
}
@media (max-width: 420px) {
  .nav-right { gap: 10px; }
}

/* ============================================================
   MOBILE STABILITY & LAYOUT FIXES (≤768px)
   Виправляє: стрибки скролу (100vh→svh), порожнечі, накладання
   ============================================================ */
@media (max-width: 768px) {
  /* 1. Стабільна висота — svh не стрибає коли ховається адресний рядок */
  .hero { height: 88vh; height: 88svh; min-height: 520px; }
  .film-break { height: 70vh; height: 70svh !important; min-height: 440px !important; }
  .ed-video-block { height: 70vh; height: 70svh !important; min-height: 420px !important; }
  .ed-hero { height: 88vh; height: 88svh !important; min-height: 520px !important; }
  .flatlay-banner { height: auto !important; min-height: 0 !important; }

  /* 2. Прибираємо порожнечі: великі editorial-фото на мобільному
        показуємо як cover (заповнюють), а не contain (поля) */
  .ed-photo-block { height: auto !important; min-height: 0 !important; }
  .ed-photo-block img {
    object-fit: cover !important;
    height: auto !important;
    max-height: 80svh;
    aspect-ratio: 3/4;
  }
  .ed-photo-tall { height: auto !important; }

  /* 3. Lookbook / editorial split — прибрати фіксовані висоти */
  .lookbook, .editorial-split { height: auto !important; }

  /* 4. Flatlay banner — нормальна висота на мобільному */
  .flatlay-banner-img { position: relative !important; height: auto !important; aspect-ratio: 1/1; }
  .flatlay-banner-text { position: absolute; }

  /* 5. Менше вертикальних відступів — менше "порожнечі" */
  .bundles, .voices { padding: 70px 20px 80px !important; }
  .bundles-header, .voices-header { margin-bottom: 44px !important; }

  /* 6. Прибрати горизонтальний скрол (часта причина "ходіння") */
  html, body { overflow-x: hidden; width: 100%; }
}

/* Прибираємо scale на parallax-фото у мобільних щоб не смикалось */
@media (max-width: 768px) {
  .parallax-img { transform: none !important; }
}

/* Hero quiz hook — subtle, on-brand */
.hero-quiz-link {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
  text-decoration: none;
}
.hero-quiz-link:hover {
  color: #fff;
  border-color: #fff;
}
@media (max-width: 768px) {
  .hero-quiz-link { font-size: 12px; margin-top: 20px; }
}

/* ============= ANNOUNCEMENT BAR ============= */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--ink);
  color: var(--bg-paper, #f5f3ee);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
}
.announce-item {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
/* push nav and page down so bar doesn't overlap */
nav { top: 36px !important; }
.mobile-nav { top: 36px; }
@media (max-width: 768px) {
  .announce-bar { height: 32px; }
  .announce-item { font-size: 9.5px; letter-spacing: 0.1em; }
  nav { top: 32px !important; }
  .mobile-nav { top: 32px; }
}

/* ============= PRODUCT CARD — PREMIUM HOVER ============= */
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:hover {
  transform: translateY(-6px);
}
.product-card:hover .product-photo {
  transform: scale(1.07);
}
.product-image {
  transition: background 0.4s, box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:hover .product-image {
  box-shadow: 0 24px 50px -20px rgba(20, 17, 15, 0.28);
}
/* price slides up subtly, "view" underline grows — refined */
.product-bottom { transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1); }
.product-card:hover .product-bottom { transform: translateX(2px); }

@media (hover: none) {
  .product-card:hover { transform: none; }
  .product-card:hover .product-photo { transform: none; }
  .product-card:hover .product-image { box-shadow: none; }
}

/* Safety: if reveal observer fails, force product cards visible after load */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============= WISHLIST ============= */
/* Heart button on product cards */
.wish-btn {
  position: absolute;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s, transform 0.35s, background 0.3s;
  z-index: 4;
}
.wish-on-card { top: 14px; right: 14px; }
.product-card:hover .wish-btn { opacity: 1; transform: translateY(0); }
.wish-btn svg { width: 19px; height: 19px; transition: transform 0.3s; }
.wish-btn:hover { background: #fff; }
.wish-btn:hover svg { transform: scale(1.12); }
.wish-btn.active { opacity: 1; transform: translateY(0); color: #b5402f; }
.wish-btn.active svg path { fill: #b5402f; stroke: #b5402f; }
/* keep heart visible on touch (no hover) */
@media (hover: none) {
  .wish-btn { opacity: 1; transform: none; }
}

/* Header wishlist button */
.nav-wishlist {
  position: relative;
  background: none; border: none; cursor: pointer;
  color: var(--ink);
  display: flex; align-items: center;
  padding: 0 4px;
}
.nav-wishlist svg { width: 20px; height: 20px; }
.nav-wishlist .wishlist-count {
  font-family: var(--sans);
  font-size: 10px;
  margin-left: 3px;
  min-width: 14px;
}
.nav-wishlist:not(.has-items) .wishlist-count { opacity: 0.4; }

/* Wishlist page */
.wishlist-content { max-width: 1400px; margin: 0 auto; padding: 0 40px 120px; }
.wishlist-empty {
  text-align: center;
  padding: 80px 20px 120px;
}
.wishlist-empty p {
  font-family: var(--body);
  font-size: 17px;
  color: var(--ink-mid);
  margin-bottom: 32px;
  font-style: italic;
}
@media (max-width: 768px) {
  .wishlist-content { padding: 0 16px 80px; }
  .nav-wishlist svg { width: 18px; height: 18px; }
}

/* ============= WISHLIST SHARE ============= */
.wishlist-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.wishlist-actions-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.wishlist-actions-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink);
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.share-btn:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.share-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.share-btn.shared-ok {
  border-color: #2d6a3e;
  color: #2d6a3e;
}
/* native share only shows where supported; keep it, it falls back to copy */

.wishlist-shared-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 18px 40px;
  background: var(--ink);
  color: var(--bg-paper);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.btn-sm { padding: 10px 20px; font-size: 11px; }

@media (max-width: 768px) {
  .wishlist-actions-row { flex-direction: column; width: 100%; max-width: 320px; }
  .share-btn { justify-content: center; width: 100%; }
  .wishlist-shared-banner { padding: 16px 20px; text-align: center; }
}

/* ============= PHOTO POLISH — subtle, on-brand ============= */
/* Soft fade-in as each editorial image decodes */
.ed-photo-block img,
.ed-detail-photo img,
.ed-strip-item img {
  opacity: 0;
  animation: photoFadeIn 0.9s ease forwards;
}
@keyframes photoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* If image is cached and loads instantly, ensure it still ends visible */
img[loading="lazy"] { background: var(--bg-paper); }

/* Editorial strip — gentle zoom on hover (desktop only) */
@media (hover: hover) {
  .ed-strip-item { overflow: hidden; }
  .ed-strip-item img { transition: transform 1.1s cubic-bezier(0.2,0.8,0.2,1); }
  .ed-strip-item:hover img { transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .product-photo, .ed-photo-block img, .ed-detail-photo img, .ed-strip-item img {
    opacity: 1; animation: none;
  }
}

/* Messenger share buttons — brand colour on hover only (keeps page calm) */
.share-btn-tg:hover { border-color: #229ED9; color: #229ED9; }
.share-btn-wa:hover { border-color: #25D366; color: #1faa52; }

/* ============= PERFORMANCE ============= */
/* Skip rendering off-screen heavy sections until near viewport.
   Only on stable-height sections to avoid scroll jumps. */
.bundles, .voices {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

/* ============= DELIVERY FORM ============= */
.checkout-delivery { padding-top: 8px; }
.deliv-toggle {
  display: flex; gap: 8px; margin-bottom: 16px;
}
.deliv-toggle-btn {
  flex: 1; padding: 12px; cursor: pointer;
  background: var(--bg-paper); border: 1px solid var(--line);
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.02em;
  color: var(--ink-mid); transition: all 0.25s;
}
.deliv-toggle-btn.active {
  background: var(--ink); color: var(--bg-paper); border-color: var(--ink);
}
.deliv-input {
  width: 100%; padding: 13px 14px; margin-bottom: 10px;
  background: #fff; border: 1px solid var(--line);
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  border-radius: 0; box-sizing: border-box;
}
.deliv-input:focus { outline: none; border-color: var(--ink); }
.deliv-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1411' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.deliv-select option[disabled] {
  color: #b5402f; text-decoration: line-through; font-style: italic;
}
.deliv-error {
  color: #b5402f; font-family: var(--sans); font-size: 13px;
  margin: 4px 0 12px; padding: 8px 12px; background: rgba(181,64,47,0.08);
}

/* ============= SHOP NIŠTYACHKY ============= */
/* Bestseller badge */
.product-badge-best {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 4;
  background: var(--ink);
  color: var(--bg-paper, #f5f3ee);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
}
/* if a tag already sits top-left, push bestseller down */
.product-tag + .product-badge-best { top: 44px; }

/* Low-stock urgency */
.product-stock-low {
  color: #b5402f !important;
  font-weight: 500;
}

/* Detail CTA in "added" state → invites to go to cart */
.ed-cta-button.added {
  background: var(--ink);
  color: var(--bg-paper, #f5f3ee);
  border-color: var(--ink);
}

/* ============= RUSORIZ RUNNING MARQUEE (UA only) ============= */
.rusoriz-marquee {
  position: fixed;
  top: 36px; /* sits right under the announce-bar */
  left: 0; right: 0;
  height: 30px;
  background: #b5402f;
  color: #fff;
  display: none; /* shown only in UA via JS */
  align-items: center;
  overflow: hidden;
  text-decoration: none;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
}
.rusoriz-marquee.active { display: flex; }
.rusoriz-track {
  display: inline-flex;
  white-space: nowrap;
  animation: rusoriz-scroll 28s linear infinite;
  will-change: transform;
}
.rusoriz-marquee:hover .rusoriz-track {
  animation-play-state: paused;
}
.rusoriz-seg {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding-right: 4px;
}
@keyframes rusoriz-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* When marquee is active, push nav + content down by its height */
body.has-rusoriz nav { top: 66px !important; }
body.has-rusoriz .mobile-nav { top: 66px; }
/* When the rusoriz bar is present, push content down by its height (30px) */
body.has-rusoriz .page { padding-top: 144px; }
body.has-rusoriz .hero { margin-top: -108px; padding-top: 108px; }

@media (max-width: 768px) {
  .rusoriz-marquee { top: 32px; height: 26px; }
  .rusoriz-seg { font-size: 9.5px; letter-spacing: 0.1em; }
  body.has-rusoriz nav { top: 58px !important; }
  /* sync content offset with the 26px bar on mobile */
  body.has-rusoriz .page { padding-top: 140px; }
  body.has-rusoriz .hero { margin-top: -104px; padding-top: 104px; }
}

/* ============= RUSORIZ BANNER (under country select) ============= */
.rusoriz-banner {
  display: block;
  margin: 4px 0 12px;
  padding: 11px 14px;
  background: rgba(181,64,47,0.10);
  border: 1px solid #b5402f;
  color: #b5402f;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.rusoriz-banner u { font-weight: 600; }
.rusoriz-banner:hover {
  background: #b5402f;
  color: #fff;
}

/* ============= MOBILE OPTIMIZATION (iPhone-first) ============= */
@media (max-width: 768px) {
  /* Cart: leave a sliver of overlay so users can tap outside to close */
  .cart-drawer {
    max-width: 88%;
  }
  /* Bigger close target already set globally; ensure header spacing is tappable */
  .cart-header { padding: 20px 20px; }
  .cart-header h3 { font-size: 26px; }

  /* "Continue shopping" footer button inside cart */
  .cart-continue {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    margin-top: 10px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink-mid, #6b6258);
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.05em;
    cursor: pointer;
  }
  .cart-continue:active { background: var(--ink); color: var(--bg); }

  /* Category filters: wrap neatly, centred, tappable */
  .catalog-filters,
  .filter-bar,
  .shop-filters {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 8px;
    padding: 0 12px;
  }
  .catalog-filters button,
  .filter-bar button,
  .shop-filters button,
  .filter-btn {
    flex: 0 0 auto;
    padding: 9px 14px;
    font-size: 11px;
  }
}

/* Desktop: hide the mobile-only continue button */
@media (min-width: 769px) {
  .cart-continue { display: none; }
}

/* ============= TOAST: move to top on mobile (avoid covering cart buttons) ============= */
@media (max-width: 768px) {
  .toast {
    bottom: auto;
    top: 76px; /* under the header bars */
    transform: translateX(-50%) translateY(-120px);
    z-index: 400;
    font-size: 10px;
    padding: 13px 22px;
    letter-spacing: 0.18em;
    max-width: 90%;
    text-align: center;
  }
  .toast.show { transform: translateX(-50%) translateY(0); }
}

/* ============= MOBILE: bigger tap zones in header (without bloating height) ============= */
@media (max-width: 768px) {
  .nav-right .switcher,
  .nav-right .nav-wishlist,
  .nav-right .cart-btn,
  .nav-right .nav-ig {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

/* ============= FIX: long delivery form must scroll inside cart ============= */
/* When the delivery form is shown, let the footer scroll instead of overflowing */
.cart-footer { max-height: 100%; overflow-y: auto; }
@media (max-width: 768px) {
  /* Cap footer height so the international form scrolls within the drawer */
  .cart-footer {
    max-height: 70vh;
    -webkit-overflow-scrolling: touch;
  }
  .checkout-delivery { padding-bottom: 24px; }
}
