/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===== TOKENS ===== */
:root {
  --black:    #0a0a0a;
  --white:    #ffffff;
  --g100:     #f4f4f2;
  --g200:     #e6e6e4;
  --g400:     #9a9a96;
  --g600:     #525250;
  --ease:     cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t:        0.35s var(--ease);
  --announce: 36px;
  --header-h: 68px;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.9s var(--ease);
}

#loader.exit {
  transform: translateY(-100%);
}

.loader-logo-wrap {
  overflow: hidden;
}

.loader-logo-img {
  width: min(420px, 72vw);
  height: auto;
  display: block;
  clip-path: inset(0 100% 0 0);
  animation: logoWipe 1.0s 0.35s var(--ease-out) forwards;
}

@keyframes logoWipe {
  to { clip-path: inset(0 0% 0 0); }
}

/* ===== ANNOUNCEMENT ===== */
.announcement-bar {
  height: var(--announce);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.announcement-bar::before,
.announcement-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.announcement-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--black) 20%, transparent);
}
.announcement-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--black) 20%, transparent);
}

.ann-belt {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: ann-scroll 32s linear infinite;
}

.ann-group {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.ann-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.ann-icon {
  opacity: 0.55;
  flex-shrink: 0;
}

.ann-sep {
  display: inline-block;
  font-size: 0.3rem;
  color: rgba(255,255,255,0.22);
  flex-shrink: 0;
  letter-spacing: 0;
}

@keyframes ann-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--ann-shift, -50%)); }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--g200);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo { display: flex; align-items: center; justify-self: start; }
@keyframes logoBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
  animation: logoBreathe 3.5s ease-in-out infinite;
}
.logo:hover .logo-img {
  opacity: 0.65;
  animation-play-state: paused;
}

.header-nav { display: flex; gap: 36px; justify-self: center; }

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g600);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--black);
  transition: width 0.3s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--black); }
.nav-link.active::after { width: 100%; }

.nav-indicator {
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  background: var(--black);
  pointer-events: none;
  opacity: 0;
  transition: left 0.32s var(--ease-out), width 0.32s var(--ease-out), opacity 0.2s;
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - var(--header-h) - var(--announce));
  display: grid;
  grid-template-columns: 1fr 42%;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 72px 100px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 32px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 6.5vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  color: var(--white);
}
.hero-line { display: block; }
.hero-line--italic { font-style: italic; font-weight: 700; color: rgba(255,255,255,0.28); }

.hero-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.42);
  max-width: 380px;
  margin-bottom: 52px;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  padding: 16px 32px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: gap 0.25s;
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.hero-cta:hover::before { transform: scaleX(1); }
.hero-cta:hover { gap: 18px; }
.hero-cta span, .hero-cta svg { position: relative; z-index: 1; }

/* CTA inverted for dark hero background */
.hero .hero-cta { background: var(--white); color: var(--black); }
.hero .hero-cta::before { background: var(--g200); }

.hero-image-col {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.75);
  display: block;
}

.hero-img-year {
  position: absolute;
  bottom: -0.12em;
  right: -0.04em;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(6rem, 18vw, 22rem);
  color: rgba(255,255,255,0.055);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hero-img-tag {
  position: absolute;
  bottom: 48px;
  left: 0;
  background: var(--white);
  color: var(--black);
  padding: 14px 28px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}

/* ===== HERO ANIMATIONS ===== */
.anim-hero {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i) * 0.11s + 1.5s);
}
.anim-hero.visible { opacity: 1; transform: none; }

/* ===== MARQUEE ===== */
.marquee {
  border-top: 1px solid var(--g200);
  border-bottom: 1px solid var(--g200);
  padding: 18px 0;
  overflow: hidden;
  background: var(--g100);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}
.marquee-sep { color: var(--g400) !important; font-weight: 300 !important; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 48px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--g200);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--g400);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.section-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g600);
  transition: color 0.2s;
}
.section-link:hover { color: var(--black); }

