/* ─── RESET & VARIABLES ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Fond — blanc pur dominant, gris très clair pour sections alternées */
  --bg:        #FFFFFF;
  --bg2:       #FFFFFF;
  --bg3:       #F7F7F7;
  --bg4:       #EFEFEF;
  --surface:   #F7F7F7;
  --border:    #E0E0E0;
  --border2:   #CCCCCC;

  /* Noir structurel — texte fort, CTA, nav */
  --ink:       #0A0A0A;
  --ink2:      #1A1A1A;
  --ink3:      #2E2E2E;

  /* Accent de marque — le dégradé du logo, réservé aux petits détails */
  --brand-blue:   #4F7CDB;
  --brand-violet: #8B5FBF;
  --brand-pink:   #E0457E;
  --brand-orange: #F4A33C;
  --gradient-brand: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-violet) 35%, var(--brand-pink) 70%, var(--brand-orange) 100%);

  /* "Accent" du site = une couleur neutre par défaut (noir),
     le gradient de marque est appliqué ponctuellement via .brand-accent */
  --red:       #1A1A1A;
  --red-dark:  #0A0A0A;
  --red-light: #4F7CDB;

  /* var(--white) reste utilisée partout dans le CSS existant comme couleur "forte" :
     on la fait pointer vers le noir structurel */
  --white:     var(--ink);
  --hero-text:    #FFFFFF; /* titre du hero, sur fond sombre */
  --hero-eyebrow: #F4A33C; /* eyebrow du hero, couleur accent visible sur fond sombre */
  --hero-sub:     rgba(255,255,255,0.78); /* sous-titre du hero, sur fond sombre */
  --hero-muted:   rgba(255,255,255,0.55); /* scroll hint du hero, sur fond sombre */
  --off-white: var(--ink2);
  --text:      #1A1A1A;
  --text2:     #6B6B6B;
  --text3:     #757575;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.10);
  --nav-h:     72px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }
input, select, textarea {
  font-family: var(--font-body);
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 100%;
  font-size: 15px;
  transition: border-color var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
}
select option { background: var(--bg3); }

/* ─── UTILITY ──────────────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-muted  { color: var(--text2); }
.text-danger { color: #f87171; }

/* ─── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; transition: all var(--transition);
  cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #FFFFFF;
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--ink2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: rgba(10,10,10,0.3);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(10,10,10,0.06); }
/* btn-white = bouton "inversé" : blanc plein, utilisé sur fonds sombres (ex: bannière noire) */
.btn-white {
  background: #FFFFFF; color: var(--ink);
  border-color: #FFFFFF;
}
.btn-white:hover { background: var(--bg3); }
/* btn-ghost sur fond sombre (bannière noire, hero sur image) doit rester lisible en blanc */
.banner-red .btn-ghost, .hero .btn-ghost {
  color: #FFFFFF; border-color: rgba(255,255,255,0.4);
}
.banner-red .btn-ghost:hover, .hero .btn-ghost:hover {
  border-color: #FFFFFF; background: rgba(255,255,255,0.1);
}
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-block { width: 100%; }

