/* =========================================
   LACCITUDE — Main Stylesheet (Light Theme)
   ========================================= */

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

:root {
  /* Palette street art — fond sombre, couleurs neon */
  --bg:       #0C0C0C;
  --bg-2:     #141414;
  --bg-3:     #1C1C1C;
  --cream:    #1A1A1A;
  --black:    #0C0C0C;
  --dark:     #111111;
  --mid:      #888888;
  --grey:     #999999;
  --grey-lt:  #BBBBBB;
  --white:    #FFFFFF;
  --text:     #F0F0F0;
  --border:   rgba(255,255,255,0.08);

  /* Accents neon street art */
  --brand:    #FF4500;
  --brand-2:  #FFD100;
  --brand-3:  #00FF88;
  --brand-4:  #00BFFF;
  --brand-5:  #FF2D6B;

  /* Typo */
  --font-sans:    'Space Grotesk', system-ui, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-display: 'Bangers', cursive;

  /* Espacement */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 8rem;

  /* Rayons */
  --r-sm:   0.5rem;
  --r-md:   1rem;
  --r-lg:   1.75rem;
  --r-xl:   3rem;
  --r-full: 999px;

  /* Transitions */
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s var(--ease);
  --t-mid:  0.4s var(--ease);
  --t-slow: 0.7s var(--ease);

  /* Ombres */
  --shadow-sm:  0 2px 8px rgba(17,17,17,0.06);
  --shadow-md:  0 8px 32px rgba(17,17,17,0.1);
  --shadow-lg:  0 24px 64px rgba(17,17,17,0.14);
  --shadow-brand: 0 8px 32px rgba(255,69,0,0.25);

  --max-w:    1280px;
  --header-h: 70px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-sans);
  background: #0C0C0C;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('../../images/hero/hero-graffiti.png') left calc(var(--header-h) + 8px) / 100% auto no-repeat;
  z-index: -1;
}

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

/* ---- Cursor custom ---- */
#cursor {
  width: 10px; height: 10px;
  background: var(--brand);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .2s;
}
#cursor-follower {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255,69,0,.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .25s var(--ease);
}
body:not([data-cursor-ready]) #cursor,
body:not([data-cursor-ready]) #cursor-follower { opacity: 0; }

/* ---- Loader ---- */
#loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo { width: 160px; margin: 0 auto 1.5rem; }
.loader-logo text { fill: white; }
.loader-line {
  height: 3px; background: var(--brand);
  width: 0; animation: loaderLine 1.2s var(--ease) forwards;
  border-radius: 2px;
}
@keyframes loaderLine { to { width: 100%; } }

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

/* ---- Boutons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: .875rem; font-weight: 700;
  letter-spacing: .02em;
  transition: all var(--t-fast);
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn:active { transform: scale(.97); }

.btn--primary {
  background: var(--brand); color: var(--white);
  box-shadow: 0 4px 20px rgba(255,69,0,.4);
}
.btn--primary:hover { filter: brightness(1.15); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,69,0,.5); }

.btn--accent {
  background: var(--brand); color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,69,0,.35); }

.btn--ghost {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); background: rgba(255,69,0,.08); }

.btn--outline {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--border);
}
.btn--outline:hover { border-color: var(--brand-2); color: var(--brand-2); }

.btn--white {
  background: var(--white); color: var(--black);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--sm { padding: .55rem 1.2rem; font-size: .8rem; }

.btn-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background var(--t-fast);
  position: relative;
}
.btn-icon:hover { background: rgba(255,255,255,.1); }

/* =========================================
   HEADER
   ========================================= */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--header-h);
  transition: background var(--t-mid), box-shadow var(--t-mid);
  background: rgba(10,10,10,.60);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#site-header.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}

.nav-container {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(1rem,4vw,3rem);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(1rem,2vw,2rem);
}