.results-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g400);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.products-section .product-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ===== PRODUCT CARD ===== */
.product-card {
  cursor: pointer;
  background: var(--white);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), box-shadow 0.3s;
}
.product-card.visible { opacity: 1; transform: none; }
.product-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.12); z-index: 2; position: relative; }

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--g100);
}
.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-image-wrapper img { transform: scale(1.07); }
.product-image-wrapper.is-unavailable img { opacity: 0.5; }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.product-card:hover .product-overlay { opacity: 1; }

.product-overlay-btn {
  width: 100%;
  background: var(--white);
  color: var(--black);
  padding: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.product-overlay-btn:hover { background: var(--black); color: var(--white); }

.product-new-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--black);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.product-unavailable-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--g400);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.product-store-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  backdrop-filter: blur(4px);
}

.product-info {
  padding: 14px 18px 18px;
  border: 1px solid var(--g200);
  border-top: none;
  display: flex;
  flex-direction: column;
}
.product-brand {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 5px;
}
.product-info-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.product-info-left { min-width: 0; flex: 1; }
.product-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; line-height: 1.2; letter-spacing: -0.01em; }
.product-subtitle { font-size: 0.7rem; color: var(--g400); margin-top: 3px; font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-price { font-size: 0.9rem; font-weight: 600; color: var(--black); white-space: nowrap; padding-top: 1px; }
.product-price.is-unavailable { color: var(--g400); text-decoration: line-through; }
.product-store-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--g400); margin-top: 12px; display: flex; align-items: center; gap: 8px;
}
.product-store-label::before { content: ''; display: inline-block; width: 16px; height: 1px; background: var(--g400); }

/* ===== CREATORS SECTION ===== */
.creators-section { background: var(--g100); padding: 100px 48px; }
.creators-header { max-width: 1440px; margin: 0 auto 64px; display: flex; align-items: baseline; gap: 24px; }
.creators-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: -0.02em; }
.creators-sub { font-size: 0.88rem; color: var(--g400); font-weight: 400; }
.creators-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }

.creator-card {
  background: var(--white);
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out) var(--delay, 0s), transform 0.7s var(--ease-out) var(--delay, 0s);
}
.creator-card.visible { opacity: 1; transform: none; }

.creator-card-img { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.creator-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.creator-card:hover .creator-card-img img { transform: scale(1.05); }

.creator-card-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.35s; }
.creator-card:hover .creator-card-overlay { opacity: 1; }
.creator-visit-btn { border: 1px solid var(--white); color: var(--white); padding: 12px 28px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: background 0.2s, color 0.2s; }
.creator-visit-btn:hover { background: var(--white); color: var(--black); }

.creator-card-info { padding: 28px 32px 36px; display: flex; flex-direction: column; gap: 10px; }
.creator-index { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.75rem; letter-spacing: 0.15em; color: var(--g400); }
.creator-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.8rem; letter-spacing: -0.02em; }
.creator-desc { font-size: 0.88rem; line-height: 1.75; color: var(--g600); font-weight: 300; max-width: 400px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 48px 40px;
}

/* Big decorative wordmark */
.footer-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 10vw, 9rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  margin-bottom: 56px;
}

/* 4-column grid */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.09);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col-title {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--white); }

/* Trust items */
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.52);
  font-weight: 300;
}
.footer-trust-item svg {
  flex-shrink: 0;
  stroke: rgba(255,255,255,0.4);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 28px;
}
.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.22);
  font-weight: 300;
  letter-spacing: 0.03em;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-social a {
  display: flex;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}
.footer-legal-links a {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.28);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.65); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.65);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  display: flex;
  max-width: 880px; width: 100%;
  max-height: 88vh;
  overflow: hidden;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s var(--ease-out);
}
.modal-overlay.open .modal { transform: none; }

.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--g100);
  z-index: 10;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--g200); }

.modal-image { flex: 0 0 44%; overflow: hidden; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; }

