/* ═══════════════════════════════════════════════════════════════
   MyPyro Theme — CSS Principal
   Mobile-First · Core Web Vitals · WooCommerce
   ═══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ───────────────────────────────────────────────── */
:root {
  --navy:    #0b1622;
  --navy2:   #111e2e;
  --navy3:   #172438;
  --blue:    #1a6fc4;
  --blue-l:  #2a8adf;
  --accent:  #c9a227;
  --accent2: #e8cf50;
  --gray2:   #c8d4e0;
  --gray3:   #8fa3b8;
  --text:    #d8e6f3;
  --border:  rgba(255,255,255,0.08);
  --card:    #131f2e;
  --red:     #e03e3e;
  --green:   #27ae60;
  --radius:  10px;
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
body.mypyro-theme { background: var(--navy) !important; color: var(--text) !important; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── TOP BANNER ──────────────────────────────────────────────── */
.top-banner {
  background: var(--blue);
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.top-banner .sep { display: none; opacity: .5; margin: 0 10px; }
.top-banner a { color: #fff; text-decoration: underline; }
@media (min-width: 768px) {
  .top-banner { font-size: 13px; }
  .top-banner .sep { display: inline; }
}

/* ── HEADER ──────────────────────────────────────────────────── */
header#site-header {
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  height: 60px;
  max-width: 1280px;
  margin: auto;
}
.logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
.custom-logo { height: 44px; width: auto; }

/* Search */
.search-bar {
  flex: 1;
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy3);
  min-width: 0;
}
.search-bar input {
  flex: 1; min-width: 0;
  background: none; border: none; outline: none;
  padding: 0 12px;
  font-size: 14px; color: #fff;
  height: 42px;
}
.search-bar input::placeholder { color: var(--gray3); }
.search-bar button {
  background: var(--blue); border: none; cursor: pointer;
  padding: 0 14px; color: #fff; font-size: 16px;
  min-width: 44px; height: 42px;
  transition: background .2s;
}
.search-bar button:hover { background: var(--blue-l); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-account { display: none; }
.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--navy3);
  border: 1.5px solid var(--border);
  cursor: pointer;
  font-size: 20px;
  transition: border-color .2s;
  text-decoration: none;
}
.cart-btn:hover { border-color: var(--blue); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.burger {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: none; border: 1.5px solid var(--border);
  border-radius: 8px; cursor: pointer;
  font-size: 20px; color: var(--gray2);
  transition: all .2s;
}
.burger:hover { border-color: var(--gray3); color: #fff; }
@media (min-width: 900px) {
  .header-inner { height: 68px; gap: 20px; padding: 0 24px; }
  .btn-account {
    display: flex; align-items: center; gap: 7px;
    padding: 9px 16px; border-radius: 7px;
    font-size: 13.5px; font-weight: 600; color: var(--gray2);
    background: transparent; border: 1.5px solid var(--border);
    cursor: pointer; white-space: nowrap; transition: all .2s;
  }
  .btn-account:hover { border-color: var(--gray3); color: #fff; }
  .burger { display: none; }
}

/* ── NAV ─────────────────────────────────────────────────────── */
nav#main-nav {
  background: var(--navy3);
  border-bottom: 1px solid var(--border);
  display: none;
}
nav#main-nav.open { display: block; }
.nav-inner {
  max-width: 1280px; margin: auto;
  padding: 8px 0;
  display: flex; flex-direction: column;
}
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  font-size: 14px; font-weight: 500; color: var(--gray2);
  border-left: 3px solid transparent;
  cursor: pointer; transition: all .15s;
  min-height: 44px; text-decoration: none;
}
.nav-item:hover { color: #fff; border-color: var(--blue); background: rgba(255,255,255,.03); }
.nav-item.active { color: var(--accent2); border-color: var(--accent2); }
.nav-badge { background: var(--red); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: 10px; }
.nav-stores {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 20px;
  font-size: 14px; font-weight: 700; color: var(--accent2);
  background: rgba(201,162,39,.08);
  border-left: 3px solid var(--accent);
  cursor: pointer; min-height: 44px;
  text-decoration: none;
}
@media (min-width: 900px) {
  nav#main-nav { display: block !important; }
  .nav-inner { flex-direction: row; align-items: center; padding: 0 24px; gap: 2px; overflow-x: auto; }
  .nav-item { border-left: none; border-bottom: 2.5px solid transparent; padding: 12px 14px; white-space: nowrap; background: none !important; }
  .nav-item:hover { border-color: var(--blue); }
  .nav-item.active { border-color: var(--accent2); }
  .nav-stores { margin-left: auto; background: rgba(201,162,39,.1); border-left: none; border-radius: 20px; padding: 8px 16px; border: 1px solid rgba(201,162,39,.3); white-space: nowrap; font-size: 13px; }
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #0b1e35 0%, var(--navy) 55%, #080f1a 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 80% 20%, rgba(26,111,196,.1), transparent),
    radial-gradient(ellipse 400px 200px at 90% 60%, rgba(201,162,39,.06), transparent);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: auto;
  padding: 40px 16px 48px;
  display: flex; flex-direction: column; gap: 32px;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,.1); border: 1px solid rgba(201,162,39,.28);
  color: var(--accent2); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  width: fit-content; margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(26px, 7vw, 52px);
  font-weight: 900; line-height: 1.1; color: #fff;
  letter-spacing: -.5px; margin-bottom: 14px;
}
.hero h1 .hl { color: var(--accent2); }
.hero h1 em.hl { font-style: normal; }
.hero-sub { font-size: 15px; color: var(--gray2); line-height: 1.7; margin-bottom: 24px; }
.hero-ctas { display: flex; flex-direction: column; gap: 10px; }
.btn-lg {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 24px; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; border: none; transition: all .2s;
  min-height: 52px; text-decoration: none;
}
.btn-lg.primary { background: var(--accent); color: #fff; }
.btn-lg.primary:hover { background: var(--accent2); color: #000; }
.btn-lg.secondary { background: rgba(255,255,255,.05); color: var(--gray2); border: 1.5px solid var(--border); }
.btn-lg.secondary:hover { border-color: var(--gray3); color: #fff; }
.hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--gray3); }

/* Hero card */
.hero-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.hero-card a { text-decoration: none; color: inherit; display: block; }
.hero-card-img {
  background: linear-gradient(135deg, #1a2e44, #0f1e2f);
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative; font-size: 72px;
}
.firework-art { animation: pulse 3s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(201,162,39,.45)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 36px rgba(232,207,80,.75)); transform: scale(1.05); }
}
.hero-card-badge { position: absolute; top: 10px; right: 10px; background: var(--red); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 20px; }
.hero-card-cat { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.55); color: var(--gray2); font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 20px; }
.hero-card-body { padding: 16px; }
.hero-card-body h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.spec-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.spec-pill { background: rgba(26,111,196,.14); border: 1px solid rgba(26,111,196,.24); color: #6ab0e8; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 20px; }
.hero-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.price-main { font-size: 24px; font-weight: 900; color: #fff; }
.btn-add-cart {
  width: 100%; padding: 13px; background: var(--blue); color: #fff;
  font-size: 14px; font-weight: 700; border: none; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 48px; transition: background .2s; text-decoration: none;
}
.btn-add-cart:hover { background: var(--blue-l); }

@media (min-width: 900px) {
  .hero-inner { flex-direction: row; align-items: center; gap: 60px; padding: 64px 24px 72px; }
  .hero-content { flex: 1; }
  .hero-card { width: 420px; flex-shrink: 0; }
  .hero-ctas { flex-direction: row; }
  .btn-lg { min-width: 180px; }
  .hero-trust { grid-template-columns: repeat(4, auto); width: fit-content; gap: 20px; }
  .hero-card-img { height: 220px; }
}

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar { background: var(--navy2); border-bottom: 1px solid var(--border); }
.stats-inner {
  max-width: 1280px; margin: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 0 16px;
}
.stat-item { padding: 16px 12px; text-align: center; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item:nth-child(2n) { border-right: none; }
.stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
.stat-num { font-size: 22px; font-weight: 900; color: #fff; line-height: 1; }
.stat-num em { color: var(--accent2); font-style: normal; }
.stat-label { font-size: 11px; color: var(--gray3); margin-top: 3px; text-transform: uppercase; letter-spacing: .4px; }
@media (min-width: 768px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); padding: 0 24px; }
  .stat-item { border-bottom: none !important; border-right: 1px solid var(--border); padding: 20px; }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-size: 28px; }
}

/* ── SECTIONS COMMUNES ───────────────────────────────────────── */
section { padding: 48px 0; }
.section-inner { max-width: 1280px; margin: auto; padding: 0 16px; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; gap: 16px; }
.section-title { font-size: 18px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 10px; }
.section-title::before { content: ''; display: block; width: 4px; height: 20px; background: var(--accent); border-radius: 2px; flex-shrink: 0; }
.see-all { font-size: 13px; font-weight: 600; color: var(--blue-l); white-space: nowrap; transition: color .2s; text-decoration: none; }
.see-all:hover { color: var(--accent2); }
@media (min-width: 768px) {
  section { padding: 60px 0; }
  .section-inner { padding: 0 24px; }
  .section-title { font-size: 22px; }
  .section-header { margin-bottom: 32px; }
}

/* ── CATÉGORIES ──────────────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 14px;
  display: flex; flex-direction: column; gap: 7px;
  cursor: pointer; transition: all .22s;
  min-height: 120px; text-decoration: none;
}
.cat-card:hover { transform: translateY(-2px); border-color: rgba(26,111,196,.4); }
.cat-icon { font-size: 26px; }
.cat-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }
.cat-count { font-size: 11px; color: var(--gray3); }
.cat-arrow { font-size: 11.5px; color: var(--blue-l); font-weight: 600; margin-top: auto; }
.cat-card.c1 { border-top: 3px solid #e8810a; }
.cat-card.c2 { border-top: 3px solid #1a6fc4; }
.cat-card.c3 { border-top: 3px solid #9b59b6; }
.cat-card.c4 { border-top: 3px solid #27ae60; }
.cat-card.c5 { border-top: 3px solid #e74c3c; }
.cat-card.c6 { border-top: 3px solid #f39c12; }
.cat-card.c7 { border-top: 3px solid #1abc9c; }
.cat-card.c8 { border-top: 3px solid #e91e63; }
@media (min-width: 600px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .cat-icon { font-size: 30px; }
  .cat-name { font-size: 14px; }
}

/* ── PRODUITS ────────────────────────────────────────────────── */
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.prod-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: all .22s;
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-3px); border-color: rgba(26,111,196,.4); box-shadow: 0 8px 32px rgba(0,0,0,.35); }
.prod-img {
  background: linear-gradient(135deg, #1a2a3d, #111e2e);
  height: 120px; display: flex; align-items: center;
  justify-content: center; position: relative; font-size: 44px;
  text-decoration: none; overflow: hidden;
}
.prod-img-tag { width: 100%; height: 100%; object-fit: cover; }
.prod-emoji { font-size: 44px; }
.prod-tag { position: absolute; top: 8px; left: 8px; font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 10px; letter-spacing: .3px; }
.prod-tag.new { background: var(--blue); color: #fff; }
.prod-tag.promo { background: var(--red); color: #fff; }
.prod-tag.f3 { background: rgba(155,89,182,.25); color: #c39bd3; border: 1px solid rgba(155,89,182,.4); }
.prod-tag.f2 { background: rgba(39,174,96,.2); color: #82e0aa; border: 1px solid rgba(39,174,96,.35); }
.prod-body { padding: 12px; flex: 1; display: flex; flex-direction: column; }
.prod-brand { font-size: 10px; color: var(--gray3); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.prod-name { font-size: 12.5px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 7px; flex: 1; text-decoration: none; display: block; }
.prod-name:hover { color: var(--accent2); }
.prod-footer { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.prod-price { font-size: 17px; font-weight: 900; color: #fff; }
.prod-price ins { text-decoration: none; }
.prod-price del { font-size: 11px; color: var(--gray3); }
.prod-price-old { font-size: 11px; color: var(--gray3); text-decoration: line-through; display: block; }
.prod-add {
  min-width: 36px; height: 36px; background: var(--blue); border: none; border-radius: 7px;
  color: #fff; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s; text-decoration: none;
}
.prod-add:hover { background: var(--blue-l); }

/* Filtres */
.filters-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.filters-bar::-webkit-scrollbar { display: none; }
.filter-chip {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 20px;
  border: 1.5px solid var(--border); font-size: 12.5px; font-weight: 500;
  color: var(--gray2); cursor: pointer; background: transparent;
  transition: all .18s; white-space: nowrap; min-height: 36px;
}
.filter-chip:hover { border-color: var(--blue); color: #fff; }
.filter-chip.active { border-color: var(--blue); background: rgba(26,111,196,.14); color: #6ab0e8; }
.filters-sep { flex: 1; min-width: 8px; }
.sort-select {
  background: var(--navy3); border: 1.5px solid var(--border);
  color: var(--gray2); padding: 8px 12px; border-radius: 8px;
  font-size: 12.5px; cursor: pointer; outline: none; min-height: 36px; flex-shrink: 0;
}
@media (min-width: 600px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } .prod-img { height: 140px; } }
@media (min-width: 900px) {
  .prod-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .prod-img { height: 170px; }
  .prod-name { font-size: 14px; }
  .prod-price { font-size: 20px; }
}

/* ── BOUTIQUES ───────────────────────────────────────────────── */
.boutiques-section {
  background: linear-gradient(160deg, #0d1f35, var(--navy2));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.boutiques-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.boutique-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(201,162,39,.2);
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column; transition: all .22s;
}
.boutique-card:hover { border-color: rgba(201,162,39,.45); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.boutique-map {
  height: 160px; background: linear-gradient(135deg, #131f2e, #0e1823);
  display: flex; align-items: center; justify-content: center;
  position: relative; border-bottom: 1px solid var(--border);
}
.boutique-map-label {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.7); color: var(--accent2); font-size: 11.5px; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; white-space: nowrap; border: 1px solid rgba(201,162,39,.28);
}
.boutique-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.boutique-city { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent2); }
.boutique-name { font-size: 20px; font-weight: 800; color: #fff; }
.boutique-address { font-size: 14px; color: var(--gray2); line-height: 1.5; }
.boutique-phone { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; color: #fff; }
.boutique-phone a { color: #fff; }
.boutique-hours { font-size: 13px; color: var(--gray3); }
.boutique-footer { display: flex; gap: 10px; margin-top: 6px; }
.btn-boutique {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 7px; padding: 13px 14px; border-radius: 9px;
  font-size: 13.5px; font-weight: 700; cursor: pointer; border: none;
  min-height: 48px; transition: all .2s; text-decoration: none;
}
.btn-boutique.maps { background: rgba(26,111,196,.14); color: #6ab0e8; border: 1px solid rgba(26,111,196,.3); }
.btn-boutique.maps:hover { background: rgba(26,111,196,.24); }
.btn-boutique.call { background: var(--accent); color: #fff; }
.btn-boutique.call:hover { background: var(--accent2); color: #000; }
@media (min-width: 768px) {
  .boutiques-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .boutique-map { height: 200px; }
}

/* ── MARQUES ─────────────────────────────────────────────────── */
.brands-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.brand-pill {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 22px;
  font-size: 14px; font-weight: 800; color: var(--gray2);
  text-transform: uppercase; cursor: pointer; transition: all .2s;
  min-height: 48px; display: flex; align-items: center; text-decoration: none;
}
.brand-pill:hover { border-color: var(--blue); color: #fff; }
.brand-pill.atomik { color: var(--accent2); }
.brand-pill.xplode { color: #c39bd3; }
.brand-pill.tropic { color: #82e0aa; }

/* ── RÉASSURANCE ─────────────────────────────────────────────── */
.reass-section { background: var(--navy2); border-top: 1px solid var(--border); padding: 0; }
.reass-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 1280px; margin: auto; }
.reass-item {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.reass-item:nth-child(2n) { border-right: none; }
.reass-item:nth-child(3), .reass-item:nth-child(4) { border-bottom: none; }
.reass-icon { font-size: 28px; margin-bottom: 10px; }
.reass-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.reass-sub { font-size: 12px; color: var(--gray3); line-height: 1.5; }
@media (min-width: 768px) {
  .reass-grid { grid-template-columns: repeat(4, 1fr); }
  .reass-item { border-bottom: none !important; border-right: 1px solid var(--border); padding: 36px 24px; }
  .reass-item:last-child { border-right: none; }
  .reass-icon { font-size: 34px; }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer#colophon { background: #0a0f18; border-top: 1px solid var(--border); }
.footer-top {
  max-width: 1280px; margin: auto;
  padding: 40px 16px 32px;
  display: flex; flex-direction: column; gap: 36px;
}
.footer-logo { height: 36px; width: auto; opacity: .8; margin-bottom: 4px; }
.footer-col h6 {
  font-size: 11px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: .9px;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13.5px; color: var(--gray3);
  display: flex; align-items: center; gap: 8px;
  transition: color .18s; min-height: 28px; text-decoration: none;
}
.footer-links a:hover { color: var(--accent2); }
.footer-links a::before { content: '›'; color: var(--accent); font-size: 16px; font-weight: 700; }
.footer-links a.blog-link { color: var(--accent2); font-weight: 700; }
.footer-boutiques-info { display: flex; flex-direction: column; gap: 16px; }
.footer-boutique-item { display: flex; flex-direction: column; gap: 4px; }
.footer-boutique-item strong { font-size: 14px; color: #fff; font-weight: 700; }
.footer-boutique-item span { font-size: 13px; color: var(--gray3); line-height: 1.5; }
.footer-boutique-item a { font-size: 13px; color: var(--blue-l); text-decoration: none; }
.footer-boutique-item a:hover { color: var(--accent2); }
.footer-divider { width: 40px; height: 1px; background: var(--border); margin: 4px 0; }
.newsletter-form {
  display: flex; border: 1.5px solid var(--border);
  border-radius: 8px; overflow: hidden; background: var(--navy3); margin-bottom: 16px;
}
.newsletter-form input {
  flex: 1; background: none; border: none; outline: none;
  padding: 11px 14px; font-size: 14px; color: #fff; min-height: 48px;
}
.newsletter-form input::placeholder { color: var(--gray3); }
.newsletter-form button {
  background: var(--accent); border: none; color: #fff;
  font-size: 13px; font-weight: 700; padding: 0 18px; cursor: pointer;
  transition: background .2s; min-height: 48px;
}
.newsletter-form button:hover { background: var(--accent2); color: #000; }
.newsletter-consent { font-size: 11px; color: var(--gray3); margin-bottom: 20px; line-height: 1.5; }
.newsletter-consent a { color: var(--blue-l); text-decoration: underline; }
.social-links { display: flex; gap: 10px; }
.social-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 16px; border-radius: 9px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: all .2s; min-height: 44px; border: 1.5px solid var(--border);
  color: var(--gray2);
}
.social-btn:hover { border-color: var(--gray3); color: #fff; }
.social-btn.youtube:hover { border-color: #ff0000; color: #ff6666; }
.social-btn.tiktok:hover { border-color: #69c9d0; color: #69c9d0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1280px; margin: auto;
  padding: 16px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-bottom-inner { font-size: 12px; color: var(--gray3); line-height: 1.6; }
.footer-bottom-inner a { color: var(--gray3); text-decoration: none; }
.footer-sep { margin: 0 6px; opacity: .4; }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 12px; color: var(--gray3); text-decoration: none; }
.footer-legal-links a:hover { color: var(--accent2); }
@media (min-width: 768px) {
  .footer-top { flex-direction: row; padding: 52px 24px 40px; gap: 40px; }
  .footer-col { flex: 1; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; padding: 16px 24px; }
}

/* ══════════════════════════════════════════════
   PAGE PRODUIT
══════════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb { background: var(--navy2); border-bottom: 1px solid var(--border); }
.breadcrumb-inner {
  max-width: 1280px; margin: auto;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { font-size: 13px; color: var(--gray3); transition: color .2s; text-decoration: none; }
.breadcrumb a:hover { color: var(--blue-l); }
.breadcrumb .sep { font-size: 11px; color: var(--gray3); opacity: .4; }
.breadcrumb .current { font-size: 13px; color: var(--gray2); font-weight: 500; }
@media (min-width: 768px) { .breadcrumb-inner { padding: 12px 24px; } }

/* Layout produit */
.product-main { max-width: 1280px; margin: auto; padding: 24px 16px 48px; }
.product-layout { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 900px) {
  .product-main { padding: 36px 24px 60px; }
  .product-layout { flex-direction: row; gap: 52px; align-items: flex-start; }
  .product-gallery-col { width: 460px; flex-shrink: 0; position: sticky; top: 84px; }
  .product-info-col { flex: 1; }
}

/* Galerie */
.gallery-main {
  background: linear-gradient(135deg, #1a2e44, #0f1e2f);
  border-radius: 14px; border: 1px solid var(--border);
  height: 300px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; margin-bottom: 12px;
}
.gallery-main img,
.gallery-main .main-product-img { width: 100%; height: 100%; object-fit: contain; }
.gallery-badge-f3 {
  position: absolute; top: 12px; left: 12px;
  background: rgba(155,89,182,.25); color: #c39bd3;
  border: 1px solid rgba(155,89,182,.45);
  font-size: 11px; font-weight: 800; padding: 4px 11px; border-radius: 20px;
}
.gallery-zoom { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,.55); color: var(--gray3); font-size: 12px; padding: 5px 10px; border-radius: 8px; }
.gallery-thumbs { display: flex; gap: 8px; }
.thumb {
  flex: 1; height: 72px; border-radius: 8px; overflow: hidden;
  background: var(--navy3); border: 2px solid var(--border);
  cursor: pointer; transition: border-color .2s;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; padding: 0;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { border-color: var(--gray3); }
.thumb.active { border-color: var(--accent); }
@media (min-width: 900px) {
  .gallery-main { height: 420px; }
  .thumb { height: 86px; }
}

/* Info produit */
.prod-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.prod-badge {
  font-size: 10px; font-weight: 800; padding: 4px 11px; border-radius: 20px;
  letter-spacing: .4px; text-transform: uppercase;
}
.badge-promo { background: var(--red); color: #fff; }
.badge-ce { background: rgba(155,89,182,.25); color: #c39bd3; border: 1px solid rgba(155,89,182,.4); }
.badge-new { background: var(--blue); color: #fff; }
.product-title { font-size: clamp(20px, 4vw, 30px); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 12px; }
.product-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 13px; color: var(--gray3); }
.product-rating .star-rating { color: var(--accent2); }
.product-price-wrap { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.price-old { font-size: 16px; color: var(--gray3); text-decoration: line-through; }
.price-current { font-size: 32px; font-weight: 900; color: #fff; }
.price-current ins { text-decoration: none; }
.price-current .woocommerce-Price-amount { font-size: 32px; font-weight: 900; color: #fff; }
.price-save { font-size: 13px; font-weight: 700; color: var(--green); background: rgba(39,174,96,.12); padding: 3px 10px; border-radius: 20px; }

/* Alerte ID */
.id-alert {
  background: rgba(232,129,10,.08); border: 1px solid rgba(232,129,10,.2);
  border-left: 3px solid var(--accent);
  border-radius: 8px; padding: 12px 16px; margin-bottom: 20px;
  font-size: 13px; color: var(--gray2); line-height: 1.5;
}

/* Formulaire WooCommerce add-to-cart */
.woocommerce form.cart { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.woocommerce .quantity input.qty {
  width: 80px; height: 52px; text-align: center;
  background: var(--navy3); border: 1.5px solid var(--border);
  border-radius: 9px; color: #fff; font-size: 16px; font-weight: 700;
}
.woocommerce .single_add_to_cart_button {
  background: var(--accent) !important; color: #fff !important;
  border: none !important; border-radius: 10px !important;
  font-size: 16px !important; font-weight: 700 !important;
  padding: 15px 28px !important; cursor: pointer !important;
  min-height: 52px !important; transition: background .2s !important;
  text-transform: none !important; letter-spacing: 0 !important;
}
.woocommerce .single_add_to_cart_button:hover { background: var(--accent2) !important; color: #000 !important; }

/* Qty selector custom */
.qty-selector { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 9px; overflow: hidden; background: var(--navy3); width: fit-content; }
.qty-btn { width: 44px; height: 52px; background: none; border: none; color: var(--gray2); font-size: 22px; cursor: pointer; transition: all .15s; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { color: #fff; background: rgba(255,255,255,.06); }
.qty-val { width: 44px; text-align: center; font-size: 16px; font-weight: 700; color: #fff; background: none; border: none; outline: none; }

/* Actions secondaires */
.product-secondary-actions { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.btn-wishlist, .btn-store-check {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 16px; border-radius: 9px; font-size: 13.5px; font-weight: 600;
  background: transparent; border: 1.5px solid var(--border); color: var(--gray2);
  cursor: pointer; transition: all .2s; min-height: 44px; text-decoration: none;
}
.btn-wishlist:hover, .btn-store-check:hover { border-color: var(--gray3); color: #fff; }

/* Infos livraison */
.delivery-info { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.delivery-item { font-size: 13.5px; color: var(--gray2); display: flex; align-items: center; gap: 8px; }
.product-sku { font-size: 12px; color: var(--gray3); margin-top: 8px; }

/* ONGLETS */
.tabs-section { max-width: 1280px; margin: 0 auto; padding: 0 16px 56px; }
@media (min-width: 768px) { .tabs-section { padding: 0 24px 60px; } }
.tabs-nav { display: flex; border-bottom: 2px solid var(--border); overflow-x: auto; margin-bottom: 28px; scrollbar-width: none; }
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 14px 20px; background: none; border: none; border-bottom: 2px solid transparent;
  margin-bottom: -2px; font-size: 14px; font-weight: 600; color: var(--gray3);
  cursor: pointer; white-space: nowrap; min-height: 48px; transition: all .18s;
}
.tab-btn:hover { color: #fff; }
.tab-btn.active { color: #fff; border-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.warn-box {
  background: rgba(232,129,10,.06); border: 1px solid rgba(232,129,10,.18);
  border-left: 3px solid var(--accent); border-radius: 8px;
  padding: 14px 16px; margin-bottom: 20px; font-size: 14px;
  color: var(--gray2); line-height: 1.6;
}
.product-description { font-size: 15px; color: var(--gray2); line-height: 1.8; }
.product-description p { margin-bottom: 14px; }

/* Table specs */
.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs-table tr:not(:last-child) { border-bottom: 1px solid var(--border); }
.specs-table th { text-align: left; padding: 12px 16px 12px 0; color: var(--gray3); font-weight: 600; width: 40%; }
.specs-table td { padding: 12px 0; color: var(--gray2); }
.ce-badge { color: var(--green); font-weight: 600; }

/* Avis */
.review-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.review-item:last-child { border-bottom: none; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.review-author { color: #fff; font-size: 14px; }
.review-stars { color: var(--accent2); font-size: 14px; }
.review-date { font-size: 12px; color: var(--gray3); margin-left: auto; }
.review-text { font-size: 14px; color: var(--gray2); line-height: 1.6; }

/* Vidéo */
.video-section { background: var(--navy2); border-top: 1px solid var(--border); }
.video-wrap { border-radius: 14px; overflow: hidden; max-width: 800px; margin: 0 auto; }
.video-placeholder {
  position: relative; display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: var(--card); border: none; padding: 0; width: 100%;
  aspect-ratio: 16/9; overflow: hidden; border-radius: 14px;
}
.video-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute; width: 72px; height: 72px;
  background: rgba(201,162,39,.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; transition: background .2s;
}
.video-placeholder:hover .play-btn { background: var(--accent); transform: scale(1.1); }
.video-wrapper iframe { width: 100%; aspect-ratio: 16/9; border: none; }

/* Produits similaires */
.related-section { border-top: 1px solid var(--border); }

/* WooCommerce override — panier mini */
.woocommerce-cart-form, .woocommerce-checkout { max-width: 1280px; margin: auto; padding: 0 16px; }
@media (min-width: 768px) { .woocommerce-cart-form, .woocommerce-checkout { padding: 0 24px; } }

/* Wrapper WooCommerce général */
.mp-woo-wrap { padding: 32px 0; }


/* ═══════════════════════════════════════════════════════════════
   PAGE.PHP — PANIER / CHECKOUT / MON COMPTE
═══════════════════════════════════════════════════════════════ */

.wc-page-wrap {
  background: var(--navy);
  min-height: 60vh;
  padding: 2rem 0 4rem;
}

.wc-page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wc-page-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--accent);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--navy3);
}

/* ─── Tables WooCommerce ─── */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--text);
}
.woocommerce table.shop_table th {
  background: var(--navy3);
  color: var(--accent);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.woocommerce table.shop_table td {
  padding: 1rem;
  border-bottom: 1px solid var(--navy3);
  color: var(--text);
  vertical-align: middle;
}
.woocommerce table.shop_table img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

/* ─── Cart totals ─── */
.woocommerce .cart_totals,
.woocommerce .cart-collaterals {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
  color: var(--text);
}
.woocommerce .cart_totals h2,
.woocommerce .order-total th,
.woocommerce .cart_totals table th {
  color: var(--accent);
}
.woocommerce .cart_totals table td,
.woocommerce .cart_totals table th {
  padding: 0.75rem;
  border-bottom: 1px solid var(--navy3);
  color: var(--text);
}

/* ─── Buttons WooCommerce ─── */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--blue) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--blue-l) !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce .checkout-button {
  background: var(--accent) !important;
  color: var(--navy) !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce .checkout-button:hover {
  background: var(--accent2) !important;
}

/* ─── Formulaires WooCommerce ─── */
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  color: var(--gray2);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  display: block;
}
.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  background: var(--navy3) !important;
  color: var(--text) !important;
  border: 1px solid var(--navy3) !important;
  border-radius: 8px !important;
  padding: 0.65rem 1rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--blue) !important;
  outline: none !important;
}

/* ─── Checkout 2 colonnes ─── */
.woocommerce #customer_details { margin-bottom: 2rem; }
@media (min-width: 768px) {
  .woocommerce .col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .woocommerce #customer_details.col2-set { grid-template-columns: 1.2fr 0.8fr; }
}
.woocommerce .col-1,
.woocommerce .col-2 {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.woocommerce h3 { color: var(--accent); margin-bottom: 1rem; }

/* ─── Order review ─── */
.woocommerce #order_review_heading { color: var(--accent); margin-top: 2rem; }
.woocommerce #order_review { background: var(--card); border-radius: var(--radius); padding: 1.5rem; }
.woocommerce table#order_review tr.cart_item td,
.woocommerce table#order_review tfoot tr td,
.woocommerce table#order_review tfoot tr th { color: var(--text); }

/* ─── Notices WooCommerce ─── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--navy3) !important;
  color: var(--text) !important;
  border-left: 4px solid var(--blue) !important;
  border-radius: var(--radius) !important;
  padding: 1rem 1.5rem !important;
  margin-bottom: 1.5rem !important;
  list-style: none !important;
}
.woocommerce-error { border-left-color: var(--red) !important; }

/* ─── Mon compte ─── */
.woocommerce .woocommerce-MyAccount-navigation {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .woocommerce .woocommerce-MyAccount-navigation { float: left; width: 220px; margin-right: 2rem; }
  .woocommerce .woocommerce-MyAccount-content { overflow: hidden; }
}
.woocommerce .woocommerce-MyAccount-navigation li { list-style: none; }
.woocommerce .woocommerce-MyAccount-navigation li a {
  display: block; padding: 0.6rem 1rem; color: var(--text);
  border-radius: 6px; text-decoration: none;
}
.woocommerce .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce .woocommerce-MyAccount-navigation li a:hover { background: var(--blue); color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESKTOP — max-width sur les conteneurs
═══════════════════════════════════════════════════════════════ */

/* Conteneur global */
.hero, .stats-bar, .categories, .products-section,
.boutiques-section, .brands-section, .reass-section,
.cat-section, .prods-section { width: 100%; max-width: 100%; }

.hero-inner, .stats-inner, .section-inner,
.cats-inner, .prods-inner, .boutiques-inner,
.brands-inner, .reass-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* Éviter débordement horizontal global */
*, *::before, *::after { box-sizing: border-box; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* Grille catégories responsive desktop */
@media (min-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .prod-grid { grid-template-columns: repeat(4, 1fr); }
  .boutiques-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Page produit responsive desktop */
.single-product .product-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .single-product .product-layout {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .single-product .product-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }
}


/* ─── Fix inputs fond transparent checkout/panier ─── */
.wc-page-content input[type="text"],
.wc-page-content input[type="email"],
.wc-page-content input[type="tel"],
.wc-page-content input[type="number"],
.wc-page-content input[type="password"],
.wc-page-content textarea,
.wc-page-content select {
  background-color: var(--navy3) !important;
  color: var(--text) !important;
  border: 1px solid #2a3d54 !important;
  border-radius: 8px !important;
  padding: 0.65rem 1rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
  font-size: 1rem !important;
}
.wc-page-content input:focus,
.wc-page-content textarea:focus,
.wc-page-content select:focus {
  border-color: var(--blue) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(26,111,196,0.25) !important;
}
/* Placeholder */
.wc-page-content input::placeholder { color: var(--gray3) !important; }

/* ─── Woocommerce cart quantity input ─── */
.woocommerce .qty {
  background: var(--navy3) !important;
  color: var(--text) !important;
  border: 1px solid #2a3d54 !important;
  border-radius: 6px !important;
  width: 60px !important;
  text-align: center !important;
  padding: 0.4rem !important;
}