.nav-logo {
  display: flex; align-items: center; gap: 6px;
  font-size: 1.2rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.nav-logo:hover { opacity: .7; }
.logo-dot {
  width: 7px; height: 7px;
  background: var(--brand); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.nav-links {
  display: flex; align-items: center;
  gap: clamp(1rem,1.8vw,2rem); flex-shrink: 1;
}
.nav-logo { flex-shrink: 0; }
.nav-actions { flex-shrink: 0; }

.nav-link {
  font-size: .875rem; font-weight: 700;
  color: rgba(255,255,255,.92);
  transition: color var(--t-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-fast);
  border-radius: 2px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link--highlight { color: var(--brand); font-weight: 700; }
.nav-link--highlight:hover { color: var(--brand); }

.nav-actions { display: flex; align-items: center; gap: .5rem; }

.cart-count {
  position: absolute; top: 3px; right: 3px;
  width: 16px; height: 16px;
  background: var(--brand); color: white;
  border-radius: 50%; font-size: .6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--t-fast);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(12,12,12,.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem 2rem;
  transform: translateY(calc(-100% - var(--header-h)));
  transition: transform var(--t-mid);
  border-bottom: 1px solid var(--border);
  z-index: 998;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu a {
  display: block; padding: .9rem 0;
  font-size: 1.15rem; font-weight: 700;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast);
}
.mobile-menu a:hover { color: var(--brand); }

/* =========================================
   SECTIONS
   ========================================= */
.section { padding: clamp(4rem,10vw,8rem) 0; }
.section-header { text-align: center; margin-bottom: clamp(3rem,6vw,5rem); }

.section-tag {
  display: inline-block;
  font-size: .65rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 1rem;
  padding: .3rem 1rem;
  border: 1.5px solid rgba(255,69,0,.25);
  border-radius: var(--r-full);
  background: rgba(255,69,0,.05);
}
.section-tag--dark { color: var(--black); border-color: var(--border); background: rgba(17,17,17,.04); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--brand);
  text-transform: none;
  letter-spacing: 0;
}
.section-title--white { color: var(--white); }

.section-subtitle {
  font-size: 1rem; color: var(--grey);
  max-width: 520px; margin: 0 auto; line-height: 1.75;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  padding: calc(var(--header-h) + 3rem) clamp(1rem, 4vw, 3rem) 3rem;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero::before, .hero::after { display: none; }
.hero-content {
  flex: 1;
  min-width: 0;
}

/* Tag */
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.25rem;
  padding: .4rem 1rem;
  background: rgba(255,69,0,.08);
  border: 1.5px solid rgba(255,69,0,.2);
  border-radius: var(--r-full);
}
.tag-dot {
  width: 6px; height: 6px;
  background: var(--brand); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Titre */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 4px 4px 0 rgba(255,69,0,.3);
}

/* "Avec LACCITUDE" — petit tag coloré au-dessus */
.title-intro {
  display: block;
  font-size: 0.28em;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .5em;
}

/* "lacets," — gradient orange → jaune */
.title-pop {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* "t'as l'" — italic serif, discret */
.hero-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: rgba(255,255,255,.55);
  font-weight: 400;
  font-size: .75em;
  text-shadow: none;
  text-transform: none;
  letter-spacing: 0;
}

/* "attitude." — contour orange */
.hero-title-outline {
  -webkit-text-stroke: 3px var(--brand);
  color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem; color: var(--grey);
  line-height: 1.7; margin-bottom: 2.25rem;
  max-width: 440px;
}

.hero-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.stat-number {
  display: block; font-size: 1.75rem; font-weight: 900;
  color: var(--white); font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--grey);
}
.stat-divider { width: 1px; height: 2.5rem; background: var(--border); }

/* ---- Hero visuel sneaker ---- */
.hero-visual {
  flex-shrink: 0;
  width: clamp(260px, 40vw, 420px);
}

/* Diaporama sneakers hero */
.hero-slideshow {
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  overflow: hidden !important;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.22);
  position: relative !important;
  display: block;
}
.hero-slideshow .slide {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slideshow .slide.active { opacity: 1; }

/* Sticker flottants */
.sticker {
  position: absolute;
  font-size: 1.75rem;
  animation: floatSticker 3s ease-in-out infinite;
  user-select: none; pointer-events: none;
}
.sticker--1 { top: 5%;  right: 0%;   animation-delay: 0s; }
.sticker--2 { top: 20%; left: -5%;   animation-delay: .5s; }
.sticker--3 { bottom: 25%; right: -3%; animation-delay: 1s; }
.sticker--4 { top: 50%; left: 2%;   animation-delay: 1.5s; }

/* Badge tournant */
.hero-image-badge {
  position: absolute;
  top: -10px; right: -10px;
  width: 90px; height: 90px;
  animation: rotateBadge 10s linear infinite;
}
.badge-circle { width: 100%; height: 100%; }
.badge-circle text {
  font-size: 10.5px; fill: var(--black);
  font-family: var(--font-sans); font-weight: 700; letter-spacing: 2.5px;
}
.badge-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--brand);
}