.modal-info { flex: 1; padding: 52px 44px; display: flex; flex-direction: column; gap: 14px; overflow-y: auto; }
.modal-store { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--g400); }
.modal-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.9rem; letter-spacing: -0.02em; line-height: 1.1; }
.modal-subtitle { font-size: 0.83rem; color: var(--g400); font-weight: 400; }
.modal-price-row { display: flex; align-items: center; gap: 14px; }
.modal-price { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; }
.modal-status { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; }
.modal-status.in-stock { background: #f0fdf4; color: #15803d; }
.modal-status.out-of-stock { background: #fef2f2; color: #b91c1c; }
.modal-desc { font-size: 0.87rem; line-height: 1.8; color: var(--g600); font-weight: 300; padding-top: 12px; border-top: 1px solid var(--g200); }

.modal-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--black); color: var(--white);
  padding: 17px 24px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 6px;
  transition: background 0.25s;
  position: relative; overflow: hidden;
}
.modal-cta::before { content: ''; position: absolute; inset: 0; background: var(--g600); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.modal-cta:hover::before { transform: scaleX(1); }
.modal-cta span, .modal-cta svg { position: relative; z-index: 1; }
.modal-redirect-note { font-size: 0.68rem; color: var(--g400); text-align: center; font-weight: 400; letter-spacing: 0.04em; }

/* ===== SCROLL REVEAL ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.animate-on-scroll.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .products-section .product-grid { grid-template-columns: repeat(2, 1fr); }
  .header-inner { padding: 0 32px; }
  .products-section { padding: 80px 32px; }
  .creators-section { padding: 80px 32px; }
  .hero-text { padding: 64px 52px 80px; }
}

/* ===== MEGA-MENU NAV ===== */
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-chevron {
  transition: transform 0.25s ease;
  margin-left: 2px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Pont invisible qui comble le gap entre le lien et le mega-menu */
.has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 22px;
  background: transparent;
}

.nav-item > .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--g200);
  box-shadow: 0 24px 80px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 500;
  min-width: 480px;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Arrow pointer */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-left: 1px solid var(--g200);
  border-top: 1px solid var(--g200);
}

.mega-inner {
  padding: 28px 28px 0;
}

/* Sacs: side-by-side brand columns */
.mega-cols {
  display: flex;
  gap: 40px;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.mega-brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--g200);
  display: block;
  transition: color 0.2s;
}
.mega-brand-name:hover { color: var(--g600); }

.mega-models {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-models a {
  font-size: 0.82rem;
  color: var(--g600);
  transition: color 0.15s, padding-left 0.15s;
  display: block;
  font-weight: 400;
}
.mega-models a:hover { color: var(--black); padding-left: 6px; }

.mega-footer {
  border-top: 1px solid var(--g200);
  margin-top: 20px;
  padding: 14px 0;
}
.mega-footer a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g400);
  transition: color 0.2s;
}
.mega-footer a:hover { color: var(--black); }

/* Shoes: two-panel */
.mega-shoes { min-width: 520px; }

.two-panel {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  padding: 0 !important;
}

.panel-brands {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--g200);
  padding: 16px 0;
}

.panel-brand {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--g600);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  position: relative;
}
.panel-brand::after {
  content: '›';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.15s;
  font-size: 1rem;
}
.panel-brand:hover,
.panel-brand.active {
  background: var(--g100);
  color: var(--black);
  font-weight: 600;
}
.panel-brand.active::after { opacity: 1; }

.panel-models {
  padding: 16px 20px;
  position: relative;
  min-height: 160px;
}

.panel-models-inner {
  display: none;
  flex-direction: column;
  gap: 8px;
}
.panel-models-inner.active { display: flex; }

.panel-models-inner a {
  font-size: 0.82rem;
  color: var(--g600);
  transition: color 0.15s, padding-left 0.15s;
  font-weight: 400;
  padding: 3px 0;
}
.panel-models-inner a:hover { color: var(--black); padding-left: 6px; }

.mega-shoes .mega-footer {
  margin: 0;
  padding: 12px 20px;
  border-top: 1px solid var(--g200);
}