/* ─── NAVBAR ─────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-img {
  height: 38px; width: 38px; border-radius: 50%; flex-shrink: 0;
  object-fit: contain;
}
.logo-joz  {
  color: var(--ink);
}
.logo-br   {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex; gap: 8px; flex: 1;
}
.nav-links a {
  padding: 6px 14px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text2); border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: var(--bg3); }
.nav-actions {
  display: flex; align-items: center; gap: 4px; flex-shrink: 0;
}
.nav-icon, .nav-cart {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  color: var(--text2); transition: all var(--transition);
}
.nav-icon:hover, .nav-cart:hover { color: var(--white); background: var(--bg3); }
.cart-badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--gradient-brand); color: white;
  font-size: 10px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--radius-sm);
}
.nav-burger span {
  width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.3s;
}

/* ─── FLASH MESSAGES ────────────────────────────────────────────────────── */
.flash-container {
  position: fixed; top: calc(var(--nav-h) + 12px); right: 20px;
  z-index: 2000; display: flex; flex-direction: column; gap: 8px;
}
.flash {
  padding: 12px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow); min-width: 280px;
  animation: slideIn 0.3s ease;
  color: #FFFFFF;
}
@keyframes slideIn { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }
.flash-success { background: #14532d; border: 1px solid #16a34a; }
.flash-error   { background: #450a0a; border: 1px solid var(--red); }
.flash-info    { background: #0c1a35; border: 1px solid #3b82f6; }
.flash-close   { margin-left: auto; background: none; border: none; color: inherit; font-size: 18px; cursor: pointer; opacity: 0.7; }
.flash-close:hover { opacity: 1; }

/* ─── HERO ───────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.94) 0%,
    rgba(10,10,10,0.78) 55%,
    rgba(10,10,10,0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  padding-top: 40px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--hero-eyebrow);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--hero-text);
  margin-bottom: 28px;
}
.hero-title-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px; color: var(--hero-sub); max-width: 520px;
  line-height: 1.7; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--hero-muted); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, var(--hero-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ─── TICKER ─────────────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--ink); overflow: hidden;
  padding: 14px 0; border-top: 1px solid var(--ink);
}
.ticker {
  display: flex; gap: 40px; white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #FFFFFF;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-dot {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 10px;
}

/* ─── SECTIONS ───────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-dark { background: var(--bg2); }
.section-header {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 16px;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red);
  display: block; margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1; color: var(--white);
  flex: 1;
}
.section-link { margin-left: auto; font-size: 14px; color: var(--text2); transition: color var(--transition); }
.section-link:hover { color: var(--red); }

/* ─── VALUES ─────────────────────────────────────────────────────────── */
.values-section { padding: 80px 0; background: var(--bg2); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.value-card {
  background: var(--bg2); padding: 40px 32px;
  transition: background var(--transition);
}
.value-card:hover { background: var(--bg3); }
.value-icon { color: var(--red); margin-bottom: 20px; }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.value-card p  { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ─── PRODUCT CARDS ──────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card { display: flex; flex-direction: column; }
.product-card-img-wrap {
  position: relative; display: block;
  aspect-ratio: 3/4; overflow: hidden;
  border-radius: var(--radius); background: var(--bg3);
}
.product-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card-img-wrap:hover .product-card-img { transform: scale(1.05); }
.product-card-hover {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
}
.product-card-img-wrap:hover .product-card-hover { opacity: 1; }
.btn-quick-add {
  display: block;
  width: 100%; padding: 12px;
  background: var(--white); color: var(--bg);
  border: none; cursor: pointer;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  font-family: inherit;
  transition: background var(--transition);
}
.btn-quick-add:hover { background: var(--off-white); }
.badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-preorder { background: var(--gradient-brand); color: white; }
.badge-sold     { background: rgba(0,0,0,0.7); color: var(--text2); }
.badge-lg { top: 16px; left: 16px; padding: 6px 14px; font-size: 12px; }
.product-card-info { padding: 16px 4px 8px; }
.product-card-cat  { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; }
.product-card-name { font-size: 15px; font-weight: 600; margin: 6px 0 8px; }
.product-card-name a:hover { color: var(--red); }
.product-card-price { font-size: 16px; font-weight: 700; color: var(--white); }

/* ─── PRODUCT CARD IMAGE SLIDESHOW ───────────────────────────────────── */
.product-card-dots {
  position: absolute; bottom: 52px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 5px;
  z-index: 3; opacity: 0; transition: opacity var(--transition);
  pointer-events: none;
}
.product-card-img-wrap:hover .product-card-dots { opacity: 1; }
.product-card-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(0,0,0,0.3);
  transition: background 0.25s ease, transform 0.25s ease;
}
.product-card-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ─── BANNER RED ─────────────────────────────────────────────────────── */
.banner-red { background: var(--ink); padding: 80px 0; color: #FFFFFF; }
.banner-red-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.banner-red h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); line-height: 1.1; color: #FFFFFF; }
.banner-red p  { margin-top: 8px; font-size: 16px; opacity: 0.7; color: #FFFFFF; }

/* ─── CATEGORIES ─────────────────────────────────────────────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.cat-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: all var(--transition); cursor: pointer;
}
.cat-card:hover { border-color: var(--red); background: var(--bg4); transform: translateY(-2px); }
.cat-icon { font-size: 28px; flex-shrink: 0; }
.cat-name { font-size: 13px; font-weight: 600; flex: 1; }
.cat-arrow { color: var(--text3); transition: color var(--transition); }
.cat-card:hover .cat-arrow { color: var(--red); }

/* ─── INSTAGRAM ──────────────────────────────────────────────────────── */
.insta-section { padding: 100px 0; }
.insta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.insta-text { flex: 1; min-width: 280px; }
.insta-text h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); margin: 12px 0 16px; }
.insta-text p  { color: var(--text2); margin-bottom: 28px; }
.insta-handle {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  color: transparent;
  -webkit-text-stroke: 1.5px #B0B0B0;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  opacity: 0.9;
}

/* ─── PAGE HEADER ────────────────────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--bg2); border-bottom: 1px solid var(--border);
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1; margin-bottom: 8px;
}
.page-sub { color: var(--text2); font-size: 16px; }

/* ─── SHOP ───────────────────────────────────────────────────────────── */
.shop-layout { padding: 60px 0 100px; }
.shop-inner  { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.shop-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text3); margin-bottom: 24px; }
.filter-group { margin-bottom: 32px; }
.filter-group h4 { font-size: 12px; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.filter-list { display: flex; flex-direction: column; gap: 2px; }
.filter-link { display: block; padding: 8px 12px; border-radius: var(--radius-sm); font-size: 14px; color: var(--text2); transition: all var(--transition); }
.filter-link:hover { color: var(--white); background: var(--bg3); }
.filter-link.active { color: #FFFFFF; background: var(--red); }

.search-bar { display: flex; gap: 8px; margin-bottom: 32px; }
.search-input { flex: 1; }
.search-btn {
  padding: 0 16px; background: var(--bg3); color: var(--text);
  border: 1px solid var(--border2); border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.search-btn:hover { background: var(--bg4); color: var(--white); }
.products-grid--shop { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; background: var(--bg3); border: 1px solid var(--border2);
  color: var(--text2); transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--red); border-color: var(--red); color: white; }
.page-dots { padding: 8px 6px; color: var(--text3); }

/* ─── PRODUCT DETAIL ─────────────────────────────────────────────────── */
.product-detail { padding: calc(var(--nav-h) + 40px) 0 80px; }
.breadcrumb {
  display: flex; gap: 8px; font-size: 13px; color: var(--text3);
  margin-bottom: 40px; flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span:not(:last-child) { color: var(--text3); }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-gallery-main {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--bg3);
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--red); }
.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px); line-height: 1.05;
  margin: 12px 0 16px;
}
.product-detail-price { font-size: 32px; font-weight: 800; margin-bottom: 24px; }

.preorder-notice {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: rgba(224,69,126,0.1); border: 1px solid rgba(224,69,126,0.3);
  color: var(--red); font-size: 14px; margin-bottom: 20px;
}
.stock-info { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 24px; }
.stock-ok { color: #4ade80; }
.stock-out { color: var(--text3); }

.size-picker { margin-bottom: 24px; }
.form-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text2); display: block; margin-bottom: 10px; }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-option input { display: none; }
.size-option span {
  display: block; padding: 8px 16px;
  border: 1px solid var(--border2); border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
}
.size-option input:checked + span { border-color: var(--red); background: var(--red); color: white; }
.size-option span:hover { border-color: var(--white); }
.size-option--disabled span {
  cursor: not-allowed;
  opacity: 0.35;
  text-decoration: line-through;
}
.size-option--disabled input:checked + span { border-color: var(--border2); background: none; color: var(--text); }
.size-option--disabled span:hover { border-color: var(--border2); }