/* Card flottante */
.hero-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  display: flex; align-items: center; gap: .65rem;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  font-size: .8rem;
}
.hero-floating-card--1 { bottom: 15%; left: -30px; }
.hero-floating-card--2 { top: 12%; right: -20px; }
.fcard-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-3); flex-shrink: 0; animation: pulse 2s infinite; }
.fcard-text { display: flex; flex-direction: column; gap: 1px; }
.fcard-text strong { font-weight: 700; font-size: .85rem; }
.fcard-text span { font-size: .7rem; color: var(--grey); }

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: clamp(1rem,4vw,3rem);
  display: flex; align-items: center; gap: .75rem;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--grey-lt);
  transition: color var(--t-fast);
}
.hero-scroll:hover { color: var(--black); }
.scroll-line {
  width: 36px; height: 1.5px;
  background: var(--bg-3); position: relative; overflow: hidden;
  border-radius: 2px;
}
.scroll-line::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--brand);
  animation: scrollLine 1.5s ease-in-out infinite;
}

/* =========================================
   MARQUEE
   ========================================= */
.marquee-section {
  overflow: hidden;
  background: rgba(10,10,10,.82);
  padding: .9rem 0;
}
.marquee-track { display: flex; overflow: hidden; }
.marquee-content {
  display: flex; align-items: center; gap: 2rem;
  padding-right: 2rem; flex-shrink: 0;
  animation: marquee 18s linear infinite;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.marquee-dot { color: var(--brand); font-size: .55rem; }

/* =========================================
   COLLECTIONS
   ========================================= */
.collections { background: rgba(12,12,12,.80); }

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}

.collection-card {
  background: var(--bg-3);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.07);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  border-color: var(--brand);
}
.collection-card--featured { grid-row: span 2; }

.card-image-wrap { position: relative; overflow: hidden; }
.collection-card--featured .card-image-wrap { height: 420px; }
.collection-card:not(.collection-card--featured) .card-image-wrap { height: 210px; }

.card-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.collection-card:hover .card-image-wrap img { transform: scale(1.05); }

.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.4) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  opacity: 0; transition: opacity var(--t-mid);
}
.collection-card:hover .card-overlay { opacity: 1; }

.card-badge {
  display: inline-block;
  padding: .25rem .7rem; border-radius: var(--r-full);
  font-size: .62rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  width: fit-content;
}
.card-badge--new { background: var(--brand); color: white; }
.card-badge--bestseller { background: var(--brand-2); color: var(--black); }
.card-badge--limited { background: rgba(255,255,255,.85); color: var(--black); }

.card-quick-view {
  align-self: flex-end;
  padding: .45rem .9rem;
  background: white;
  color: var(--black);
  border-radius: var(--r-full);
  font-size: .72rem; font-weight: 700;
  transition: background var(--t-fast);
}
.card-quick-view:hover { background: var(--brand); color: white; }

.card-body { padding: 1.1rem 1.25rem; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: .4rem; }
.card-category { font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); }

