/* ═══ NOIR ÉLECTRIQUE — Luxury Campaign Design System ═══ */

:root {
  --primary: #6C3BFF;
  --secondary: #FF4D8D;
  --accent: #00E5FF;
  --bg: #0A0A0F;
  --surface: #161622;
  --surface-2: #1E1E2E;
  --text: #FFFFFF;
  --muted: #B5B5C3;
  --overlay: rgba(10,10,15,0.75);
  --border: rgba(255,255,255,0.1);
  --img-placeholder: linear-gradient(135deg, #161622 0%, #1E1E2E 50%, #161622 100%);
  --gradient: linear-gradient(135deg, #6C3BFF 0%, #FF4D8D 50%, #00E5FF 100%);
  --gradient-text: linear-gradient(135deg, #6C3BFF, #FF4D8D, #00E5FF);
  --font-display: 'Syne', sans-serif;
  --font-editorial: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
}

[data-theme="light"] {
  --bg: #F4F4F8;
  --surface: #FFFFFF;
  --surface-2: #E8E8F0;
  --text: #0A0A0F;
  --muted: #5C5C6F;
  --overlay: rgba(244,244,248,0.88);
  --border: rgba(10,10,15,0.1);
  --img-placeholder: linear-gradient(135deg, #E8E8F0 0%, #F4F4F8 50%, #E8E8F0 100%);
}
[data-theme="light"] .fs-overlay { background: linear-gradient(105deg, rgba(244,244,248,0.92) 0%, rgba(244,244,248,0.5) 50%, rgba(244,244,248,0.8) 100%); }
[data-theme="light"] .btn-ghost { border-color: rgba(10,10,15,0.2); color: var(--text); }
[data-theme="light"] .campaign-nav.scrolled { background: rgba(244,244,248,0.9); border-bottom-color: var(--border); }
[data-theme="light"] .nav-btn { border-color: var(--border); }
[data-theme="light"] .electric-loader .loader-ring::after { background: var(--bg); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

/* ─── Fast image loading (no black flash) ─── */
.img-frame {
  position: relative;
  overflow: hidden;
  background: var(--img-placeholder);
  background-size: 200% 200%;
  animation: shimmer 1.5s ease infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.img-frame.img-ready { animation: none; }
.img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.img-frame.img-ready img { opacity: 1; }
.fs-bg.img-frame, .story-visual.img-frame, .lookbook-stage.img-frame,
.h-card-img.img-frame, .mag-item.img-frame, .pdp-hero-bg.img-frame {
  width: 100%; height: 100%;
}

/* ─── Theme toggle ─── */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  font-size: 15px;
  transition: all 0.35s var(--ease);
}
.theme-toggle:hover {
  border-color: var(--primary);
  background: rgba(108,59,255,0.15);
}
.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }

/* ─── Icons in links ─── */
.nav-links a i, .footer-col a i.fa-solid, .footer-col a i.far,
.story-copy h2 i, .h-scroll-head h2 i { margin-right: 6px; opacity: 0.7; font-size: 0.85em; }
.icon-label { display: inline-flex; align-items: center; gap: 8px; }

/* ─── Events register section ─── */
.events-register {
  padding: 100px clamp(24px, 6vw, 80px);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.events-register-head { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.event-reg-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.35s var(--ease);
}
.event-reg-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(108,59,255,0.15);
}
.event-reg-card .ev-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  margin-bottom: 16px;
}
.event-reg-card .ev-date {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.event-reg-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.event-reg-card p { font-size: 14px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.event-reg-card .spots {
  font-size: 12px;
  color: var(--secondary);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px;
}

/* Event modal */
.event-modal {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease);
}
.event-modal.open { opacity: 1; visibility: visible; }
.event-modal-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}
.event-modal.open .event-modal-box { transform: translateY(0); }
.event-modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.event-modal-box .ev-selected {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.event-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all 0.3s var(--ease);
}
.event-modal-close:hover { border-color: var(--primary); color: var(--text); }
[data-theme="light"] .event-modal { background: rgba(244,244,248,0.9); }
.wish-thumb.img-frame {
  flex-shrink: 0;
  width: 100px; height: 120px;
  border-radius: 4px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Preloader ─── */
.electric-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.electric-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  animation: spin 1.2s linear infinite;
  position: relative;
}
.loader-ring::after {
  content: '';
  position: absolute; inset: 4px;
  background: var(--bg);
  border-radius: 50%;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-word {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.loader-count { font-size: 12px; color: var(--muted); letter-spacing: 0.2em; }

/* ─── Nav ─── */
.campaign-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(20px, 4vw, 48px);
  justify-content: space-between;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s;
}
.campaign-nav.scrolled {
  background: rgba(10,10,15,0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.nav-btn, .theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 0;
}
.nav-btn {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.35s var(--ease);
  position: relative;
  font-size: 15px;
}
.nav-btn:hover {
  border-color: var(--primary);
  background: rgba(108,59,255,0.2);
  transform: translateY(-2px);
}
.nav-btn .dot {
  position: absolute; top: 6px; right: 6px;
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  font-size: 0;
}
.nav-cta {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gradient);
  color: var(--text);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(108,59,255,0.4);
  color: var(--text);
}
.menu-toggle { display: none; font-size: 20px; color: var(--text); }

@media (max-width: 991px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .campaign-nav {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    grid-template-areas: "menu logo actions";
    align-items: center;
    gap: 8px;
  }
  .menu-toggle { grid-area: menu; }
  .nav-links { grid-area: menu; } /* hidden */
  .nav-logo {
    grid-area: logo;
    justify-self: center;
    text-align: center;
    min-width: 0;
  }
  .nav-actions {
    grid-area: actions;
    justify-self: end;
    flex-wrap: nowrap;
  }
  .nav-actions a[href="login.html"],
  .nav-actions a[href="wishlist.html"] { display: none; }
  .campaign-nav:not(:has(.menu-toggle)) {
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo actions";
  }
  .campaign-nav:not(:has(.menu-toggle)) .nav-logo {
    justify-self: start;
  }
}
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  opacity: 0; visibility: hidden;
  transition: all 0.5s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a,
.mobile-menu .mobile-search-btn {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
}
.mobile-menu a,
.mobile-menu .mobile-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}
.mobile-menu .mobile-search-btn {
  background: none;
  color: var(--text);
}
.mobile-menu .close-menu {
  position: absolute; top: 24px; right: 24px;
  font-size: 24px; color: var(--muted);
}

/* ─── Fullscreen sections ─── */
.fs-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.fs-bg {
  position: absolute; inset: 0;
}
.fs-bg img, .fs-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.fs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--overlay) 0%, rgba(10,10,15,0.35) 50%, rgba(10,10,15,0.65) 100%);
  pointer-events: none;
}
.fs-content {
  position: relative; z-index: 2;
  padding: clamp(100px, 12vh, 140px) clamp(24px, 6vw, 80px) 80px;
  max-width: 900px;
}
.fs-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.fs-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gradient);
}
.fs-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.fs-title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  display: block;
  font-size: 0.65em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fs-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ─── Buttons ─── */