/* Product meta in card */
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--g200);
}

.product-condition {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-condition-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g400);
}
.product-condition-score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}
.product-condition-denom {
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--g400);
}
.product-condition.score-top .product-condition-score { color: #1a6b3a; }
.product-condition.score-fair .product-condition-score { color: #9a6c00; }

.product-size {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-size-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g400);
}
.product-size-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}

.product-store-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g400);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.product-store-label::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--g400);
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  border-radius: 10px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
  justify-self: end;
}
.hamburger-btn:active { background: var(--g100); }
.hamburger-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.38s var(--ease), opacity 0.2s ease, width 0.3s var(--ease);
  transform-origin: center;
  border-radius: 1px;
}

/* ===== DESKTOP HEADER SEARCH BAR ===== */
.header-search-wrap {
  grid-column: 3;
  justify-self: end;
  position: relative;
  width: min(300px, 24vw);
  display: flex;
  align-items: center;
}

.header-search-input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--g200);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
}
.header-search-input::placeholder { color: var(--g400); }
.header-search-input:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}

.header-search-icon {
  position: absolute;
  right: 12px;
  color: var(--g400);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.header-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  max-height: 420px;
  overflow-y: auto;
  z-index: 300;
  padding: 4px 0;
}
.header-search-dropdown.open { display: block; }
.header-search-dropdown .search-result { padding: 10px 14px; }
.header-search-dropdown .search-empty { padding: 16px 14px; }

/* ===== MOBILE SEARCH BUTTON ===== */
.search-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--black);
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
  justify-self: end;
  grid-column: 3;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--g100); }
.search-btn:active { background: var(--g200); }

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.22);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }

.search-box {
  position: absolute;
  top: calc(var(--announce) + var(--header-h));
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px 48px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-6px);
  transition: transform 0.22s var(--ease-out);
}
.search-overlay.open .search-box { transform: translateY(0); }

.search-input-row {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 14px 48px 14px 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--black);
  border: 1.5px solid var(--g200);
  border-radius: 10px;
  outline: none;
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
}
.search-input::placeholder { color: var(--g400); }
.search-input:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}

.search-input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--g400);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.search-close-btn {
  display: none;
}

.search-results {
  max-width: 680px;
  margin: 12px auto 0;
  max-height: 50dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--g100);
  padding-top: 4px;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--g100);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.15s;
}
.search-result:last-child { border-bottom: none; }
.search-result:active { opacity: 0.5; }

.search-result-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--g100);
}

.search-result-info {
  flex: 1;
  min-width: 0;
}
.search-result-name {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-sub {
  font-size: 0.7rem;
  color: var(--g400);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  flex-shrink: 0;
}

.search-empty {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--g400);
}

/* ===== NAV SELL BUTTON ===== */
.nav-sell-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--black);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: opacity 0.2s;
  margin-left: 12px;
}
.nav-sell-btn:hover { opacity: 0.72; }
.nav-sell-btn::after { display: none !important; }

