/* TOFAN Shop — premium dark luxury, black + soft gold, Cormorant + Inter */

:root {
  --bg: #050505;
  --bg-2: #0d0d0d;
  --panel: rgba(255,255,255,0.04);
  --panel-2: rgba(255,255,255,0.06);
  --line: rgba(255,255,255,0.08);
  --text: #f3efe8;
  --muted: #a49a89;
  --gold: #b88a45;
  --gold-soft: #d4ab6a;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --radius: 28px;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 20% 15%, rgba(184,138,69,0.14), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(184,138,69,0.10), transparent 30%),
    linear-gradient(180deg, #070707, #040404 45%, #070707 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
  opacity: 0.35;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

/* ---------- Topbar: liquid glass ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  letter-spacing: 0.45em;
  font-size: 12px;
  color: var(--text);
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a,
.nav-actions a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-actions a:hover {
  color: var(--gold-soft);
}

/* Nav links as liquid glass pills */
.liquid-link {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(14px) saturate(165%);
  -webkit-backdrop-filter: blur(14px) saturate(165%);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 6px 18px rgba(0,0,0,0.18);
}

.liquid-link:hover {
  border-color: rgba(212,171,106,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 10px 22px rgba(0,0,0,0.22), 0 0 18px rgba(212,171,106,0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Language toggle (EN / RU / UZ) */
.shop-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.shop-lang-btn:hover {
  color: var(--gold-soft);
  border-color: rgba(212,171,106,0.35);
}

/* Close (X) — return to main site */
.shop-close-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 26px;
  line-height: 1;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: 0 10px 26px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.14);
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.shop-close-glyph {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}

.shop-close-x:hover {
  color: var(--gold-soft);
  border-color: rgba(212,171,106,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 0 22px rgba(212,171,106,0.08);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
}

.pill::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03));
  pointer-events: none;
}

.pill > * { position: relative; z-index: 1; }

.pill:hover {
  transform: translateY(-2px) scale(1.01);
}

.pill-primary {
  color: #f6efe3;
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(184,138,69,0.14));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 34px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.18), 0 0 0 1px rgba(184,138,69,0.12);
}

.pill-primary:hover {
  border-color: rgba(212,171,106,0.45);
  box-shadow: 0 16px 38px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.22), 0 0 28px rgba(212,171,106,0.14);
}

.pill-secondary {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: 0 10px 26px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.14);
}

.pill-secondary:hover {
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 14px 34px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.18), 0 0 22px rgba(255,255,255,0.06);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  cursor: pointer;
  padding: 0;
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  box-shadow: 0 10px 26px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.14);
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  z-index: 5;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:hover {
  color: var(--gold-soft);
  border-color: rgba(212,171,106,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 0 22px rgba(212,171,106,0.08);
}

section { position: relative; }

/* ---------- Hero ---------- */
.hero {
  padding: 68px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  line-height: 0.9;
  font-size: clamp(64px, 10vw, 138px);
  text-transform: uppercase;
  letter-spacing: -0.06em;
  position: relative;
}

.script {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(34px, 4.5vw, 72px);
  color: var(--gold-soft);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.02em;
  margin-left: 8px;
}

.lead {
  max-width: 640px;
  margin: 28px 0 32px;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.stat-card,
.glass-card,
.product-card,
.story-card,
.newsletter {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 20px;
  min-height: 150px;
}

.stat-label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 8px;
}

.stat-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-desc {
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  font-size: 14px;
}

/* ---------- Glass card + helmet ---------- */
.glass-card {
  padding: 18px;
  position: relative;
  min-height: 690px;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 20%, rgba(221, 188, 135, 0.24), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}

.drop-badge,
.mood-badge {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.drop-badge {
  top: 24px;
  right: 24px;
}

.mood-badge {
  right: 24px;
  bottom: 100px;
  text-align: right;
}

.badge-small {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.badge-title {
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
}

.helmet-wrap {
  position: absolute;
  inset: 62px 48px 174px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.helmet {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 0.8;
  filter: drop-shadow(0 0 30px rgba(184,138,69,0.12));
  animation: float 5.4s ease-in-out infinite;
}

.helmet .core,
.helmet .left,
.helmet .right,
.helmet .foot-left,
.helmet .foot-right {
  position: absolute;
  background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 10px 30px rgba(0,0,0,0.28);
}

.helmet .core {
  width: 44%;
  height: 74%;
  left: 28%;
  top: 10%;
  border-radius: 42% 42% 36% 36% / 18% 18% 30% 30%;
}

.helmet .left,
.helmet .right {
  width: 24%;
  height: 26%;
  top: 22%;
  border-radius: 46% 44% 44% 48%;
}

.helmet .left { left: 12%; transform: rotate(10deg); }
.helmet .right { right: 12%; transform: rotate(-10deg); }

.helmet .foot-left,
.helmet .foot-right {
  width: 12%;
  height: 10%;
  bottom: 2%;
  border-radius: 999px;
}

.helmet .foot-left { left: 27%; }
.helmet .foot-right { right: 27%; }

.helmet-glow {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,171,106,0.30), transparent 60%);
  top: 2%;
  left: 13%;
  filter: blur(18px);
}

.feature-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  z-index: 2;
}

.feature-title {
  font-size: 18px;
  color: var(--muted);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.feature-name {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

.feature-desc {
  color: rgba(255,255,255,0.76);
  line-height: 1.7;
  font-size: 15px;
  max-width: 420px;
}

/* ---------- Section heads ---------- */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-top: 80px;
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.section-copy {
  max-width: 520px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-size: 15px;
}

/* ---------- Product grid ---------- */
.product-grid,
.story-grid,
.lookbook-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.story-grid { grid-template-columns: 1.15fr 0.85fr 0.85fr; }
.lookbook-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; }
.footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; }

.product-card {
  padding: 16px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.28s ease, box-shadow 0.28s ease, opacity 0.55s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,138,69,0.34);
  box-shadow: 0 24px 50px rgba(0,0,0,0.46), 0 0 0 1px rgba(184,138,69,0.15) inset;
}