.card-title { font-size: 1.05rem; font-weight: 800; margin-bottom: .3rem; letter-spacing: -.01em; color: var(--white); }
.card-desc { font-size: .78rem; color: var(--grey); line-height: 1.5; margin-bottom: .9rem; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-size: 1.05rem; font-weight: 800; color: var(--brand-2); }

.collection-card--cta {
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  border-color: var(--black);
  min-height: 200px; cursor: pointer;
  transition: background var(--t-fast);
}
.collection-card--cta:hover { background: var(--dark); }
.cta-card-inner { text-align: center; padding: 2rem; }
.cta-card-icon { font-size: 2rem; color: var(--brand-2); margin-bottom: 1rem; animation: rotateIcon 4s linear infinite; }
.cta-card-inner h3 { font-size: 1.05rem; font-weight: 800; color: white; margin-bottom: .4rem; }
.cta-card-inner p { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }

/* =========================================
   PROCESS
   ========================================= */
.process { background: rgba(10,10,10,.82); }
.process .section-title { color: var(--white); }
.process .section-tag { color: var(--brand-2); border-color: rgba(255,209,0,.3); background: rgba(255,209,0,.08); }

.process-steps {
  display: flex; align-items: flex-start;
  justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.process-step {
  flex: 1; min-width: 180px; max-width: 230px;
  text-align: center; padding: 2rem 1.5rem;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  transition: border-color var(--t-mid), background var(--t-mid), transform var(--t-mid);
}
.process-step:hover {
  border-color: rgba(255,69,0,.4);
  background: rgba(255,69,0,.06);
  transform: translateY(-4px);
}
.step-number { font-size: .62rem; font-weight: 800; letter-spacing: .2em; color: var(--brand); margin-bottom: 1rem; }
.step-icon { width: 52px; height: 52px; margin: 0 auto 1.25rem; color: rgba(255,255,255,.4); transition: color var(--t-fast); }
.process-step:hover .step-icon { color: var(--brand); }
.step-icon svg { width: 100%; height: 100%; }
.step-title { font-size: 1rem; font-weight: 800; color: white; margin-bottom: .5rem; }
.step-desc { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.process-arrow { font-size: 1.5rem; color: rgba(255,255,255,.15); padding-top: 3.5rem; flex-shrink: 0; }

/* =========================================
   CONFIGURATEUR
   ========================================= */
.configurateur { position: relative; overflow: hidden; background: rgba(20,20,20,.82); }

/* Grille 3 colonnes */
.config3-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) { .config3-grid { grid-template-columns: 1fr; } }

.config3-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.config3-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
}
.config3-title {
  font-size: .95rem; font-weight: 700; margin-bottom: 1rem;
}

/* Zone d'upload */
.upload-zone {
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; padding: 1.75rem 1rem;
  border: 2px dashed rgba(255,255,255,.18);
  border-radius: var(--r-md);
  cursor: pointer; text-align: center;
  transition: border-color .2s, background .2s;
  color: rgba(255,255,255,.55);
}
.upload-zone:hover, .upload-zone.has-file {
  border-color: var(--brand);
  background: rgba(255,69,0,.06);
}
.upload-label { font-size: .88rem; font-weight: 600; color: var(--white); }
.upload-sub { font-size: .72rem; }
.upload-filename { font-size: .72rem; color: var(--brand-3); font-weight: 600; margin-top: .25rem; }