.btn-electric {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
}
.btn-fill {
  background: var(--gradient);
  color: var(--text);
}
.btn-fill:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(108,59,255,0.35);
  color: var(--text);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--text);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(0,229,255,0.08);
  color: var(--text);
}

/* ─── Story scroll section ─── */
.story-section {
  padding: 120px 0;
  background: var(--bg);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 clamp(24px, 6vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}
.story-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
}
.story-visual img { width: 100%; height: 100%; object-fit: cover; }
.story-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(108,59,255,0.3));
}
.story-num {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.15;
  position: absolute;
  top: -20px; left: -10px;
  z-index: 1;
}
.story-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.story-copy p { color: var(--muted); font-size: 17px; line-height: 1.8; margin-bottom: 28px; }

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── Horizontal scroll ─── */
.h-scroll-wrap {
  padding: 100px 0;
  overflow: hidden;
  background: var(--bg);
}
.h-scroll-head {
  padding: 0 clamp(24px, 6vw, 80px);
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.h-scroll-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}
.h-scroll-track {
  display: flex;
  gap: 24px;
  padding: 0 clamp(24px, 6vw, 80px);
  width: max-content;
}
.h-card {
  flex: 0 0 clamp(280px, 32vw, 380px);
  position: relative;
  cursor: pointer;
  color: var(--text);
}
.h-card-img {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
.h-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.h-card:hover .h-card-img img { transform: scale(1.08); }
.h-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.8), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.h-card:hover .h-card-img::after { opacity: 1; }
.h-card-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 14px;
  background: rgba(10,10,15,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.h-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.h-card .price { color: var(--accent); font-weight: 600; font-size: 15px; }
.h-card .price del { color: var(--muted); font-weight: 400; margin-left: 8px; font-size: 13px; }

/* ─── Interactive Lookbook + Hotspots ─── */
.lookbook-interactive {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px clamp(24px, 6vw, 80px);
  background: var(--bg);
}
.lookbook-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
}
.lookbook-stage img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hotspot {
  position: absolute;
  width: 44px; height: 44px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
}
.hotspot-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--gradient);
  animation: pulse 2s ease infinite;
  opacity: 0.6;
}
.hotspot-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--text);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent);
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.8); opacity: 0; }
}
.hotspot-card {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 220px;
  padding: 16px;
  background: rgba(22,22,34,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  pointer-events: none;
}
.hotspot:hover .hotspot-card,
.hotspot.active .hotspot-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.hotspot-card img {
  width: 60px; height: 72px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}
.hotspot-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.hotspot-card .hp-price { color: var(--accent); font-size: 14px; font-weight: 600; }

/* ─── Magazine layout ─── */
.magazine-section { padding: 120px 0; background: var(--bg); }
.mag-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 0 clamp(24px, 6vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}
.mag-item { overflow: hidden; border-radius: 4px; position: relative; }
.mag-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.mag-item:hover img { transform: scale(1.05); }
.mag-item:nth-child(1) { grid-column: span 7; grid-row: span 2; min-height: 500px; }
.mag-item:nth-child(2) { grid-column: span 5; min-height: 240px; }
.mag-item:nth-child(3) { grid-column: span 5; min-height: 240px; }
.mag-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(10,10,15,0.9), transparent);
}
.mag-caption h3 {
  font-family: var(--font-editorial);
  font-size: 1.75rem;
  font-style: italic;
}