.qty-row { margin-bottom: 24px; }
.qty-control { display: flex; align-items: center; gap: 0; width: fit-content; border: 1px solid var(--border2); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn {
  width: 44px; height: 44px; font-size: 20px;
  background: var(--bg3); color: var(--text);
  border: none; transition: background var(--transition);
}
.qty-btn:hover { background: var(--bg4); }
.qty-input, .qty-display {
  width: 56px; height: 44px; text-align: center;
  background: var(--bg3); border: none;
  border-left: 1px solid var(--border2); border-right: 1px solid var(--border2);
  font-size: 16px; font-weight: 600; color: var(--white);
  border-radius: 0;
}
.qty-control--sm .qty-btn { width: 32px; height: 32px; font-size: 16px; }
.qty-display { width: 40px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 14px; }

.add-to-cart-form { margin-bottom: 32px; }
.product-description { border-top: 1px solid var(--border); padding-top: 24px; margin-top: 8px; }
.product-description h3 { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text2); margin-bottom: 12px; }
.product-description p  { font-size: 15px; color: var(--text2); line-height: 1.8; }
.product-meta { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.meta-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text2); }

.related-products { margin-top: 80px; }

/* ─── CART ───────────────────────────────────────────────────────────── */
.cart-section { padding: 60px 0 100px; }
.cart-layout  { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.cart-item {
  display: flex; gap: 20px; align-items: center;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.cart-item-img { width: 80px; height: 100px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; background: var(--bg3); }
.cart-item-info { flex: 1; }
.cart-item-info h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.cart-item-size  { font-size: 13px; color: var(--text3); }
.cart-item-price { font-size: 14px; color: var(--text2); margin-top: 4px; }
.cart-item-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.cart-item-subtotal { font-size: 16px; font-weight: 700; min-width: 80px; text-align: right; }
.btn-remove { color: var(--text3); transition: color var(--transition); padding: 4px; }
.btn-remove:hover { color: var(--red); }
.cart-footer-row { display: flex; justify-content: space-between; padding: 20px 0; }

.cart-summary {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.cart-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 15px; }
.summary-total { font-size: 20px; font-weight: 800; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 16px; }
.secure-notice { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text3); margin-top: 12px; justify-content: center; }

/* ─── SUCCESS ────────────────────────────────────────────────────────── */
.success-section { padding: calc(var(--nav-h) + 60px) 0 100px; }
.success-card {
  max-width: 600px; margin: 0 auto; text-align: center;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 60px 40px;
}
.success-icon { color: #4ade80; margin: 0 auto 24px; }
.success-card h1 { font-family: var(--font-display); font-size: 48px; margin-bottom: 16px; }
.success-sub { color: var(--text2); font-size: 16px; margin-bottom: 32px; }
.success-details { background: var(--bg3); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; text-align: left; }
.success-details h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text2); margin-bottom: 16px; }
.success-item { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.success-total { display: flex; justify-content: space-between; padding-top: 12px; font-weight: 700; font-size: 16px; }
.success-shipping { margin-bottom: 32px; text-align: left; font-size: 14px; color: var(--text2); }
.success-shipping h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text2); margin-bottom: 8px; }
.success-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── AUTH ───────────────────────────────────────────────────────────── */
.auth-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: calc(var(--nav-h) + 40px) 24px 60px; }
.auth-card { width: 100%; max-width: 440px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px 40px; }
.auth-logo { font-family: var(--font-display); font-size: 28px; text-align: center; margin-bottom: 32px; }
.auth-card h1 { font-family: var(--font-display); font-size: 36px; text-align: center; margin-bottom: 8px; }
.auth-sub { text-align: center; color: var(--text2); margin-bottom: 32px; }
.auth-form { display: flex; flex-direction: column; gap: 20px; }
.auth-switch { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text2); }
.auth-switch a { color: var(--red); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }

/* ─── FORMS ──────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: 0.08em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ─── ABOUT ──────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); line-height: 1.05; margin: 12px 0 24px; }
.about-text p  { color: var(--text2); margin-bottom: 16px; line-height: 1.8; }
.about-text .btn { margin-top: 8px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; }
.stat-number {
  font-family: var(--font-display); font-size: 52px; line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label  { font-size: 13px; color: var(--text2); margin-top: 8px; }

/* ─── CONTACT ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.contact-info h2 { font-family: var(--font-display); font-size: 40px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.contact-item strong { display: block; margin-bottom: 4px; }
.contact-item a { color: var(--text2); }
.contact-item a:hover { color: var(--red); }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 40px; margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.footer { background: #1C1C1C; border-top: 1px solid rgba(255,255,255,0.08); padding: 80px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.footer-brand .nav-logo { margin-bottom: 16px; font-family: var(--font-display); font-size: 22px; display: flex; gap: 4px; }
.footer-brand .logo-joz { color: #FFFFFF; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-sm); color: rgba(255,255,255,0.7); transition: all var(--transition); }
.footer-socials a:hover { border-color: var(--brand-pink); color: var(--brand-pink); }
.footer-nav h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.78); transition: color var(--transition); }
.footer-nav a:hover { color: var(--brand-pink); }
.footer-nav address { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-bottom {
  margin-top: 60px; padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  max-width: 1280px; margin: 60px auto 0; /* intentional re-use */
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.payment-badges { display: flex; align-items: center; gap: 12px; }
.payment-badges span { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ─── EMPTY STATE ────────────────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 80px 24px; color: var(--text2);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.empty-state svg { color: var(--text3); }
.empty-state h3 { font-size: 22px; font-weight: 700; color: var(--text); }
.empty-state p  { font-size: 15px; max-width: 400px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .shop-inner { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: flex; gap: 32px; flex-wrap: wrap; }
  .filter-group { margin-bottom: 0; }
  .filter-list { flex-direction: row; flex-wrap: wrap; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery-main { max-height: 480px; aspect-ratio: auto; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--bg); padding: 24px; border-bottom: 1px solid var(--border); gap: 4px; }
  .nav-links.open a { padding: 12px 16px; }
  .nav-burger { display: flex; }
  .hero-title { font-size: clamp(56px, 15vw, 100px); }
  .hero-ctas  { flex-direction: column; }
  .banner-red-inner { flex-direction: column; text-align: center; }
  .insta-inner  { flex-direction: column; }
  .insta-handle { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .auth-card { padding: 32px 24px; }
  .form-row  { grid-template-columns: 1fr; }
  .success-card { padding: 40px 24px; }
  .success-ctas { flex-direction: column; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
  .cart-item-actions { flex-direction: column; align-items: flex-end; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ══════════════════════════════════════════════════════
   NEW FEATURES — v2
══════════════════════════════════════════════════════ */

/* ── WhatsApp floating button ───────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

/* ── Newsletter popup — voir bas de fichier ── */

/* ── Zoom image ──────────────────────────────────────── */
.zoom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.zoom-overlay img { max-width: 90vw; max-height: 90vh; border-radius: 8px; object-fit: contain; }
.zoom-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(0,0,0,0.1);
  border: none; color: #fff;
  font-size: 2rem; cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.zoom-trigger {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 6px;
  padding: .4rem .8rem;
  font-size: .8rem; cursor: pointer;
  margin-top: .5rem; color: inherit;
}
.zoom-trigger:hover { background: rgba(0,0,0,.1); }

/* Gallery thumbs */
.gallery-thumbs { display: flex; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }
.gallery-thumb { width: 64px; height: 64px; border-radius: 6px; overflow: hidden; cursor: pointer; border: 2px solid transparent; }
.gallery-thumb.active { border-color: #dc2626; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── Reviews ─────────────────────────────────────────── */
.reviews-section { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border2); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-bottom: 2.5rem; }
.review-card { background: var(--bg2); border: 1px solid var(--border2); border-radius: 12px; padding: 1.25rem; }
.review-header { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: .5rem; }
.review-author { font-weight: 600; font-size: .95rem; }
.review-date   { color: var(--text3); font-size: .8rem; margin-left: auto; }
.review-comment { color: var(--text2); font-size: .9rem; line-height: 1.6; margin: 0; }
.reviews-empty { color: var(--text2); font-style: italic; margin-bottom: 1.5rem; }

.stars-display, .review-header .star { display: inline; }
.star { color: var(--border2); font-size: 1rem; }
.star--filled { color: #f59e0b; }

.product-rating-summary { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.rating-count { font-size: .85rem; color: var(--text2); }
.rating-link  { font-size: .85rem; color: var(--red); text-decoration: underline; }

/* ── Review form ─────────────────────────────────────── */
.review-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 2rem;
  max-width: 520px;
  margin-top: 2rem;
}
.review-form-wrap h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.review-form { display: flex; flex-direction: column; gap: 1.25rem; }
.review-form .form-group { display: flex; flex-direction: column; gap: 8px; }
.review-form .form-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text2);
}
.review-form input[type="text"],
.review-form textarea {
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  resize: vertical;
  transition: border-color .15s;
}
.review-form input[type="text"]:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

/* Star picker — hide radio, show only stars */
.star-rating-input {
  display: flex;
  gap: 6px;
  flex-direction: row;
}
.star-label {
  cursor: pointer;
  line-height: 1;
}
.star-label input[type="radio"] {
  display: none;
}
.star-pick {
  font-size: 2rem;
  color: var(--bg4);
  transition: color .1s, transform .1s;
  display: block;
  user-select: none;
}
.star-label:hover .star-pick,
.star-label input:checked ~ .star-pick {
  color: #f59e0b;
}

.review-form .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s, transform .15s;
  align-self: flex-start;
}
.review-form .btn-submit:hover {
  background: #c0281f;
  transform: translateY(-1px);
}

/* ── Wishlist button on product page ─────────────────── */
.product-cta-row { display: flex; gap: .75rem; align-items: stretch; }
.product-cta-row .btn-primary { flex: 1; }
.btn-wishlist {
  width: 52px; min-width: 52px;
  background: var(--bg3); border: 1px solid var(--border2); border-radius: 10px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.btn-wishlist:hover { border-color: var(--red); background: rgba(224,69,126,0.1); }

.account-section { padding: 3rem 0 5rem; }
.account-tabs { display: flex; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.account-tab {
  background: var(--bg3); border: 1px solid var(--border2); border-radius: 8px;
  padding: .6rem 1.2rem; font-weight: 500; cursor: pointer; transition: .2s; color: var(--text2);
}
.account-tab.active, .account-tab:hover { background: var(--red); color: #fff; border-color: var(--red); }
.orders-list { display: flex; flex-direction: column; gap: 1rem; }
.order-card { border: 1px solid var(--border2); border-radius: 12px; overflow: hidden; }
.order-card-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; background: var(--bg2); gap: .5rem; flex-wrap: wrap; }
.order-id   { font-weight: 700; margin-right: .75rem; }
.order-date { color: var(--text2); font-size: .875rem; }
.order-card-items { padding: .75rem 1.25rem; }
.order-item-line { display: flex; gap: .75rem; align-items: center; padding: .35rem 0; font-size: .9rem; flex-wrap: wrap; }
.item-size  { background: var(--bg3); border: 1px solid var(--border); border-radius: 4px; padding: 0 .4rem; font-size: .8rem; }
.item-price { margin-left: auto; font-weight: 600; }
.order-card-footer { padding: .75rem 1.25rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.tracking-info { font-size: .85rem; color: var(--text2); }
.order-status { font-size: .8rem; }

.status-pending   { background: rgba(217,119,6,0.15);  color: #f59e0b;  border-radius: 6px; padding: .2rem .6rem; }
.status-paid      { background: rgba(22,163,74,0.15);  color: #4ade80;  border-radius: 6px; padding: .2rem .6rem; }
.status-shipped   { background: rgba(37,99,235,0.15);  color: #60a5fa;  border-radius: 6px; padding: .2rem .6rem; }
.status-delivered { background: rgba(99,102,241,0.15); color: #a5b4fc;  border-radius: 6px; padding: .2rem .6rem; }
.status-cancelled { background: rgba(224,69,126,0.15);  color: #f87171;  border-radius: 6px; padding: .2rem .6rem; }

.profile-form { max-width: 520px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Shop: price range + size filter ─────────────────── */
.price-range-row { display: flex; align-items: center; gap: .4rem; }
.price-input { width: 70px; background: var(--bg3); border: 1px solid var(--border2); color: var(--text); border-radius: 6px; padding: .4rem .5rem; font-size: .875rem; }
.price-input:focus { outline: none; border-color: var(--red); }
.size-filter-options { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .25rem; }
.size-filter-tag {
  background: var(--bg3); border: 1px solid var(--border2); border-radius: 6px;
  padding: .25rem .55rem; font-size: .8rem; cursor: pointer;
  transition: .15s; text-decoration: none; color: var(--text2);
  display: inline-block;
}
.size-filter-tag.active, .size-filter-tag:hover { border-color: var(--red); background: rgba(224,69,126,0.1); color: var(--red); }

/* ── Modal ────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-box { background: var(--bg2); border: 1px solid var(--border2); border-radius: 12px; padding: 2rem; max-width: 480px; width: 100%; }
.modal-box h3 { margin-bottom: 1.25rem; }
.admin-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (max-width: 768px) { .admin-grid-2 { grid-template-columns: 1fr; } }
.badge-success { background: rgba(22,163,74,0.15);  color: #4ade80; border-radius: 6px; padding: .15rem .5rem; font-size: .8rem; }
.badge-warning { background: rgba(217,119,6,0.15);  color: #f59e0b; border-radius: 6px; padding: .15rem .5rem; font-size: .8rem; }
.badge-muted   { background: var(--bg3); color: var(--text3); border-radius: 6px; padding: .15rem .5rem; font-size: .8rem; }
.row-danger td { background: rgba(224,69,126,0.08); }
.stat-card--warning .stat-value { color: var(--red); }
.info-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.info-table th { text-align: left; color: var(--text3); font-weight: 500; padding: .4rem .5rem .4rem 0; white-space: nowrap; }
.info-table td { padding: .4rem .5rem; }
.total-row td { border-top: 1px solid var(--border2); padding-top: .75rem; }
.actions-cell { display: flex; gap: .4rem; flex-wrap: wrap; }
.btn-danger { background: rgba(224,69,126,0.15); color: #f87171; border: 1px solid rgba(224,69,126,0.3); }
.btn-danger:hover { background: rgba(224,69,126,0.25); }

/* ── Promo code cart ─────────────────────────────────── */
.promo-section { margin: .75rem 0; }
.promo-form { display: flex; gap: .5rem; }
.promo-input { flex: 1; background: var(--bg3); border: 1px solid var(--border2); color: var(--text); border-radius: 8px; padding: .5rem .75rem; font-size: .875rem; }
.promo-input:focus { outline: none; border-color: var(--red); }
.promo-msg { font-size: .8rem; margin-top: .3rem; }
.promo-applied { display: flex; align-items: center; gap: .5rem; background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.2); border-radius: 8px; padding: .5rem .75rem; font-size: .875rem; }
.promo-saving  { color: #4ade80; font-weight: 600; margin-left: auto; }
.promo-row .promo-saving { color: #4ade80; font-weight: 700; }
.promo-remove  { background: none; border: none; cursor: pointer; font-size: 1.1rem; color: var(--text3); line-height: 1; margin-left: .25rem; }

/* ── Stock urgency ────────────────────────────────────── */
.stock-urgent {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(224,69,126,0.12); border: 1px solid rgba(224,69,126,0.3);
  color: #ff6b63; border-radius: 8px; padding: .5rem .85rem;
  font-size: .875rem; font-weight: 600; animation: pulse-red 2s infinite;
}
.stock-low {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(217,119,6,0.1); border: 1px solid rgba(217,119,6,0.3);
  color: #f59e0b; border-radius: 8px; padding: .5rem .85rem;
  font-size: .875rem; font-weight: 600;
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,69,126,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(224,69,126,0); }
}

/* ── Size guide ───────────────────────────────────────── */
.size-picker-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .5rem;
}
.size-picker-header .form-label { margin-bottom: 0; }
.size-guide-btn {
  background: none; border: none; padding: 0;
  color: var(--red); font-size: .8rem; font-weight: 600;
  text-decoration: underline; cursor: pointer;
  text-underline-offset: 2px;
}
.size-guide-btn:hover { color: var(--red-light); }

.size-guide-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.75);
  z-index: 3000; align-items: center; justify-content: center; padding: 1rem;
}
.size-guide-modal {
  background: var(--bg2); border: 1px solid var(--border2); border-radius: 16px;
  padding: 2rem; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
}
.size-guide-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem;
}
.size-guide-header h3 { font-size: 1.2rem; font-weight: 700; }
.size-guide-close {
  background: none; border: none; font-size: 1.5rem; cursor: pointer;
  color: var(--text2); line-height: 1; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.size-guide-close:hover { background: var(--bg3); color: var(--text); }
.size-guide-table {
  width: 100%; border-collapse: collapse; font-size: .875rem; white-space: nowrap;
}
.size-guide-table th {
  text-align: left; padding: .5rem .75rem; color: var(--text3); font-weight: 600;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .05em;
  border-bottom: 1px solid var(--border2);
}
.size-guide-table td {
  padding: .6rem .75rem; border-bottom: 1px solid var(--border);
  color: var(--text);
}
.size-guide-table tbody tr:first-child td { font-weight: 700; }
.size-guide-table tbody tr:hover td { background: var(--bg3); }
.size-guide-tip {
  display: flex; align-items: flex-start; gap: .5rem;
  background: rgba(224,69,126,0.08); border: 1px solid rgba(224,69,126,0.2);
  border-radius: 8px; padding: .75rem 1rem; margin-top: 1.25rem;
  font-size: .85rem; color: var(--text2); line-height: 1.5;
}
.size-guide-tip svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }

/* ── Order progress bar ───────────────────────────────── */
.order-progress-wrap {
  padding: 1.5rem 0 .5rem;
  border-bottom: 1px solid var(--border);
}
.order-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; max-width: 480px; margin: 0 auto;
}
.progress-step {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  flex-shrink: 0;
}
.progress-step span {
  font-size: .75rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text3);
}
.progress-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg3); border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); transition: all .3s;
}
.progress-step.active .progress-dot {
  background: var(--red); border-color: var(--red); color: #fff;
}
.progress-step.active span { color: var(--red); }
.progress-step.done .progress-dot {
  background: rgba(34,197,94,0.15); border-color: #22c55e; color: #22c55e;
}
.progress-step.done span { color: #22c55e; }
.progress-line {
  flex: 1; height: 2px; background: var(--border2);
  margin: 0 .5rem; margin-bottom: 1.4rem;
}
.progress-line.done { background: #22c55e; }

/* ── Custom 404 ───────────────────────────────────────── */
.error-section {
  min-height: calc(100vh - var(--nav-h) - 200px);
  display: flex; align-items: center; padding: 5rem 0;
}
.error-card {
  text-align: center; max-width: 520px; margin: 0 auto;
}
.error-code {
  font-family: var(--font-display); font-size: clamp(6rem, 20vw, 12rem);
  color: var(--red); line-height: 1; margin-bottom: .5rem;
  opacity: .9;
}
.error-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 800;
  margin-bottom: 1rem; letter-spacing: -.02em;
}
.error-sub {
  color: var(--text2); font-size: 1.1rem; line-height: 1.6;
  margin-bottom: 2.5rem;
}
.error-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ─── ACCOUNT ────────────────────────────────────────────────────────────── */
.account-layout { display:grid; grid-template-columns:280px 1fr; gap:48px; align-items:start; }
.account-sidebar { position:sticky; top:calc(var(--nav-h) + 24px); }
.account-avatar { display:flex; align-items:center; gap:16px; padding:20px; background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius); margin-bottom:16px; }
.avatar-circle { width:48px; height:48px; border-radius:50%; background:var(--red); display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:800; color:white; flex-shrink:0; }
.avatar-name  { font-weight:700; font-size:15px; }
.avatar-email { font-size:12px; color:var(--text3); margin-top:2px; }
.account-nav { display:flex; flex-direction:column; gap:4px; }
.account-nav-link { padding:12px 16px; border-radius:var(--radius-sm); font-size:14px; font-weight:500; color:var(--text2); transition:all var(--transition); }
.account-nav-link:hover, .account-nav-link.active { background:var(--bg3); color:var(--white); }
.account-nav-link.danger:hover { color:#f87171; background:rgba(224,69,126,0.08); }
.account-section-title { font-family:var(--font-display); font-size:32px; margin-bottom:24px; }
.order-card { background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius); margin-bottom:16px; overflow:hidden; }
.order-card-header { display:flex; justify-content:space-between; align-items:center; padding:16px 20px; border-bottom:1px solid var(--border); }
.order-id   { font-weight:800; font-size:16px; margin-right:10px; }
.order-date { font-size:13px; color:var(--text3); }
.status-pill { display:inline-block; padding:3px 10px; border-radius:20px; font-size:11px; font-weight:700; text-transform:uppercase; }
.status-pill.status-pending   { background:rgba(217,119,6,0.15);  color:#f59e0b; }
.status-pill.status-paid      { background:rgba(22,163,74,0.15);  color:#4ade80; }
.status-pill.status-shipped   { background:rgba(37,99,235,0.15);  color:#60a5fa; }
.status-pill.status-delivered { background:rgba(99,102,241,0.15); color:#a5b4fc; }
.status-pill.status-cancelled { background:rgba(224,69,126,0.15);  color:#f87171; }
.order-card-items { padding:16px 20px; display:flex; flex-direction:column; gap:12px; }
.order-item-row { display:flex; align-items:center; gap:14px; }
.order-item-img  { width:56px; height:70px; object-fit:cover; border-radius:6px; background:var(--bg3); flex-shrink:0; }
.order-item-info { flex:1; }
.order-item-name { font-size:14px; font-weight:600; }
.order-item-size { font-size:12px; color:var(--text3); }
.order-item-qty  { font-size:12px; color:var(--text3); }
.order-item-price { font-weight:700; font-size:15px; }
.order-card-footer { padding:14px 20px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; }
.order-total { font-size:15px; color:var(--text2); }

/* ─── WISHLIST BTN ───────────────────────────────────────────────────────── */
.wishlist-btn { position:absolute; top:12px; right:12px; width:36px; height:36px; border-radius:50%; background:rgba(10,10,10,0.7); backdrop-filter:blur(8px); border:1px solid var(--border2); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all var(--transition); z-index:2; }
.wishlist-btn:hover { background:rgba(224,69,126,0.2); border-color:var(--red); }
.wishlist-btn.active svg { fill:var(--red); stroke:var(--red); }

/* ─── REVIEWS ────────────────────────────────────────────────────────────── */
.reviews-section { border-top:1px solid var(--border); padding-top:48px; margin-top:48px; }
.reviews-header  { display:flex; align-items:center; gap:16px; margin-bottom:28px; }
.avg-rating-big  { font-family:var(--font-display); font-size:56px; line-height:1; color:var(--white); }
.stars-display   { color:#f59e0b; font-size:20px; }
.review-card     { background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius); padding:20px; margin-bottom:12px; }
.review-card-header { display:flex; justify-content:space-between; margin-bottom:10px; }
.review-author   { font-weight:700; font-size:14px; }
.review-date     { font-size:12px; color:var(--text3); }
.review-stars    { color:#f59e0b; font-size:14px; margin-bottom:8px; }
.review-comment  { font-size:14px; color:var(--text2); line-height:1.7; }
.review-form     { background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius); padding:24px; margin-top:24px; }
.review-form h3  { font-size:18px; font-weight:700; margin-bottom:20px; }
.star-picker     { display:flex; gap:8px; margin-bottom:16px; }
.star-picker input { display:none; }
.star-picker label { font-size:28px; cursor:pointer; color:var(--text3); transition:color var(--transition); }
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label { color:#f59e0b; }
.star-picker { flex-direction:row-reverse; }

/* ─── PROMO CODE ─────────────────────────────────────────────────────────── */
.promo-row { display:flex; gap:8px; margin:16px 0; }
.promo-input { flex:1; }
.promo-result { padding:10px 14px; border-radius:var(--radius-sm); font-size:14px; font-weight:600; margin-top:8px; display:none; }
.promo-result.success { background:rgba(22,163,74,0.1); border:1px solid rgba(22,163,74,0.3); color:#4ade80; }
.promo-result.error   { background:rgba(224,69,126,0.1);  border:1px solid rgba(224,69,126,0.3);  color:#f87171; }

/* ─── NEWSLETTER POPUP ───────────────────────────────────────────────────── */
.newsletter-popup { position:fixed; bottom:24px; right:24px; z-index:9999; max-width:360px; width:calc(100% - 48px); background:var(--bg2); border:1px solid var(--border2); border-radius:var(--radius-lg); padding:28px 28px 20px; box-shadow:var(--shadow-lg); transform:translateY(calc(100% + 40px)); opacity:0; transition:transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease; pointer-events:none; }
.newsletter-popup.show { transform:translateY(0); opacity:1; pointer-events:all; }
.newsletter-popup h3 { font-family:var(--font-display); font-size:24px; margin-bottom:8px; }
.newsletter-popup p  { font-size:14px; color:var(--text2); margin-bottom:16px; }
.newsletter-icon { font-size:2rem; margin-bottom:8px; display:block; }
.newsletter-legal { font-size:12px; color:var(--text3); margin-top:8px; margin-bottom:4px; }
.newsletter-skip { background:none; border:none; color:var(--text3); font-size:13px; cursor:pointer; margin-top:4px; display:block; width:100%; text-align:center; }
.newsletter-skip:hover { color:var(--text2); }
.newsletter-popup h3 { font-family:var(--font-display); font-size:24px; margin-bottom:8px; }
.newsletter-popup p  { font-size:14px; color:var(--text2); margin-bottom:16px; }
.newsletter-popup-form { display:flex; gap:8px; }
.newsletter-popup-form input { flex:1; font-size:14px; }
.newsletter-close { position:absolute; top:12px; right:14px; background:none; border:none; color:var(--text3); font-size:20px; cursor:pointer; }
.newsletter-close:hover { color:var(--white); }

/* ─── WHATSAPP BUTTON ────────────────────────────────────────────────────── */
.whatsapp-btn { position:fixed; bottom:24px; left:24px; z-index:998; width:56px; height:56px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,0.4); transition:all var(--transition); }
.whatsapp-btn:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-btn svg { width:28px; height:28px; fill:white; }

/* ─── ZOOM IMAGE ─────────────────────────────────────────────────────────── */
.zoomable-img { cursor:zoom-in; }
.zoom-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.92); z-index:2000; display:none; align-items:center; justify-content:center; }
.zoom-overlay.open { display:flex; }
.zoom-overlay img { max-width:90vw; max-height:90vh; object-fit:contain; border-radius:var(--radius); }
.zoom-close { position:absolute; top:20px; right:24px; background:none; border:none; color:white; font-size:36px; cursor:pointer; }
.zoom-trigger { margin-top:8px; padding:8px 16px; background:var(--bg3); border:1px solid var(--border2); border-radius:var(--radius-sm); font-size:12px; color:var(--text2); cursor:pointer; display:flex; align-items:center; gap:6px; transition:all var(--transition); }
.zoom-trigger:hover { color:var(--white); border-color:var(--white); }
.gallery-thumbs { display:flex; gap:8px; margin-top:12px; flex-wrap:wrap; }
.gallery-thumb  { width:64px; height:80px; border-radius:6px; overflow:hidden; border:2px solid transparent; cursor:pointer; transition:border-color var(--transition); }
.gallery-thumb.active, .gallery-thumb:hover { border-color:var(--red); }
.gallery-thumb img { width:100%; height:100%; object-fit:cover; }

/* ─── PRICE RANGE SLIDER ─────────────────────────────────────────────────── */
.price-range { padding:4px 0 8px; }
.price-range input[type=range] { width:100%; accent-color:var(--red); background:transparent; border:none; padding:0; }
.price-range-labels { display:flex; justify-content:space-between; font-size:12px; color:var(--text3); margin-top:4px; }

@media (max-width:900px) {
  .account-layout { grid-template-columns:1fr; }
  .account-sidebar { position:static; }
}


/* ── Description produit (rendu Quill) ────────────────────────────────── */
.product-desc-content { font-size: 15px; color: var(--text2); line-height: 1.8; }
.product-desc-content h2 { font-size: 20px; color: var(--text1); margin: 1.25rem 0 .5rem; font-family: var(--font-display); }
.product-desc-content h3 { font-size: 16px; color: var(--text1); margin: 1rem 0 .4rem; font-weight: 700; }
.product-desc-content strong { color: var(--text1); font-weight: 700; }
.product-desc-content em { font-style: italic; }
.product-desc-content ul { list-style: none; padding: 0; margin: .75rem 0; }
.product-desc-content ul li { padding: 4px 0 4px 1.5rem; position: relative; }
.product-desc-content ul li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.product-desc-content ol { padding-left: 1.5rem; margin: .75rem 0; }
.product-desc-content ol li { padding: 3px 0; }
.product-desc-content p { margin: .5rem 0; }
/* Classes Quill */
.product-desc-content .ql-align-center { text-align: center; }
.product-desc-content .ql-align-right  { text-align: right; }
.product-desc-content .ql-align-justify { text-align: justify; }
.product-desc-content .ql-indent-1 { padding-left: 2rem; }
.product-desc-content .ql-indent-2 { padding-left: 4rem; }
.product-desc-content li.ql-indent-1 { padding-left: 3.5rem; }
.product-desc-content li.ql-indent-2 { padding-left: 5rem; }