.product-card.slide-left {
  opacity: 0;
  transform: translateX(-70px);
}

.product-card.slide-right {
  opacity: 0;
  transform: translateX(70px);
}

.product-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.product-visual,
.lookbook-shot {
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 15%, rgba(212,171,106,0.16), transparent 26%),
    linear-gradient(180deg, #181818, #0c0c0c);
  border: 1px solid rgba(255,255,255,0.06);
}

.product-visual {
  height: 276px;
  margin-bottom: 16px;
}

.garment {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.35));
}

.hoodie {
  width: 180px;
  height: 190px;
  background: linear-gradient(180deg, #373737, #1d1d1d);
  border-radius: 32% 32% 24% 24% / 24% 24% 20% 20%;
  border: 1px solid rgba(255,255,255,0.08);
}

.hoodie::before,
.hoodie::after,
.tee::before,
.tee::after,
.pants::before,
.pants::after {
  content: "";
  position: absolute;
  background: inherit;
  border: inherit;
}

.hoodie::before {
  width: 70px;
  height: 60px;
  border-radius: 50% 50% 44% 44%;
  left: 55px;
  top: -28px;
}

.hoodie::after {
  width: 210px;
  height: 70px;
  left: -15px;
  top: 28px;
  border-radius: 32px;
  clip-path: polygon(0 40%, 16% 0, 34% 0, 42% 100%, 58% 100%, 66% 0, 84% 0, 100% 40%, 100% 100%, 0 100%);
}

.tee {
  width: 172px;
  height: 176px;
  background: linear-gradient(180deg, #404040, #1d1d1d);
  border-radius: 26% 26% 18% 18%;
  border: 1px solid rgba(255,255,255,0.08);
}

.tee::before {
  width: 210px;
  height: 62px;
  left: -19px;
  top: 26px;
  border-radius: 28px;
  clip-path: polygon(0 36%, 16% 0, 35% 0, 42% 100%, 58% 100%, 65% 0, 84% 0, 100% 36%, 100% 100%, 0 100%);
}

.tee::after {
  width: 66px;
  height: 22px;
  left: 53px;
  top: -8px;
  border-radius: 0 0 28px 28px;
  background: rgba(0,0,0,0.45);
  border: none;
}

.pants {
  width: 140px;
  height: 206px;
  background: linear-gradient(180deg, #3a3a3a, #1b1b1b);
  border-radius: 26px 26px 18px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  clip-path: polygon(10% 0, 90% 0, 100% 18%, 82% 100%, 58% 100%, 50% 56%, 42% 100%, 18% 100%, 0 18%);
}

.product-type {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 8px;
}

.product-name {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.product-desc {
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  min-height: 70px;
  font-size: 14px;
  margin-bottom: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.price {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-soft);
}

/* ---------- Story / philosophy cards ---------- */
.story-card {
  padding: 26px;
  min-height: 280px;
}

.story-card.large {
  min-height: 360px;
  background:
    radial-gradient(circle at 20% 20%, rgba(184,138,69,0.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.story-card h3 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.story-card p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  line-height: 1.8;
  font-size: 15px;
}

.rank-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.rank-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.rank-item span:first-child {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

/* ---------- Lookbook ---------- */
.lookbook-shot {
  min-height: 250px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
}

.lookbook-shot.tall { min-height: 380px; }
.lookbook-shot.medium { min-height: 310px; }

.lookbook-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.25)),
    radial-gradient(circle at 50% 0%, rgba(212,171,106,0.12), transparent 34%);
}

.lookbook-label {
  position: relative;
  z-index: 1;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

/* ---------- Newsletter ---------- */
.newsletter {
  margin: 90px 0 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.newsletter h3 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.newsletter p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 620px;
}

.newsletter-form-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
}

.email-capture-feedback {
  width: 100%;
  text-align: right;
  min-height: 1.5em;
}

.email-capture-msg {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.email-capture-msg--error {
  color: #ff8a80;
}

.email-capture-msg--success {
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}

.email-capture-form--loading .pill-primary {
  opacity: 0.85;
  pointer-events: none;
}

.newsletter-form input[type="email"]:focus {
  border-color: rgba(212, 171, 106, 0.45);
  box-shadow: 0 0 0 3px rgba(212, 171, 106, 0.12);
}

.newsletter-form .pill-primary {
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.newsletter-form .pill-primary:hover:not(:disabled) {
  transform: translateY(-2px);
}

.newsletter-form .pill-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 171, 106, 0.35);
}

.newsletter-form input[type="email"] {
  min-width: 300px;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 15px;
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--muted);
}

.newsletter-form button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ---------- Footer ---------- */
footer {
  padding: 28px 0 70px;
}

.footer-grid > div {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 18px;
}

.footer-title {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-copy,
.footer-link {
  color: rgba(255,255,255,0.70);
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.footer-link:hover {
  color: var(--gold-soft);
}

/* ---------- Light theme (sync with main site) ---------- */
html[data-theme="light"] {
  color-scheme: light;
  --bg: #f8f6f2;
  --bg-2: #eeebe6;
  --panel: rgba(0,0,0,0.04);
  --panel-2: rgba(0,0,0,0.06);
  --line: rgba(0,0,0,0.10);
  --text: #1a1814;
  --muted: #5c5549;
  --shadow: 0 20px 60px rgba(0,0,0,0.12);
}
html[data-theme="light"] body {
  background:
    radial-gradient(circle at 20% 15%, rgba(184,138,69,0.08), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(184,138,69,0.06), transparent 30%),
    linear-gradient(180deg, #faf9f7, #f2f0eb 45%, #faf9f7 100%);
  color: var(--text);
}
html[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}
html[data-theme="light"] .topbar {
  background: rgba(248,246,242,0.85);
  border-bottom-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .nav-links a,
html[data-theme="light"] .nav-actions a {
  color: rgba(0,0,0,0.7);
}
html[data-theme="light"] .nav-links a:hover,
html[data-theme="light"] .nav-actions a:hover {
  color: var(--gold-soft);
}
html[data-theme="light"] .shop-lang-btn {
  color: rgba(0,0,0,0.8);
  border-color: rgba(0,0,0,0.12);
}
html[data-theme="light"] .shop-lang-btn:hover {
  color: var(--gold);
  border-color: rgba(0,0,0,0.2);
}
html[data-theme="light"] .shop-close-x {
  color: rgba(0,0,0,0.8);
  border-color: rgba(0,0,0,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.5));
}
html[data-theme="light"] .shop-close-x:hover {
  color: var(--gold);
}
html[data-theme="light"] .nav-toggle {
  color: rgba(0,0,0,0.8);
  border-color: rgba(0,0,0,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.5));
}
html[data-theme="light"] .nav-toggle:hover {
  color: var(--gold);
  border-color: rgba(0,0,0,0.2);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.7);
}
html[data-theme="light"] .pill-primary {
  color: #1a1814;
}
html[data-theme="light"] .pill-secondary {
  color: #1a1814;
  border-color: rgba(184,138,69,0.4);
  background: rgba(0,0,0,0.03);
}
html[data-theme="light"] .lead {
  color: rgba(0,0,0,0.78);
}
html[data-theme="light"] .stat-card,
html[data-theme="light"] .glass-card,
html[data-theme="light"] .product-card,
html[data-theme="light"] .story-card,
html[data-theme="light"] .newsletter {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.75));
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .stat-desc {
  color: rgba(0,0,0,0.68);
}
html[data-theme="light"] .glass-card::before {
  background:
    radial-gradient(circle at 50% 20%, rgba(221,188,135,0.15), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .drop-badge,
html[data-theme="light"] .mood-badge {
  background: rgba(255,255,255,0.6);
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .helmet .core,
html[data-theme="light"] .helmet .left,
html[data-theme="light"] .helmet .right,
html[data-theme="light"] .helmet .foot-left,
html[data-theme="light"] .helmet .foot-right {
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.03));
  border-color: rgba(0,0,0,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 10px 30px rgba(0,0,0,0.12);
}
html[data-theme="light"] .feature-desc {
  color: rgba(0,0,0,0.72);
}
html[data-theme="light"] .section-copy {
  color: rgba(0,0,0,0.68);
}
html[data-theme="light"] .product-visual,
html[data-theme="light"] .lookbook-shot {
  background:
    radial-gradient(circle at 50% 15%, rgba(212,171,106,0.12), transparent 26%),
    linear-gradient(180deg, #e8e6e2, #ddd9d2);
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .product-desc {
  color: rgba(0,0,0,0.68);
}
html[data-theme="light"] .story-card.large {
  background:
    radial-gradient(circle at 20% 20%, rgba(184,138,69,0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.7));
}
html[data-theme="light"] .story-card p {
  color: rgba(0,0,0,0.72);
}
html[data-theme="light"] .rank-item {
  border-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
}
html[data-theme="light"] .lookbook-shot::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.3), rgba(0,0,0,0.08)),
    radial-gradient(circle at 50% 0%, rgba(212,171,106,0.08), transparent 34%);
}
html[data-theme="light"] .lookbook-label {
  color: rgba(0,0,0,0.85);
}
html[data-theme="light"] .newsletter p {
  color: rgba(0,0,0,0.68);
}
html[data-theme="light"] .newsletter-form input[type="email"] {
  border-color: rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.8);
  color: var(--text);
}
html[data-theme="light"] .newsletter-form input[type="email"]::placeholder {
  color: var(--muted);
}
html[data-theme="light"] .footer-grid > div {
  border-top-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .footer-copy,
html[data-theme="light"] .footer-link {
  color: rgba(0,0,0,0.65);
}
html[data-theme="light"] .footer-link:hover {
  color: var(--gold);
}
html[data-theme="light"] .nav-toggle {
  color: var(--text);
}

@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Product cards use .slide-left / .slide-right + .visible (set in JS) */

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-grid,
  .product-grid,
  .story-grid,
  .lookbook-grid,
  .footer-grid,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .glass-card { min-height: 620px; }
  .newsletter-form { justify-content: flex-start; }
  .newsletter-form-wrap { align-items: stretch; }
  .email-capture-feedback { text-align: left; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .nav { min-height: 72px; flex-wrap: wrap; }
  .nav-links { display: none; }
  .nav-actions a:not(.pill):not(.shop-close-x) { display: none; }
  .nav-actions { gap: 12px; }
  .shop-lang-btn { min-width: 40px; height: 40px; padding: 0 10px; }
  .shop-close-x { width: 40px; height: 40px; font-size: 24px; }
  .shop-close-glyph { transform: translateY(-0.5px); }

  /* Keep close X comfortably inside the mobile header panel */
  .nav-actions {
    padding-top: 8px;
    padding-right: 8px;
    position: relative;
    z-index: 30;
  }
  .shop-close-x {
    position: relative;
    z-index: 31;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 10;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .nav.open .nav-actions {
    width: 100%;
    order: 11;
    flex-wrap: wrap;
    padding-top: 12px;
  }
  .nav.open .nav-actions a:not(.pill) {
    display: block;
  }

  .nav-toggle { display: flex; width: 40px; height: 40px; }
  .nav.open .nav-toggle span:first-child { transform: rotate(45deg) translate(5px, 5px); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { padding-top: 40px; }
  .stats { grid-template-columns: 1fr; }
  .glass-card { min-height: 540px; }
  .helmet-wrap { inset: 54px 20px 170px; }
  .feature-name { font-size: 30px; }
  .newsletter-form input[type="email"] { min-width: 100%; }
}