/* ─── Product story showcase ─── */
.product-story {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  background: var(--bg);
}
.product-story-visual {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.product-story-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-story-panels {
  padding: 120px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80vh;
}
.story-panel h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.story-panel p { color: var(--muted); font-size: 17px; line-height: 1.8; }

@media (max-width: 991px) {
  .product-story { grid-template-columns: 1fr; }
  .product-story-visual { height: 60vh; position: relative; }
  .product-story-panels { gap: 60px; padding: 60px 24px; }
  .mag-item { grid-column: span 6 !important; min-height: 200px !important; }
  .mag-item:nth-child(1) { grid-column: span 12 !important; }
}

/* ─── Campaign footer ─── */
.campaign-footer {
  padding: 80px clamp(24px, 6vw, 80px) 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.campaign-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0.5;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer-brand span { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-tag { color: var(--muted); font-size: 14px; max-width: 280px; }
.footer-col h6 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 10px;
  transition: opacity 0.3s, color 0.3s;
}
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-marquee {
  overflow: hidden;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-marquee-inner {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.footer-marquee-inner span {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  opacity: 0.06;
  letter-spacing: 0.05em;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ─── Immersive product page ─── */
.pdp-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.pdp-hero-bg {
  position: absolute; inset: 0;
}
.pdp-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.pdp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 50%, rgba(10,10,15,0.4) 100%);
}
.pdp-hero-content {
  position: relative; z-index: 2;
  padding: 120px clamp(24px, 6vw, 80px) 60px;
  width: 100%;
}
.pdp-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}
.pdp-meta { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; color: var(--muted); font-size: 14px; }
.pdp-price-big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.pdp-hotspot-section {
  padding: 80px clamp(24px, 6vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
}
.pdp-details-scroll {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px clamp(24px, 6vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
}
.detail-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.size-pills { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.size-pill {
  min-width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-size: 13px; font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}
.size-pill:hover, .size-pill.active {
  background: var(--primary);
  border-color: var(--primary);
}
.color-pills { display: flex; gap: 12px; }
.color-pill {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
}
.color-pill.active { border-color: var(--accent); transform: scale(1.15); }

/* ─── Search overlay ─── */
.search-overlay {
  position: fixed; inset: 0; z-index: 10002;
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(16px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: calc(var(--nav-h) + 24px) 24px 24px;
  opacity: 0; visibility: hidden;
  transition: all 0.35s var(--ease);
}
.search-overlay.open { opacity: 1; visibility: visible; }
[data-theme="light"] .search-overlay { background: rgba(244,244,248,0.92); }
.search-panel {
  width: 100%; max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transform: translateY(-12px);
  transition: transform 0.35s var(--ease);
  max-height: calc(100vh - var(--nav-h) - 48px);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.search-overlay.open .search-panel { transform: translateY(0); }
.search-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.search-head > i { color: var(--primary); font-size: 18px; }
.search-head input {
  flex: 1; border: none; background: transparent;
  color: var(--text); font-size: 18px; font-family: var(--font-body);
  outline: none;
}
.search-head input::placeholder { color: var(--muted); }
.search-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all 0.3s;
}
.search-close:hover { border-color: var(--primary); color: var(--text); }
.search-hints {
  font-size: 12px; color: var(--muted);
  padding: 12px 0 8px;
  display: flex; align-items: center; gap: 8px;
}
.search-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.search-results {
  overflow-y: auto; flex: 1;
  padding-top: 8px;
}
.search-result-item {
  display: flex; align-items: center; gap: 16px;
  padding: 12px; border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  margin-bottom: 4px;
}
.search-result-item:hover {
  background: var(--bg);
  border-color: var(--border);
}
.search-result-img {
  width: 56px; height: 68px; flex-shrink: 0; border-radius: 4px;
}
.search-result-item h4 {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700; margin-bottom: 4px;
}
.sr-brand { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.sr-price { font-size: 13px; color: var(--accent); font-weight: 600; }
.sr-arrow { margin-left: auto; color: var(--muted); font-size: 12px; }

/* ─── Product filters ─── */
.shop-filters {
  padding: 0 clamp(24px, 6vw, 80px) 32px;
  background: var(--bg);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.filter-bar {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; padding: 16px 0;
}
.filter-bar-actions { display: flex; gap: 8px; }
.filter-toggle, .filter-reset {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text);
  transition: all 0.3s var(--ease);
}
.filter-toggle:hover, .filter-reset:hover { border-color: var(--primary); background: rgba(108,59,255,0.1); }
.filter-toggle.active { border-color: var(--primary); background: rgba(108,59,255,0.15); }
.filter-count {
  margin-left: auto;
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.filter-sort {
  display: flex; align-items: center; gap: 8px;
}
.filter-sort i { color: var(--muted); font-size: 14px; }
.filter-sort select {
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  outline: none;
}
.filter-sort select:focus { border-color: var(--primary); }
.filter-panel {
  display: none;
  padding-bottom: 20px;
  gap: 24px;
}
.filter-panel.open { display: block; }
.filter-group { margin-bottom: 20px; }
.filter-group h4 {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pill {
  padding: 8px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.3s var(--ease);
}
.filter-pill:hover { border-color: var(--primary); color: var(--text); }
.filter-pill.active {
  border-color: var(--primary);
  background: rgba(108,59,255,0.15);
  color: var(--text);
}
.filter-empty {
  flex: 0 0 100%;
  min-width: 280px;
  padding: 60px 40px;
  text-align: center;
  color: var(--muted);
}
.filter-empty i { font-size: 40px; color: var(--primary); margin-bottom: 16px; display: block; }
.filter-empty p { margin-bottom: 20px; }

/* ─── Products editorial page ─── */
.editorial-shop {
  padding-top: var(--nav-h);
}
.shop-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
}
.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
}
.shop-hero h1 em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  display: block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shop-hero .shop-hero-hint--mobile { display: none; }
.h-scroll-swipe-hint { display: none; }

/* ─── Auth / Checkout minimal ─── */
.auth-electric {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-visual-side {
  position: relative;
  overflow: hidden;
}
.auth-visual-side img { width: 100%; height: 100%; object-fit: cover; }
.auth-visual-side::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(108,59,255,0.4), rgba(255,77,141,0.3));
}
.auth-form-side {
  display: flex; align-items: center; justify-content: center;
  padding: 48px 32px;
  background: var(--surface);
}
.auth-form-box { width: 100%; max-width: 380px; }
.auth-form-box h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input, .form-field select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s;
}
.form-field input:focus {
  outline: none;
  border-color: var(--primary);
}

/* ─── Toast ─── */
.toast-electric {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  padding: 16px 24px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s var(--ease);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.toast-electric.show { transform: translateY(0); opacity: 1; }
.toast-electric i { color: var(--accent); }

/* ─── Cursor glow (desktop) ─── */
.cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,59,255,0.15), transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

@media (max-width: 991px) {
  .auth-electric { grid-template-columns: 1fr; }
  .auth-visual-side { display: none; }
  .pdp-details-scroll { grid-template-columns: 1fr; }
  .cursor-glow { display: none; }
}

/* ═══ Mobile responsive ═══ */
@media (max-width: 991px) {
  :root { --nav-h: 64px; }

  .campaign-nav { padding: 0 12px; }
  .nav-actions { gap: 6px; }
  .nav-btn, .theme-toggle {
    width: 36px; height: 36px; font-size: 14px;
    flex-shrink: 0;
  }
  .nav-logo { font-size: 0.95rem; letter-spacing: 0.14em; }
  .nav-logo i { margin-right: 4px !important; }

  .h-scroll-wrap { padding: 48px 0; }
  .h-scroll-head { margin-bottom: 28px; gap: 16px; }

  /* Mobile: swipe left-to-right product row */
  .h-scroll-wrap {
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
  }
  .h-scroll-wrap .h-scroll-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: scroll !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    scrollbar-width: none;
    padding: 0 16px 8px;
    gap: 16px;
    transform: none !important;
    will-change: scroll-position;
  }
  .h-scroll-wrap .h-scroll-track::-webkit-scrollbar { display: none; }
  .h-scroll-wrap .h-card {
    flex: 0 0 min(72vw, 280px) !important;
    width: min(72vw, 280px) !important;
    max-width: min(72vw, 280px);
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .h-scroll-wrap .filter-empty {
    flex: 0 0 calc(100vw - 32px);
    width: calc(100vw - 32px);
  }
  .h-scroll-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 16px 0;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* Hero / banner */
  #hero.fs-section {
    min-height: 72svh;
    max-height: 620px;
    align-items: flex-end;
  }
  #hero .fs-bg img { object-position: center 25%; }
  #hero .fs-overlay {
    background: linear-gradient(to top, var(--bg) 8%, rgba(10,10,15,0.75) 42%, rgba(10,10,15,0.4) 100%);
  }
  [data-theme="light"] #hero .fs-overlay {
    background: linear-gradient(to top, var(--bg) 5%, rgba(244,244,248,0.92) 45%, rgba(244,244,248,0.55) 100%);
  }
  #hero .fs-content {
    padding: calc(var(--nav-h) + 16px) 20px 28px;
    width: 100%;
  }
  #hero .fs-title { font-size: clamp(2rem, 9.5vw, 2.75rem); margin-bottom: 12px; }
  #hero .fs-desc { max-width: 100%; margin-bottom: 20px; font-size: 15px; }
  #hero .fs-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  #hero .fs-hero-actions .btn-electric {
    width: 100%;
    justify-content: center;
  }

  .lookbook-interactive {
    min-height: auto;
    padding: 60px 16px;
  }
  .lookbook-stage { aspect-ratio: 4/5; }

  .story-section { padding: 72px 0; }
  .story-panel h3 { font-size: 1.85rem; }
  .story-num { font-size: 5rem; top: -10px; }

  .events-register { padding: 72px 20px; }
  .magazine-section { padding: 72px 0; }

  .shop-hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 32px) 20px 40px;
  }
  .shop-hero h1 { font-size: clamp(2.25rem, 12vw, 3.25rem); }
  .shop-hero .shop-hero-hint--desktop { display: none; }
  .shop-hero .shop-hero-hint--mobile { display: flex; align-items: center; justify-content: center; gap: 8px; }

  .pdp-hero-content { padding: 100px 20px 40px; }
  .pdp-hotspot-section, .pdp-details-scroll { padding: 48px 20px; }

  .mobile-menu {
    justify-content: flex-start;
    padding: 100px 24px 48px;
    overflow-y: auto;
    gap: 20px;
  }
  .mobile-menu a,
  .mobile-menu .mobile-search-btn { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .fs-content { padding: 90px 20px 60px; }
  .fs-title { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .fs-desc { font-size: 15px; margin-bottom: 28px; }
  .btn-electric { padding: 14px 24px; font-size: 11px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-marquee-inner span { font-size: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hotspot { width: 48px; height: 48px; }
  .hotspot-card {
    width: min(220px, 85vw);
    bottom: auto;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
  }
  .hotspot:hover .hotspot-card,
  .hotspot.active .hotspot-card {
    transform: translateX(-50%) translateY(0);
  }

  .shop-filters {
    position: static;
    padding: 0 16px 20px;
  }
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .filter-count {
    margin-left: 0;
    width: 100%;
    text-align: center;
    order: -1;
  }
  .filter-sort { width: 100%; }
  .filter-sort select { flex: 1; min-width: 0; width: 100%; }
  .filter-bar-actions {
    display: flex;
    gap: 8px;
    width: 100%;
  }
  .filter-bar-actions .filter-toggle,
  .filter-bar-actions .filter-reset {
    flex: 1;
    justify-content: center;
  }

  .search-overlay { padding: calc(var(--nav-h) + 8px) 12px 12px; }
  .search-panel { padding: 16px; max-height: calc(100dvh - var(--nav-h) - 24px); }
  .search-head input { font-size: 16px; }
  .search-result-item h4 { font-size: 13px; }
  .search-hints { font-size: 11px; flex-wrap: wrap; }

  .event-modal { padding: 16px; align-items: flex-end; }
  .event-modal-box { padding: 28px 20px; border-radius: 12px 12px 0 0; max-height: 90dvh; overflow-y: auto; }

  .toast-electric {
    left: 16px; right: 16px; bottom: 16px;
    justify-content: center;
  }

  .mag-item,
  .mag-item:nth-child(1),
  .mag-item:nth-child(2),
  .mag-item:nth-child(3) {
    grid-column: span 12 !important;
    min-height: 220px !important;
  }

  .product-story-panels { padding: 48px 20px; gap: 48px; }
  .h-scroll-head .btn-electric { width: 100%; justify-content: center; }

  .auth-form-side { padding: 32px 20px; }
  .auth-form-box h2 { font-size: 1.65rem; }

  .checkout-page { padding-left: 16px; padding-right: 16px; }
  .checkout-summary { position: static; }
  .pay-options { grid-template-columns: repeat(2, 1fr); }
  .order-modal-box { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .nav-logo i { display: none; }
  .h-scroll-wrap .h-card {
    flex: 0 0 min(78vw, 260px) !important;
    width: min(78vw, 260px) !important;
  }

  .fs-eyebrow { letter-spacing: 0.18em; font-size: 10px; }
  .fs-eyebrow::before { width: 20px; }

  .event-reg-card { padding: 20px; }
  .form-row-2 { grid-template-columns: 1fr !important; }

  .wish-row { padding: 16px; gap: 16px; }
  .wish-row h3 { font-size: 1rem; }

  .pdp-meta { gap: 12px; font-size: 13px; }
  .pdp-price-big { font-size: 1.5rem; }
}