/* Aperçu basket + lacets avec motif superposé */
.basket-preview-wrap,
.lacets-preview-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: .75rem;
  background: #111;
}
.basket-preview-img,
.lacets-preview-img {
  width: 100%; height: auto;
  display: block;
  border-radius: var(--r-md);
}
.motif-overlay {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-size: 28px 28px;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.motif-overlay.active { opacity: 0.75; }
.preview-note { font-size: .68rem; opacity: .4; text-align: center; margin-top: .5rem; }

/* Formulaire commande */
.cfg-input {
  width: 100%; display: block;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: .6rem .85rem;
  color: var(--white); font-family: var(--font-sans); font-size: .82rem;
  outline: none; margin-bottom: .6rem;
  transition: border-color .2s;
}
.cfg-input:focus { border-color: var(--brand); }
.cfg-file-wrap { margin-bottom: .6rem; }
.cfg-file-label {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,.55);
  cursor: pointer; padding: .6rem .85rem;
  border: 1px dashed rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  transition: border-color .2s;
}
.cfg-file-label:hover { border-color: var(--brand); color: var(--white); }
#motif-input {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0; overflow: hidden;
  pointer-events: none;
}
.cfg-submit { width: 100%; margin-top: .5rem; justify-content: center; gap: .5rem; }

/* =========================================
   LIFESTYLE
   ========================================= */
.lifestyle { background: rgba(20,20,20,.80); }

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.lifestyle-item {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; aspect-ratio: 4/3; cursor: pointer;
}
.lifestyle-item--tall { grid-row: span 2; aspect-ratio: unset; }
.lifestyle-item--wide { grid-column: span 2; aspect-ratio: 16/9; }
.lifestyle-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow); filter: brightness(.9);
}
.lifestyle-item:hover img { transform: scale(1.05); filter: brightness(1); }
.lifestyle-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.6) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 1.25rem;
  opacity: 0; transition: opacity var(--t-mid);
}
.lifestyle-item:hover .lifestyle-overlay { opacity: 1; }
.lifestyle-overlay span { font-size: .78rem; font-weight: 700; color: white; }
.lifestyle-ig {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  margin-top: 2rem; font-size: .85rem; color: var(--grey); text-align: center;
}
.lifestyle-ig svg { width: 20px; height: 20px; color: var(--brand); }
.lifestyle-ig strong { color: var(--black); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: rgba(12,12,12,.80); }

.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.25rem; }
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 1.75rem;
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
}
.testi-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--brand-2); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-card > p { font-size: .875rem; line-height: 1.75; color: rgba(255,255,255,.65); margin-bottom: 1.25rem; font-style: italic; }
.testi-card footer { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 800; flex-shrink: 0;
}
.testi-card footer div { display: flex; flex-direction: column; }
.testi-card footer strong { font-size: .875rem; font-weight: 700; }
.testi-card footer span { font-size: .72rem; color: var(--grey); }

/* =========================================
   ABOUT
   ========================================= */