.mobile-nav-sell {
  display: block;
  margin-top: 28px;
  padding: 16px;
  background: var(--white);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 8px;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-sell:hover { opacity: 0.82; }
.mobile-nav-sell:active { opacity: 0.5; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 900;
  transform: translateX(-100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 48px;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: calc(var(--header-h) + var(--announce));
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.mobile-nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-close:active { background: rgba(255,255,255,0.22); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  flex: 1;
}

.mobile-nav-link {
  display: block;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 7.5vw, 2.2rem);
  letter-spacing: -0.01em;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, opacity 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-link:active { opacity: 0.55; }
.mobile-nav-link.active { color: rgba(255,255,255,0.5); }

.mobile-nav-group {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 7.5vw, 2.2rem);
  letter-spacing: -0.01em;
  padding: 12px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s, opacity 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-toggle:active { opacity: 0.65; }
.mobile-nav-group.open .mobile-nav-toggle { color: rgba(255,255,255,0.5); }

.mobile-nav-toggle-icon {
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  transition: transform 0.35s var(--ease), background 0.2s, border-color 0.2s;
}
.mobile-nav-group.open .mobile-nav-toggle-icon {
  transform: rotate(45deg);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
}

.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mobile-nav-group.open .mobile-nav-sub { max-height: 800px; }

.mobile-nav-sub-inner {
  padding: 4px 20px 20px 28px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-sub-all {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.mobile-nav-sub-all:hover { color: var(--white); }

.mobile-nav-sub-link {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  font-weight: 400;
  padding: 8px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-sub-link:hover { color: var(--white); padding-left: 8px; }

/* ── Header + hero responsive: covers all phones (portrait & landscape) and tablets ── */
@media (max-width: 1024px) {
  :root {
    --header-h: 56px;
    --announce: 32px;
  }
  .header-inner { padding: 0 8px; grid-template-columns: auto 1fr auto; }
  .header-nav { display: none; }
  .logo { grid-column: 2; justify-self: center; }
  .hamburger-btn { display: flex; grid-column: 1; grid-row: 1; justify-self: start; }
  .header-search-wrap { display: none; }
  .search-btn { display: flex; grid-column: 3; grid-row: 1; }
  .logo-img { height: 26px; }
  /* Announcement: smaller spacing so text fits on narrow screens */
  .ann-item { font-size: 0.58rem; letter-spacing: 0.08em; padding: 0 24px; gap: 6px; }
  .ann-icon { width: 10px; height: 10px; }

  /* Hero: stacked layout for phones and tablets */
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 0; }
  .hero-image-col { height: 56vw; max-height: 420px; order: -1; }
  .hero-img { height: 100%; filter: grayscale(80%) brightness(0.75); }
  .hero-img-year { display: none; }
  .hero-img-tag { bottom: 16px; padding: 12px 20px; font-size: 0.62rem; }
  .hero-text { padding: 32px 24px 64px; justify-content: flex-start; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-title { font-size: clamp(3rem, 9vw, 4.5rem); line-height: 0.92; margin-bottom: 20px; }
  .hero-desc { margin-bottom: 32px; max-width: 100%; }
  .hero-cta { align-self: stretch; justify-content: center; border-radius: 14px; padding: 18px 24px; }
}

@media (max-width: 768px) {
  /* ── Portrait phone overrides (on top of the 1024px block above) ── */
  .hero-text { padding: 24px 20px 48px; }
  .hero-image-col { height: 60vw; max-height: 300px; }
  .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.22em; margin-bottom: 16px; }
  .hero-title {
    font-size: clamp(2.6rem, 10vw, 3.4rem);
    margin-bottom: 14px;
    line-height: 0.92;
  }
  .hero-desc {
    font-size: 0.84rem;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .hero-cta { font-size: 0.82rem; padding: 16px 20px; }

  /* ── Products section ── */
  .products-section { padding: 40px 16px; }
  .section-header { margin-bottom: 24px; padding-bottom: 16px; }
  .section-title { font-size: clamp(1.9rem, 7.5vw, 2.8rem); }
  .section-cta { margin-top: 28px; }
  .section-cta .hero-cta { border-radius: 14px; width: 100%; justify-content: center; }

  /* ── Product grid ── */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* ── Product card: Apple style (rounded, shadow, tap feedback) ── */
  .product-card {
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .product-card.visible { transform: none; }
  .product-card:active {
    transform: scale(0.96) !important;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06) !important;
    transition: transform 0.1s ease, box-shadow 0.1s ease !important;
  }
  .product-image-wrapper { border-radius: 18px 18px 0 0; }
  .product-info {
    padding: 10px 13px 14px;
    border: none;
    border-radius: 0 0 18px 18px;
  }
  .product-name { font-size: 0.82rem; line-height: 1.2; }
  .product-subtitle { font-size: 0.62rem; margin-top: 2px; }
  .product-price { font-size: 0.82rem; white-space: normal; }
  .product-new-badge,
  .product-unavailable-badge { top: 10px; left: 10px; font-size: 0.55rem; padding: 4px 8px; border-radius: 4px; }
  .product-store-badge { top: 10px; right: 10px; font-size: 0.55rem; padding: 4px 8px; border-radius: 4px; }
  .product-meta { margin-top: 6px; }
  .product-condition { padding: 2px 6px; }
  .product-condition-score { font-size: 0.72rem; }
  .product-condition-denom { font-size: 0.55rem; }
  .product-store-label { font-size: 0.6rem; }

  /* ── About / Creators ── */
  .creators-section { padding: 40px 16px; }
  .creators-header { flex-direction: column; gap: 6px; margin-bottom: 24px; }
  .creators-title { font-size: clamp(1.9rem, 7.5vw, 2.8rem); }
  .creators-sub { font-size: 0.82rem; }
  .creators-grid { grid-template-columns: 1fr; gap: 12px; }
  .creator-card {
    border-radius: 18px;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease-out) var(--delay, 0s), transform 0.5s var(--ease-out) var(--delay, 0s);
  }
  .creator-card.visible { transform: none; }
  .creator-card-img { border-radius: 18px 18px 0 0; }
  .creator-card-info { padding: 20px 20px 28px; gap: 8px; }
  .creator-name { font-size: 1.5rem; }
  .creator-desc { font-size: 0.83rem; max-width: 100%; }

  /* ── Footer ── */
  .footer-inner { padding: 40px 20px 28px; }
  .footer-wordmark { font-size: clamp(2.5rem, 14vw, 5rem); margin-bottom: 32px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; padding: 32px 0; }
  .footer-col-trust { grid-column: 1 / -1; }
  .footer-trust-item { font-size: 0.78rem; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; padding-top: 20px; }

  /* ── Modal: iOS bottom sheet ── */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
    background: rgba(10,10,10,0.5);
  }
  .modal {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    max-height: 92dvh;
    overflow-y: auto;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
    padding-top: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .modal::before {
    content: '';
    display: block;
    width: 36px;
    height: 4px;
    background: var(--g200);
    border-radius: 2px;
    margin: 10px auto;
    flex-shrink: 0;
  }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal-image {
    flex: 0 0 auto;
    height: 55vw;
    max-height: 260px;
    overflow: hidden;
  }
  .modal-image img { object-position: center top; }
  .modal-close {
    top: 60px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
  }
  .modal-info { padding: 20px 20px 52px; gap: 12px; }
  .modal-name { font-size: 1.4rem; }
  .modal-price { font-size: 1.1rem; }
  .modal-cta { border-radius: 14px; padding: 18px; font-size: 0.8rem; }
}

@media (max-width: 430px) {
  :root { --announce: 28px; }
  .ann-item { font-size: 0.53rem; padding: 0 18px; }
  .announcement-bar::before, .announcement-bar::after { width: 40px; }
  .hero-text { padding: 20px 16px 44px; }
  .hero-image-col { height: 64vw; max-height: 260px; }
  .hero-title { font-size: clamp(2.2rem, 12vw, 3rem); margin-bottom: 12px; }
  .hero-desc { font-size: 0.8rem; margin-bottom: 24px; }
  .hero-cta { padding: 16px 20px; font-size: 0.74rem; }
  .products-section { padding: 32px 12px; }
  .section-cta { margin-top: 20px; }
  .section-cta .hero-cta { border-radius: 14px; width: 100%; justify-content: center; }
  .creators-section { padding: 32px 12px; }
  .product-grid { gap: 10px; }
  .modal-image { height: 62vw; }
  .footer-inner { padding: 32px 16px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 20px; }
  .footer-col-trust { grid-column: auto; }
  .search-box { padding: 14px 16px 16px; }
  .search-results { padding-bottom: 8px; }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
  z-index: 10000;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
}

/* ===== HERO PARALLAX ===== */
.hero-image-col { will-change: transform; }