.about { background: rgba(20,20,20,.80); }
.about-container { display: flex; align-items: center; gap: clamp(3rem,6vw,6rem); flex-wrap: wrap; }
.about-visual { flex: 0 0 auto; width: clamp(280px,40%,480px); position: relative; }
.about-image-wrap { border-radius: var(--r-lg); overflow: hidden; }
.about-image-wrap img { width: 100%; height: 560px; object-fit: cover; transition: transform var(--t-slow); }
.about-image-wrap:hover img { transform: scale(1.03); }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--brand); border-radius: var(--r-md);
  padding: 1.25rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-brand);
}
.about-badge-year { display: block; font-size: 1.75rem; font-weight: 900; line-height: 1; color: white; }
.about-badge-text { display: block; font-size: .68rem; font-weight: 700; opacity: .85; margin-top: .25rem; color: white; }
.about-content { flex: 1; min-width: 280px; }
.about-content .section-title { text-align: left; margin-bottom: 1.5rem; }
.about-content p { font-size: .95rem; color: var(--grey); line-height: 1.8; margin-bottom: 1rem; }
.about-values { display: flex; flex-direction: column; gap: .75rem; margin: 2rem 0 2.5rem; }
.value-item {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1.25rem;
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.value-item:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.value-icon { font-size: 1.5rem; flex-shrink: 0; }
.value-item strong { display: block; font-size: .875rem; font-weight: 800; }
.value-item span { font-size: .72rem; color: var(--grey); }

/* =========================================
   NEWSLETTER
   ========================================= */
.newsletter { background: rgba(10,10,10,.82); }
.newsletter-container { display: flex; align-items: flex-start; gap: 4rem; flex-wrap: wrap; }
.newsletter-content { flex: 1; min-width: 280px; }
.newsletter-title {
  font-size: clamp(1.75rem,3.5vw,2.75rem);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -.03em; margin-bottom: .75rem;
  color: var(--white);
}
.newsletter-title em { font-style: italic; font-family: var(--font-serif); color: var(--brand); }
.newsletter-content > p { font-size: .9rem; color: rgba(255,255,255,.45); margin-bottom: 2rem; }
.newsletter-form { max-width: 500px; }
.form-group {
  display: flex;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-full); padding: .3rem;
  transition: border-color var(--t-fast);
}
.form-group:focus-within { border-color: rgba(255,69,0,.5); }
.form-group input {
  flex: 1; background: none; border: none; outline: none;
  padding: .6rem 1rem; color: white;
  font-family: var(--font-sans); font-size: .9rem; min-width: 0;
}
.form-group input::placeholder { color: rgba(255,255,255,.25); }
.form-legal { margin-top: .75rem; font-size: .68rem; color: rgba(255,255,255,.3); line-height: 1.5; }
.form-legal a { color: rgba(255,255,255,.5); text-decoration: underline; }
.newsletter-perks { flex: 0 0 auto; display: flex; flex-direction: column; gap: .9rem; padding-top: .5rem; }
.perk { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: rgba(255,255,255,.65); }
.perk-icon { font-size: 1.25rem; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer { background: rgba(10,10,10,.90); border-top: 1px solid rgba(255,255,255,.06); }
.footer-container {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-top: 4rem; padding-bottom: 3rem;
}
.footer-logo { font-size: 1.2rem; font-weight: 900; letter-spacing: .1em; display: block; margin-bottom: .75rem; color: white; transition: opacity var(--t-fast); }
.footer-logo:hover { opacity: .7; }
.footer-brand > p { font-size: .82rem; color: rgba(255,255,255,.35); margin-bottom: 1.5rem; max-width: 220px; }
.footer-socials { display: flex; gap: .65rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: background var(--t-fast), color var(--t-fast);
}
.social-link:hover { background: var(--brand); color: white; }
.social-link svg { width: 16px; height: 16px; }
.footer-nav h3 { font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { font-size: .82rem; color: rgba(255,255,255,.45); transition: color var(--t-fast); }
.footer-nav a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.25rem 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.25); }
.footer-payments { display: flex; gap: .4rem; }
.footer-payments span { font-size: .68rem; padding: .2rem .55rem; border: 1px solid rgba(255,255,255,.1); border-radius: 3px; color: rgba(255,255,255,.3); }

/* =========================================
   TOAST
   ========================================= */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--black); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 1rem 1.5rem;
  font-size: .875rem; color: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px); opacity: 0;
  transition: all var(--t-mid); z-index: 5000;
  pointer-events: none; max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero { flex-direction: column; align-items: center; padding-top: calc(var(--header-h) + 1.5rem); text-align: center; }
  .hero-visual { width: min(340px, 85vw); }
  .hero-cta { justify-content: center; }
  .hero-scroll { display: none; }

  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collection-card--featured { grid-row: auto; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  .collections-grid { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-item--tall { grid-row: auto; }
  .lifestyle-item--wide { grid-column: auto; }
  .config-container { flex-direction: column; }
  .config-mockup { width: 100%; }
  .about-container { flex-direction: column; }
  .about-visual { width: 100%; max-width: 400px; }
  .process-arrow { display: none; }
  .process-steps { gap: 1rem; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  #cursor, #cursor-follower { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.75rem; }
  .hero-stats { gap: 1rem; }
  .footer-container { grid-template-columns: 1fr; }
  .newsletter-container { gap: 2rem; }
  .form-group { flex-direction: column; border-radius: var(--r-md); padding: .75rem; }
  .form-group .btn { width: 100%; justify-content: center; }
}

/* ---- Focus visible ---- */
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }
