/* =========================================================
   SIASIA — Feuille de style principale
   Charte graphique : Gris ardoise foncé + accent Rouge
   ========================================================= */

:root{
  --navy:#494E54;
  --navy-2:#34383D;
  --navy-3:#63696F;
  --navy-tint:#F1F2F3;
  --yellow:#B91C1C;
  --yellow-dark:#7F1D1D;
  --yellow-light:#FEE2E2;
  --bg:#FAFAFA;
  --white:#ffffff;
  --text:#1A1D21;
  --text-light:#6B7280;
  --text-faint:#9CA3AF;
  --border:#E6E7E9;
  --red:#DC2626;
  --green:#16A34A;
  /* Le vert vif ne tient que 3,3:1 sur blanc : trop faible pour un prix.
     Cette variante atteint 5:1 tout en restant reconnaissable comme « bonne affaire ». */
  --green-dark:#15803D;
  --purple:#6B7280;
  /* Accent lisible SUR FOND SOMBRE.
     Le rouge de la marque (#B91C1C) est trop foncé pour servir de couleur de
     texte sur l'ardoise du hero : le contraste y tombe sous 1,5:1. L'ambre
     ci-dessous dépasse 8:1 sur le même fond, et reste dans la famille chaude
     des marketplaces. Le rouge reste l'accent sur les fonds clairs. */
  --gold:#FFB020;
  --gold-soft:rgba(255,176,32,.14);
  --hero-1:#1B1F24;
  --hero-2:#2E343C;
  --radius:12px;
  --radius-sm:8px;
  --shadow:0 2px 10px rgba(20,20,20,.06);
  --shadow-lg:0 12px 32px rgba(20,20,20,.14);
}

.price-sale{color:var(--green-dark) !important}
.logo-mark,.footer-brand-logo-box i,.admin-logo-box{color:#fff}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI','Helvetica Neue',Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  font-size:14px;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
ul{list-style:none}
button{font-family:inherit;cursor:pointer}
input,select,textarea{font-family:inherit;font-size:13px}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap}

.wrap{max-width:1360px;margin:0 auto;padding:0 24px}
.wrap-narrow{max-width:960px;margin:0 auto;padding:0 24px}

/* ---------- BUTTONS ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:7px;border:none;border-radius:var(--radius-sm);font-weight:700;cursor:pointer;font-size:13.5px;padding:12px 20px;transition:transform .12s,box-shadow .12s,background .15s}
.btn:active{transform:translateY(1px)}
.btn-yellow{background:var(--yellow);color:#fff}
.btn-yellow:hover{background:var(--yellow-dark)}
.btn-navy{background:var(--navy);color:#fff}
.btn-navy:hover{background:var(--navy-2)}
.btn-outline{background:transparent;border:1.5px solid var(--border);color:var(--navy)}
.btn-outline:hover{border-color:var(--navy)}
.btn-outline-w{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.3)}
.btn-outline-w:hover{background:rgba(255,255,255,.08)}
.btn-block{width:100%}
.btn-sm{padding:8px 14px;font-size:12.5px}
.btn-lg{padding:15px 26px;font-size:15px}
.btn-danger{background:#FEE2E2;color:#B91C1C}
.btn-danger:hover{background:#FCA5A5}
.btn[disabled]{opacity:.5;cursor:not-allowed}

/* ---------- TOPBAR ---------- */
.topbar{background:var(--navy);padding:8px 24px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:6px}
.topbar-left{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--yellow-light)}
.topbar-badge{background:var(--yellow);color:#fff;font-size:10px;font-weight:800;padding:2px 8px;border-radius:3px;letter-spacing:.3px}
.topbar-right{display:flex;gap:16px;font-size:12px;color:rgba(255,255,255,.6);flex-wrap:wrap}
.topbar-right a{display:flex;align-items:center;gap:4px}
.topbar-right a:hover{color:#fff}

/* ---------- NAV ---------- */
.nav{background:#fff;border-bottom:1px solid var(--border);padding:0 24px;display:flex;align-items:center;height:86px;gap:16px;position:sticky;top:0;z-index:50}
.logo{display:flex;align-items:center;gap:9px;flex-shrink:0}
.logo-box{width:38px;height:38px;background:var(--navy);border-radius:9px;display:flex;align-items:center;justify-content:center}
.logo-box i{color:var(--yellow);font-size:19px}
.logo-name{font-size:19px;font-weight:800;color:var(--navy);letter-spacing:-.5px}
.logo-name em{color:var(--yellow-dark);font-style:normal}
.logo-img{height:64px;width:auto;border-radius:10px;display:block;background:#9CA3AF;padding:6px 10px;box-shadow:0 2px 8px rgba(0,0,0,.15)}

.nav-search{flex:1;background:var(--bg);border:1.5px solid var(--border);border-radius:8px;display:flex;align-items:center;height:42px;overflow:hidden;max-width:560px}
.nav-search select{border:none;background:transparent;border-right:1px solid #E0DED8;padding:0 10px;height:100%;font-size:12px;color:#555;outline:none;max-width:130px}
.nav-search input{flex:1;border:none;background:transparent;padding:0 12px;font-size:13px;outline:none;color:#222;min-width:0}
.nav-search button{background:var(--navy);color:#fff;border:none;height:100%;padding:0 18px;font-size:13px;font-weight:700;cursor:pointer;display:flex;align-items:center;gap:5px}
.nav-search button:hover{background:var(--navy-2)}

.nav-actions{display:flex;align-items:center;gap:6px;flex-shrink:0}
.nav-icon-btn{background:none;border:1px solid var(--border);border-radius:7px;padding:8px 10px;cursor:pointer;display:flex;align-items:center;gap:5px;font-size:12px;color:#444;position:relative}
.nav-icon-btn:hover{border-color:var(--navy)}
.nav-icon-btn .badge{position:absolute;top:-6px;right:-6px;background:var(--red);color:#fff;border-radius:10px;font-size:9px;font-weight:700;padding:1px 5px;min-width:16px;text-align:center}
.nav-cart{background:var(--navy);color:#fff;border-radius:8px;padding:10px 16px;font-size:13px;font-weight:700;cursor:pointer;display:flex;align-items:center;gap:7px;border:none}
.nav-cart:hover{background:var(--navy-2)}
.nav-cart .badge{background:var(--yellow);color:#fff;border-radius:10px;font-size:10px;font-weight:800;padding:1px 6px}
.nav-burger{display:none;background:none;border:1px solid var(--border);border-radius:7px;padding:8px 10px}

/* ---------- CAT BAR ---------- */
.catbar{background:var(--navy);padding:0 24px;display:flex;align-items:center;gap:0;overflow-x:auto;scrollbar-width:none}
.catbar::-webkit-scrollbar{display:none}
.catbar a{display:flex;align-items:center;gap:7px;padding:12px 16px;font-size:12px;font-weight:500;color:rgba(255,255,255,.68);cursor:pointer;white-space:nowrap;border-bottom:2px solid transparent;transition:color .2s}
.catbar a.active,.catbar a:hover{color:#fff;border-bottom-color:var(--yellow)}

/* ---------- PROMO STRIP ---------- */
.promo-strip{background:linear-gradient(90deg,var(--yellow-dark),var(--yellow));padding:10px 24px;display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap}
.promo-strip span{font-size:13px;font-weight:700;color:var(--navy)}
.promo-strip .countdown{background:rgba(11,31,58,.15);border-radius:5px;padding:4px 12px;font-size:13px;font-weight:800;color:var(--navy);letter-spacing:1px}
.promo-strip .cta{background:var(--navy);color:#fff;border-radius:5px;padding:6px 14px;font-size:12px;font-weight:700;cursor:pointer;border:none}

/* ---------- BREADCRUMB ---------- */
.breadcrumb{padding:14px 24px;font-size:12px;color:var(--text-light);display:flex;gap:6px;flex-wrap:wrap}
.breadcrumb a:hover{color:var(--navy);text-decoration:underline}
.breadcrumb .sep{color:var(--text-light)}

/* ---------- HERO (inspiré AliExpress / eBay) ---------- */
.hero{background:linear-gradient(155deg,var(--hero-1) 0%,#22272E 48%,var(--hero-2) 100%);padding:26px 24px 30px}
.hero-top{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;flex-wrap:wrap;margin-bottom:22px}
.hero-tag{display:inline-flex;align-items:center;gap:7px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);border-radius:20px;padding:6px 14px;margin-bottom:14px}
.hero-tag i{color:var(--gold);font-size:13px}
.hero-tag span{font-size:11px;font-weight:700;color:rgba(255,255,255,.9);text-transform:uppercase;letter-spacing:.6px}
.hero h1{font-size:34px;font-weight:800;color:#fff;line-height:1.18;letter-spacing:-.8px;margin-bottom:10px;max-width:640px}
/* L'accent du titre est souligné plutôt que simplement coloré : le trait
   ambre tient le rôle de signature et reste lisible même en cas de daltonisme. */
.hero h1 em{color:var(--gold);font-style:normal;box-shadow:inset 0 -.18em 0 rgba(255,176,32,.22)}
.hero-sub{font-size:14px;color:rgba(255,255,255,.68);line-height:1.65;max-width:500px}
.hero-btns{display:flex;gap:10px;flex-wrap:wrap;flex-shrink:0}
.hero-kpis{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border-top:1px solid rgba(255,255,255,.14);padding-top:20px;margin-top:24px}
.hero-kpi{text-align:left;padding-right:16px}
.hero-kpi-num{font-size:23px;font-weight:800;color:#fff;letter-spacing:-.5px}
.hero-kpi-lbl{font-size:11px;color:rgba(255,255,255,.58);margin-top:3px;letter-spacing:.2px}

/* Grille 3 colonnes : catégories | bannière carrousel | offres flash */
.hero-layout{display:grid;grid-template-columns:210px 1fr 230px;gap:14px;align-items:stretch}

.hero-cat-sidebar{background:#fff;border-radius:14px;padding:8px;overflow-y:auto;max-height:100%;box-shadow:0 2px 10px rgba(0,0,0,.10)}
.hero-cat-sidebar a{display:flex;align-items:center;gap:10px;padding:9px 10px;border-radius:8px;font-size:12.5px;font-weight:600;color:var(--text);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:background .12s,color .12s,padding-left .12s}
.hero-cat-sidebar a:hover{background:var(--yellow-light);color:var(--yellow);padding-left:14px}
.hero-cat-sidebar a i{font-size:15px;width:16px;text-align:center;color:var(--navy);flex-shrink:0}
.hero-cat-sidebar a.all{color:var(--navy);font-weight:800;border-bottom:1px solid var(--border);border-radius:0;margin-bottom:4px;padding-bottom:12px}
.hero-cat-sidebar a.all:hover{background:transparent;color:var(--yellow);padding-left:10px}

/* ---------- VITRINE VIDÉO DU HERO ----------
   Carte claire posée sur l'ardoise : la vidéo à gauche, l'argumentaire et
   l'appel à l'action à droite. Remplace l'ancien carrousel de vignettes. */
.hero-showcase{display:grid;grid-template-columns:1.02fr 1fr;gap:0;background:linear-gradient(135deg,#fff 0%,#F7F8FA 62%,#EFF1F4 100%);border-radius:16px;overflow:hidden;box-shadow:0 20px 45px rgba(0,0,0,.28);min-height:400px}
.hero-showcase-media{position:relative;background:#15181C;overflow:hidden}
.hero-showcase-media video{width:100%;height:100%;object-fit:cover;display:block}
/* Vues des coloris, affichées après la vidéo. Fond blanc et « contain » :
   ce sont des photos studio détourées, les rogner couperait des gourdes. */
.hero-showcase-gallery{position:absolute;inset:0;background:#fff;opacity:0;visibility:hidden;transition:opacity .45s ease}
.hero-showcase-gallery.is-visible{opacity:1;visibility:visible}
.hero-showcase-gallery img{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;padding:14px;opacity:0;transition:opacity .5s ease}
.hero-showcase-gallery img.is-active{opacity:1}
/* Surface de contrôle invisible : aucun bouton n'apparaît, mais un clic sur
   l'image met l'animation en pause, et la zone reste atteignable au clavier. */
.hero-showcase-surface{position:absolute;inset:0;width:100%;height:100%;background:transparent;border:0;padding:0;cursor:pointer;z-index:2}
.hero-showcase-surface:focus-visible{outline:3px solid var(--gold);outline-offset:-4px}
/* Repère de lecture, affiché seulement si le navigateur refuse de démarrer
   la vidéo tout seul (mode économie d'énergie, réglage restrictif). */
.hero-showcase-play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:58px;height:58px;border-radius:50%;background:rgba(255,255,255,.94);color:var(--navy);display:flex;align-items:center;justify-content:center;font-size:24px;box-shadow:0 6px 20px rgba(0,0,0,.32);pointer-events:none;z-index:3}
.hero-showcase-play[hidden]{display:none}
.hero-showcase-body{padding:24px 26px;display:flex;flex-direction:column;justify-content:center}
.hero-showcase-eyebrow{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:800;color:var(--yellow);text-transform:uppercase;letter-spacing:.7px;margin-bottom:10px}
.hero-showcase-eyebrow i{font-size:10px}
.hero-showcase-body h1{font-size:25px;font-weight:800;color:var(--text);line-height:1.16;letter-spacing:-.6px;margin-bottom:9px}
.hero-showcase-body > p{font-size:13px;color:var(--text-light);line-height:1.55;margin-bottom:14px}
.hero-showcase-points{display:flex;flex-direction:column;gap:8px;margin-bottom:18px}
.hero-showcase-points li{display:flex;align-items:flex-start;gap:9px;font-size:12px;color:var(--text-light);line-height:1.45}
.hero-showcase-points i{color:var(--yellow);font-size:17px;flex-shrink:0;margin-top:1px}
.hero-showcase-points strong{color:var(--text);font-weight:700}
.hero-showcase-cta{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-bottom:12px}
/* Le prix d'appel est intégré au bouton : le visiteur sait ce qu'il engage
   avant de cliquer, ce qui augmente nettement le taux de clic. */
.hero-showcase-cta .btn-yellow{box-shadow:0 8px 20px rgba(185,28,28,.28)}
.hero-showcase-cta .btn-yellow:hover{transform:translateY(-1px);box-shadow:0 11px 24px rgba(185,28,28,.34)}
.hero-showcase-cta .btn-yellow em{font-style:normal;font-weight:800;background:rgba(255,255,255,.2);border-radius:5px;padding:2px 8px;margin-left:2px;font-size:13px}
.hero-showcase-link{font-size:13px;font-weight:700;color:var(--navy);display:inline-flex;align-items:center;gap:5px;border-bottom:1.5px solid var(--border);padding-bottom:2px}
.hero-showcase-link:hover{color:var(--yellow);border-bottom-color:var(--yellow)}
.hero-showcase-link i{transition:transform .2s}
.hero-showcase-link:hover i{transform:translateX(3px)}
.hero-showcase-reassure{display:flex;align-items:center;gap:6px;flex-wrap:wrap;font-size:11px;line-height:1.5;color:var(--text-light);font-weight:600}
.hero-showcase-reassure i{color:var(--green-dark);font-size:14px}
.hero-showcase-reassure span{color:var(--text-faint)}

.hero-side{display:flex;flex-direction:column;gap:12px}
/* Ambre : ce libellé est posé sur l'ardoise, le rouge y serait illisible. */
.hero-side-lbl{font-size:11px;font-weight:800;color:var(--gold);text-transform:uppercase;letter-spacing:.7px;display:flex;align-items:center;gap:6px;padding:0 2px}
.hero-side-tile{background:#fff;border-radius:14px;padding:13px;display:flex;gap:12px;align-items:center;flex:1;transition:transform .15s,box-shadow .15s;box-shadow:0 2px 10px rgba(0,0,0,.10)}
.hero-side-tile:hover{transform:translateY(-2px);box-shadow:0 10px 22px rgba(0,0,0,.18)}
.hero-side-tile img{width:62px;height:62px;object-fit:contain;border-radius:10px;background:#F4F4F5;flex-shrink:0;padding:5px}
.hero-side-tile .info{min-width:0}
.hero-side-tile .info p{font-size:10px;color:var(--text-light);font-weight:700;text-transform:uppercase;letter-spacing:.4px;margin-bottom:3px}
.hero-side-tile .info strong{font-size:12.5px;color:var(--text);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;line-height:1.3;margin-bottom:6px;font-weight:700}
.hero-side-tile .info span{font-size:15px;font-weight:800;color:var(--yellow)}

/* Flèches et pastilles reposent maintenant sur une diapositive claire :
   elles passent en sombre pour rester visibles. */

/* ---------- ARGUMENTS DU HERO ---------- */
.hero-points{display:flex;flex-wrap:wrap;gap:8px 18px;margin-top:16px}
.hero-points li{display:flex;align-items:center;gap:7px;font-size:12.5px;font-weight:600;color:rgba(255,255,255,.88)}
.hero-points i{color:var(--gold);font-size:15px}

/* ---------- BANNIERE VISUELLE ----------
   Deux tuiles-photos plutôt qu'une image aplatie : le texte reste du vrai
   texte (lisible par Google, redimensionnable), et chaque tuile est un lien. */
.promo-band{display:grid;grid-template-columns:1.55fr 1fr;gap:14px;padding:22px 24px;background:var(--bg)}
.promo-tile{position:relative;border-radius:16px;overflow:hidden;min-height:230px;display:flex;align-items:flex-end;box-shadow:var(--shadow);isolation:isolate}
.promo-tile img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2;transition:transform .5s cubic-bezier(.4,0,.2,1)}
/* Voile sombre : sans lui, un texte blanc sur photo claire devient illisible. */
.promo-tile::after{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(20,23,27,.88) 0%,rgba(20,23,27,.72) 42%,rgba(20,23,27,.18) 100%)}
.promo-tile:hover img{transform:scale(1.04)}
.promo-tile-body{padding:26px 28px;max-width:460px}
.promo-eyebrow{display:inline-block;font-size:11px;font-weight:800;color:var(--gold);text-transform:uppercase;letter-spacing:.7px;margin-bottom:9px}
.promo-tile-body h2{font-size:24px;font-weight:800;color:#fff;line-height:1.22;letter-spacing:-.4px;margin-bottom:8px}
.promo-tile-body p{font-size:13.5px;color:rgba(255,255,255,.82);line-height:1.55;margin-bottom:14px}
.promo-cta{display:inline-flex;align-items:center;gap:7px;font-size:13px;font-weight:800;color:#fff;border-bottom:2px solid var(--gold);padding-bottom:3px}
.promo-tile .promo-cta i{transition:transform .2s}
.promo-tile:hover .promo-cta i{transform:translateX(4px)}
.promo-tile:not(.promo-tile-main)::after{background:linear-gradient(180deg,rgba(20,23,27,.12) 0%,rgba(20,23,27,.78) 58%,rgba(20,23,27,.92) 100%)}
.promo-tile:not(.promo-tile-main) .promo-tile-body h2{font-size:19px}

/* ---------- SECTION AMBIANCE ---------- */

/* ---------- TRUST ---------- */
.trust{background:#fff;border-bottom:1px solid var(--border);padding:0 24px;display:grid;grid-template-columns:repeat(4,1fr)}
.trust-item{display:flex;align-items:center;gap:12px;padding:18px 20px;border-right:1px solid #F0EEE8}
.trust-item:last-child{border-right:none}
.trust-icon{width:38px;height:38px;background:var(--yellow-light);border-radius:9px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.trust-icon i{color:var(--yellow-dark);font-size:18px}
.trust-text p{font-size:13px;font-weight:700;color:#111;line-height:1.2}
.trust-text span{font-size:11px;color:var(--text-light)}

/* ---------- SECTIONS ---------- */
.sec{padding:44px 24px}
.sec-alt{background:#fff;padding:44px 24px}
.sec-hdr{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:24px;gap:12px;flex-wrap:wrap}
.sec-tag{font-size:11px;font-weight:800;color:var(--yellow-dark);text-transform:uppercase;letter-spacing:.8px;margin-bottom:4px}
.sec-title{font-size:21px;font-weight:800;color:#111;letter-spacing:-.3px}
.sec-link{font-size:12px;font-weight:700;color:var(--navy);border:1.5px solid var(--border);border-radius:7px;padding:8px 16px;cursor:pointer;background:none;display:flex;align-items:center;gap:5px}
.sec-link:hover{border-color:var(--navy)}

/* ---------- CATEGORY GRID ---------- */
.cat-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
.cat-card{background:#fff;border:1px solid var(--border);border-radius:12px;padding:18px 14px;cursor:pointer;transition:border-color .18s,transform .12s;position:relative;display:block}
.cat-card:hover{border-color:var(--yellow-dark);transform:translateY(-2px)}
.cat-card-icon{width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:12px}
.cat-card-icon i{font-size:22px}
/* Carte de catégorie illustrée : la photo remplace l'icône et occupe toute la
   largeur, comme sur les grands sites marchands. */
.cat-card-photo{padding:0;overflow:hidden}
.cat-card-media{aspect-ratio:3/2;overflow:hidden;background:var(--navy-tint)}
.cat-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .45s cubic-bezier(.4,0,.2,1)}
.cat-card-photo:hover .cat-card-media img{transform:scale(1.06)}
.cat-card-photo h3{margin:14px 14px 2px}
.cat-card-photo p{margin:0 14px}
.cat-card-photo .sub{margin:5px 14px 16px}
.cat-card h3{font-size:13px;font-weight:700;color:#111;margin-bottom:2px;line-height:1.3}
.cat-card p{font-size:11px;color:var(--text-light)}
.cat-card .sub{font-size:10.5px;color:var(--text-light);margin-top:5px;line-height:1.4}
.cat-more{background:var(--navy);border-color:var(--navy);display:flex;flex-direction:column;align-items:flex-start;justify-content:center;padding:18px 16px}
.cat-more h3{font-size:14px;font-weight:800;color:#fff;margin-bottom:4px}
.cat-more p{font-size:11px;color:rgba(255,255,255,.72)}
.cat-more i{color:var(--yellow);font-size:20px;margin-top:10px}

/* ---------- FLASH SALE ---------- */
.flash{background:#fff;padding:44px 24px}
.flash-hdr{display:flex;align-items:center;gap:16px;margin-bottom:24px;flex-wrap:wrap}
.flash-title{font-size:21px;font-weight:800;color:#111;letter-spacing:-.3px;display:flex;align-items:center;gap:8px}
.flash-timer{display:flex;align-items:center;gap:6px;color:var(--text-light)}
.timer-box{background:var(--navy);color:#fff;border-radius:6px;padding:6px 10px;font-size:14px;font-weight:800;min-width:36px;text-align:center}
.timer-sep{font-size:16px;font-weight:800;color:var(--navy)}
.flash-link{margin-left:auto;font-size:12px;font-weight:700;color:var(--navy);border:1.5px solid var(--border);border-radius:7px;padding:8px 16px;cursor:pointer;background:none;display:flex;align-items:center;gap:5px}

/* ---------- PRODUCT GRID / CARD ---------- */
.prod-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}

/* Rangée de produits défilante horizontalement (style AliExpress/eBay) */
.scroll-row-wrap{position:relative}
.scroll-row{display:flex;gap:14px;overflow-x:auto;scroll-snap-type:x proximity;scroll-behavior:smooth;padding:2px 2px 10px;scrollbar-width:none}
.scroll-row::-webkit-scrollbar{display:none}
.scroll-row .prod-card{flex:0 0 215px;width:215px;scroll-snap-align:start}
.scroll-arrow{position:absolute;top:38%;transform:translateY(-50%);width:36px;height:36px;border-radius:50%;background:#fff;border:1px solid var(--border);box-shadow:var(--shadow);display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:4;color:var(--navy)}
.scroll-arrow:hover{background:var(--bg)}
.scroll-arrow.prev{left:-14px}
.scroll-arrow.next{right:-14px}
.prod-card{background:#fff;border:1px solid var(--border);border-radius:12px;overflow:hidden;transition:box-shadow .2s,border-color .2s;display:flex;flex-direction:column}
.prod-card:hover{border-color:#CECDCA;box-shadow:var(--shadow)}
/* Zone carrée : la photo est affichée entière (contain) et occupe le maximum
   de place possible, quelle que soit sa forme (carrée 800x800 ou paysage). */
.prod-img{aspect-ratio:1/1;min-height:190px;max-height:280px;position:relative;overflow:hidden;background:#F4F4F5;display:flex;align-items:center;justify-content:center;padding:10px}
.prod-img img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;transition:transform .3s}
.prod-card:hover .prod-img img{transform:scale(1.05)}
.prod-tag{position:absolute;top:10px;left:10px;font-size:10px;font-weight:800;padding:3px 8px;border-radius:4px;z-index:2}
.tag-promo{background:var(--red);color:#fff}
.tag-new{background:var(--navy);color:#fff}
.tag-top{background:var(--purple);color:#fff}
.tag-sold{background:var(--yellow-dark);color:#fff}
.prod-wish{position:absolute;top:8px;right:8px;width:28px;height:28px;background:rgba(255,255,255,.92);border:1px solid var(--border);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:2}
.prod-wish i{font-size:13px;color:#BBB}
.prod-wish.active i{color:var(--red)}
.prod-body{padding:14px;display:flex;flex-direction:column;flex:1}
.prod-cat-lbl{font-size:10px;font-weight:700;color:var(--yellow-dark);text-transform:uppercase;letter-spacing:.4px;margin-bottom:4px}
.prod-name{font-size:13px;font-weight:700;color:#111;line-height:1.35;margin-bottom:8px;min-height:38px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.prod-rating{display:flex;align-items:center;gap:4px;margin-bottom:10px}
.stars{display:flex;gap:2px}
.star{width:10px;height:10px;background:var(--yellow-dark);clip-path:polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%)}
.star-e{background:var(--border)}
.prod-rating span{font-size:11px;color:var(--text-light)}
.prod-foot{display:flex;align-items:center;justify-content:space-between;border-top:1px solid #F0EEE8;padding-top:10px;margin-top:auto}
.prod-price{font-size:15px;font-weight:800;color:var(--navy)}
.prod-old{font-size:11.5px;color:var(--text-light);text-decoration:line-through;display:block;margin-top:1px}
.prod-add{background:var(--navy);color:#fff;border:none;border-radius:7px;padding:8px 12px;font-size:12px;font-weight:700;cursor:pointer;display:flex;align-items:center;gap:4px}
.prod-add:hover{background:var(--navy-2)}
.prod-add.added{background:var(--green)}
.stock-low{font-size:10.5px;color:var(--red);font-weight:700;margin-top:4px}

/* ---------- CTA STRIP ---------- */
.cta-strip{margin:0 24px 44px;background:var(--navy);border-radius:14px;padding:34px 36px;display:grid;grid-template-columns:1fr auto;gap:20px;align-items:center}
.cta-strip h2{font-size:21px;font-weight:800;color:#fff;margin-bottom:6px;letter-spacing:-.3px}
.cta-strip p{font-size:13px;color:rgba(255,255,255,.58);line-height:1.6}
.cta-strip .wa-btn{background:var(--yellow);color:#fff;border:none;border-radius:9px;padding:15px 22px;font-size:14px;font-weight:800;cursor:pointer;white-space:nowrap;display:flex;align-items:center;gap:8px}
.cta-strip .wa-btn:hover{background:var(--yellow-dark)}
.cta-note{font-size:11px;color:rgba(255,255,255,.38);margin-top:8px;text-align:center}

/* ---------- BRANDS ---------- */
.brands-bar{background:#fff;border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:20px 24px;display:flex;align-items:center;gap:14px;overflow-x:auto}
.brands-bar .lbl{font-size:11px;font-weight:800;color:#999;text-transform:uppercase;letter-spacing:.5px;flex-shrink:0}
.brand-pill{background:var(--bg);border:1px solid var(--border);border-radius:8px;padding:8px 18px;font-size:13px;font-weight:600;color:#555;flex-shrink:0;white-space:nowrap}

/* ---------- NEWSLETTER ---------- */
.newsletter{background:var(--yellow-light);border:1px solid var(--border);border-radius:12px;padding:28px;margin:0 24px 44px;display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.newsletter-text h3{font-size:17px;font-weight:800;color:var(--navy);margin-bottom:4px}
.newsletter-text p{font-size:13px;color:#4B5563}
.newsletter-form{display:flex;flex:1;gap:8px;justify-content:flex-end;flex-wrap:wrap;min-width:260px}
.newsletter-form input{flex:1;max-width:280px;border:1.5px solid var(--border);border-radius:8px;padding:11px 14px;font-size:13px;background:#fff;outline:none}
.newsletter-form button{background:var(--navy);color:#fff;border:none;border-radius:8px;padding:11px 20px;font-size:13px;font-weight:700;cursor:pointer;white-space:nowrap}
.newsletter-form button:hover{background:var(--navy-2)}
.newsletter-msg{font-size:12px;margin-top:8px;width:100%}

/* ---------- FILTER TABS ---------- */
.filter-tabs{display:flex;gap:8px;margin-bottom:20px;flex-wrap:wrap}
.ftab{background:#fff;border:1.5px solid var(--border);border-radius:7px;padding:8px 14px;font-size:12px;font-weight:600;color:#555;cursor:pointer}
.ftab.on,.ftab:hover{background:var(--navy);border-color:var(--navy);color:#fff;font-weight:700}

/* ---------- FOOTER ---------- */
.footer{background:var(--navy);padding:44px 24px 20px}
.footer-top{display:grid;grid-template-columns:2.2fr 1fr 1fr 1fr 1fr;gap:24px;margin-bottom:32px}
.footer-brand-logo{display:flex;align-items:center;gap:8px;margin-bottom:12px}
.footer-brand-logo-box{width:32px;height:32px;background:rgba(185,28,28,.25);border-radius:7px;display:flex;align-items:center;justify-content:center}
.footer-brand-logo-box i{color:var(--yellow);font-size:16px}
.footer-brand-logo span{font-size:16px;font-weight:800;color:#fff;letter-spacing:-.3px}
.footer-brand-logo em{color:var(--yellow);font-style:normal}
.footer-logo-img{height:56px;width:auto;border-radius:8px;display:block;background:#9CA3AF;padding:6px 10px}
.footer-brand p{font-size:12px;color:#fff;line-height:1.7;margin-bottom:14px}
.footer-brand-contact{display:flex;flex-direction:column;gap:6px}
.footer-brand-contact span,.footer-brand-contact a{font-size:12px;color:#fff;display:flex;align-items:center;gap:6px}
.footer-brand-contact i{font-size:13px;color:var(--yellow)}
.footer-col h4{font-size:12px;font-weight:800;color:#fff;margin-bottom:12px;letter-spacing:.2px}
.footer-col ul{display:flex;flex-direction:column;gap:7px}
.footer-col ul li a{font-size:12px;color:#fff;cursor:pointer}
.footer-col ul li a:hover{color:var(--yellow)}
.footer-desc{color:#fff;font-size:12px;line-height:1.7;margin-bottom:14px}
.footer-socials{display:flex;gap:8px;margin-top:14px}
.soc-btn{width:30px;height:30px;background:rgba(255,255,255,.12);border-radius:7px;display:flex;align-items:center;justify-content:center;cursor:pointer}
.soc-btn i{font-size:14px;color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.15);padding-top:16px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px}
.footer-bottom p{font-size:11px;color:#fff}
.pay-icons{display:flex;gap:6px;flex-wrap:wrap}
.pay-icon{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);border-radius:5px;padding:4px 10px;font-size:10px;font-weight:700;color:#fff}

/* ---------- CATEGORY / SEARCH / LISTING PAGE ---------- */
.listing{display:grid;grid-template-columns:250px 1fr;gap:22px;align-items:start;padding:20px 24px 50px}
.filters-box{background:#fff;border:1px solid var(--border);border-radius:12px;padding:18px;position:sticky;top:82px}
.filters-box h4{font-size:13px;font-weight:800;margin-bottom:12px;color:var(--navy);text-transform:uppercase;letter-spacing:.4px}
.filter-group{margin-bottom:20px}
.filter-group h5{font-size:12px;font-weight:700;margin-bottom:10px;color:#333}
.filter-group label{display:flex;align-items:center;gap:8px;font-size:12.5px;color:#555;padding:5px 0;cursor:pointer}
.filter-price{display:flex;gap:8px;align-items:center}
.filter-price input{width:100%;border:1px solid var(--border);border-radius:6px;padding:8px;font-size:12px}
.listing-hdr{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;flex-wrap:wrap;gap:10px}
.listing-count{font-size:12.5px;color:var(--text-light)}
.listing-sort select{border:1.5px solid var(--border);border-radius:7px;padding:9px 12px;font-size:12.5px;background:#fff}
.cat-hero{background:var(--navy);padding:30px 24px;display:flex;align-items:center;gap:16px}
.cat-hero-icon{width:52px;height:52px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.cat-hero-icon i{font-size:26px}
.cat-hero h1{font-size:22px;font-weight:800;color:#fff}
.cat-hero p{font-size:13px;color:rgba(255,255,255,.55);margin-top:4px}
.empty-state{background:#fff;border:1px dashed var(--border);border-radius:12px;padding:50px 24px;text-align:center;color:var(--text-light)}
.empty-state i{font-size:40px;color:var(--text-faint);margin-bottom:12px}

.pagination{display:flex;gap:6px;justify-content:center;margin-top:32px;flex-wrap:wrap}
.pagination a,.pagination span{min-width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:1.5px solid var(--border);border-radius:7px;font-size:12.5px;font-weight:600;color:var(--navy)}
.pagination a:hover{border-color:var(--navy)}
.pagination .active{background:var(--navy);color:#fff;border-color:var(--navy)}
.pagination .disabled{color:var(--text-faint);pointer-events:none}

/* ---------- PRODUCT DETAIL ---------- */
.pd-wrap{display:grid;grid-template-columns:460px 1fr;gap:36px;padding:24px}
.pd-gallery-main{background:#F4F4F5;border:1px solid var(--border);border-radius:14px;overflow:hidden;height:420px;display:flex;align-items:center;justify-content:center;padding:24px}
.pd-gallery-main img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain}
.pd-thumbs{display:flex;gap:8px;margin-top:10px}
.pd-thumb{width:76px;height:76px;border-radius:9px;overflow:hidden;border:2px solid var(--border);cursor:pointer;flex-shrink:0;background:#F4F4F5;display:flex;align-items:center;justify-content:center;padding:6px}
.pd-thumb.active{border-color:var(--yellow-dark)}
.pd-thumb img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain}
.pd-info h1{font-size:24px;font-weight:800;color:var(--text);line-height:1.3;margin:8px 0 10px}
.pd-brand{font-size:12.5px;color:var(--text-light)}
.pd-brand a{color:var(--navy);font-weight:700}
.pd-rating{display:flex;align-items:center;gap:8px;margin:12px 0}
.pd-price-box{background:var(--bg);border-radius:12px;padding:18px;margin:16px 0;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
.pd-price{font-size:28px;font-weight:800;color:var(--navy)}
.pd-old-price{font-size:14px;color:#BBB;text-decoration:line-through}
.pd-save{font-size:12px;font-weight:700;color:var(--red);background:#FEE2E2;padding:3px 8px;border-radius:5px;display:inline-block;margin-top:4px}
.pd-stock{font-size:12.5px;font-weight:700;display:flex;align-items:center;gap:6px}
.pd-stock.ok{color:var(--green)}
.pd-stock.low{color:#D97706}
.pd-stock.out{color:var(--red)}
.pd-qty{display:flex;align-items:center;border:1.5px solid var(--border);border-radius:8px;overflow:hidden;width:fit-content}
.pd-qty button{width:38px;height:42px;background:#fff;border:none;font-size:16px;font-weight:700;color:var(--navy);cursor:pointer}
.pd-qty button:hover{background:var(--bg)}
.pd-qty input{width:50px;text-align:center;border:none;border-left:1px solid var(--border);border-right:1px solid var(--border);height:42px;font-size:14px;font-weight:700}
.pd-actions{display:flex;gap:10px;margin:20px 0;flex-wrap:wrap}
.pd-meta{display:flex;flex-direction:column;gap:8px;font-size:12.5px;color:var(--text-light);border-top:1px solid var(--border);padding-top:16px;margin-top:6px}
.pd-meta strong{color:var(--text)}
.pd-tabs{display:flex;gap:0;border-bottom:2px solid var(--border);margin:40px 24px 0}
.pd-tab{padding:14px 20px;font-size:13.5px;font-weight:700;color:var(--text-light);cursor:pointer;border-bottom:2px solid transparent;margin-bottom:-2px}
.pd-tab.active{color:var(--navy);border-color:var(--yellow-dark)}
.pd-tab-content{padding:28px 24px 50px;max-width:900px}
.pd-tab-panel{display:none}
.pd-tab-panel.active{display:block}
.spec-table{width:100%;border-collapse:collapse}
.spec-table tr{border-bottom:1px solid var(--border)}
.spec-table td{padding:12px 8px;font-size:13px}
.spec-table td:first-child{color:var(--text-light);width:220px}
.spec-table td:last-child{font-weight:600}
.pd-desc{font-size:13.5px;line-height:1.8;color:#333}
.related-wrap{padding:0 24px 50px}

/* ---------- CART PAGE ---------- */
.cart-wrap{display:grid;grid-template-columns:1fr 340px;gap:24px;padding:24px;align-items:start}
.cart-item{background:#fff;border:1px solid var(--border);border-radius:12px;padding:16px;display:grid;grid-template-columns:80px 1fr auto;gap:14px;align-items:center;margin-bottom:12px}
.cart-item img{width:80px;height:80px;object-fit:contain;border-radius:8px;background:#F4F4F5;padding:6px}
.cart-item h4{font-size:13.5px;font-weight:700;margin-bottom:4px}
.cart-item .cat{font-size:11px;color:var(--yellow-dark);font-weight:700;text-transform:uppercase}
.cart-item-actions{display:flex;align-items:center;gap:16px;margin-top:8px}
.cart-item-price{text-align:right}
.cart-item-price strong{font-size:15px;color:var(--navy);display:block}
.cart-remove{font-size:11.5px;color:var(--red);font-weight:700;cursor:pointer;display:flex;align-items:center;gap:4px}
.qty-mini{display:flex;align-items:center;border:1.5px solid var(--border);border-radius:7px;overflow:hidden}
.qty-mini button{width:28px;height:28px;background:#fff;border:none;font-weight:700;cursor:pointer;color:var(--navy)}
.qty-mini input{width:36px;text-align:center;border:none;border-left:1px solid var(--border);border-right:1px solid var(--border);height:28px;font-size:12.5px}
.summary-box{background:#fff;border:1px solid var(--border);border-radius:12px;padding:20px;position:sticky;top:82px}
.summary-box h3{font-size:15px;font-weight:800;margin-bottom:16px}
.summary-row{display:flex;justify-content:space-between;font-size:13px;color:var(--text-light);padding:8px 0}
.summary-row.total{border-top:1px solid var(--border);margin-top:8px;padding-top:14px;font-size:16px;font-weight:800;color:var(--navy)}
.summary-row.total span:last-child{color:var(--navy)}
.empty-cart{background:#fff;border:1px dashed var(--border);border-radius:12px;padding:60px 24px;text-align:center}
.empty-cart i{font-size:48px;color:var(--text-faint);margin-bottom:16px}
.promo-note{background:var(--yellow-light);border:1px solid var(--border);border-radius:8px;padding:10px 12px;font-size:11.5px;color:var(--text-light);margin-top:14px}

/* ---------- CHECKOUT / FORMS ---------- */
.form-page{display:grid;grid-template-columns:1fr 360px;gap:24px;padding:24px;align-items:start}
.form-card{background:#fff;border:1px solid var(--border);border-radius:12px;padding:24px}
.form-card h3{font-size:15px;font-weight:800;margin-bottom:16px;display:flex;align-items:center;gap:8px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px}
.field{display:flex;flex-direction:column;gap:6px;margin-bottom:14px}
.field label{font-size:12.5px;font-weight:700;color:var(--text)}
.field input,.field select,.field textarea{border:1.5px solid var(--border);border-radius:8px;padding:11px 13px;font-size:13.5px;outline:none;width:100%}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--navy)}
.field-error{font-size:11.5px;color:var(--red)}
.payment-options{display:flex;flex-direction:column;gap:10px}
.payment-option{border:1.5px solid var(--border);border-radius:10px;padding:13px 16px;display:flex;align-items:center;gap:12px;cursor:pointer}
.payment-option:has(input:checked){border-color:var(--navy);background:var(--navy-tint)}
.payment-option input{width:16px;height:16px}
.payment-option i{font-size:20px;color:var(--navy)}
.alert{border-radius:9px;padding:12px 16px;font-size:12.5px;margin-bottom:16px;display:flex;gap:8px;align-items:flex-start}
.alert-error{background:#FEE2E2;color:#B91C1C;border:1px solid #FCA5A5}
.alert-success{background:#DCFCE7;color:#166534;border:1px solid #86EFAC}
.alert-info{background:var(--navy-tint);color:var(--navy);border:1px solid #C7D6EC}

/* ---------- VIREMENT WISE (page de confirmation) ---------- */
.wise-pay-box{margin-top:20px;border:1.5px solid var(--navy);border-radius:var(--radius);padding:20px;background:var(--navy-tint)}
.wise-pay-box h3{font-size:15px;font-weight:800;color:var(--navy);display:flex;align-items:center;gap:8px;margin-bottom:8px}
.wise-pay-intro{font-size:12.5px;color:var(--text-light);margin-bottom:16px;line-height:1.6}
.wise-pay-table{width:100%;border-collapse:collapse;background:#fff;border-radius:var(--radius-sm);overflow:hidden}
.wise-pay-table tr{border-bottom:1px solid var(--border)}
.wise-pay-table tr:last-child{border-bottom:none}
.wise-pay-table td{padding:11px 14px;font-size:13px;vertical-align:middle}
.wise-pay-table td:first-child{color:var(--text-light);width:170px}
.wise-pay-table td strong{font-size:14px;letter-spacing:.02em}
.wise-pay-ref{background:#FFFBEB}
.wise-pay-ref td strong{color:var(--yellow-dark)}
.wise-copy{margin-left:10px;border:1px solid var(--border);background:#fff;border-radius:6px;padding:3px 10px;font-size:11px;font-weight:700;color:var(--navy);cursor:pointer;font-family:inherit}
.wise-copy:hover{background:var(--navy-tint)}
.wise-copy.is-copied{background:#DCFCE7;border-color:#86EFAC;color:#166534}
.wise-pay-warning{margin-top:14px;font-size:12.5px;line-height:1.6;color:var(--text);display:flex;gap:8px;align-items:flex-start}
.wise-pay-warning i{color:var(--yellow);font-size:16px;flex-shrink:0}
.wise-pay-alt{margin-top:16px;padding-top:14px;border-top:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;font-size:12.5px;color:var(--text-light)}
@media(max-width:700px){
  .wise-pay-table td:first-child{width:110px}
  .wise-pay-table td{padding:10px;font-size:12px}
  .wise-copy{display:block;margin:6px 0 0}
}

/* ---------- ACCOUNT PAGES ---------- */
.auth-wrap{max-width:420px;margin:50px auto;padding:0 24px}
.auth-card{background:#fff;border:1px solid var(--border);border-radius:14px;padding:32px;box-shadow:var(--shadow)}
.auth-card h1{font-size:20px;font-weight:800;margin-bottom:6px}
.auth-card p.sub{font-size:12.5px;color:var(--text-light);margin-bottom:22px}
.auth-switch{text-align:center;margin-top:18px;font-size:12.5px;color:var(--text-light)}
.auth-switch a{color:var(--navy);font-weight:700}
.dash-orders table{width:100%;border-collapse:collapse}
.dash-orders th{text-align:left;font-size:11.5px;text-transform:uppercase;color:var(--text-light);padding:10px;border-bottom:2px solid var(--border)}
.dash-orders td{padding:12px 10px;font-size:13px;border-bottom:1px solid var(--border)}
.status-pill{font-size:11px;font-weight:700;padding:4px 10px;border-radius:20px;display:inline-block}
.status-en_attente{background:#FEF3C7;color:#92400E}
.status-confirmee{background:#DBEAFE;color:#1E40AF}
.status-preparee{background:#E0E7FF;color:#3730A3}
.status-expediee{background:#EDE9FE;color:#5B21B6}
.status-livree{background:#DCFCE7;color:#166534}
.status-annulee{background:#FEE2E2;color:#991B1B}

/* ---------- STATIC PAGES ---------- */
.static-hero{background:var(--navy);padding:44px 24px;text-align:center}
.static-hero h1{color:#fff;font-size:28px;font-weight:800}
.static-hero p{color:rgba(255,255,255,.55);margin-top:8px;font-size:13.5px}
.static-content{max-width:820px;margin:0 auto;padding:40px 24px;font-size:14px;line-height:1.8;color:#333}
.static-content h2{font-size:18px;font-weight:800;color:var(--navy);margin:28px 0 12px}
.static-content h2:first-child{margin-top:0}
.static-content p{margin-bottom:12px}
.faq-item{border-bottom:1px solid var(--border);padding:16px 0}
.faq-item h3{font-size:14.5px;font-weight:700;margin-bottom:6px;color:var(--navy)}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;max-width:900px;margin:40px auto;padding:0 24px}
.contact-info-card{background:#fff;border:1px solid var(--border);border-radius:12px;padding:22px}
.contact-info-card .item{display:flex;gap:12px;align-items:flex-start;margin-bottom:16px}
.contact-info-card i{color:var(--yellow-dark);font-size:18px;margin-top:2px}

/* ---------- HERO PRODUIT UNIQUE (accueil) ---------- */
.hero-flex{display:grid;grid-template-columns:1.05fr .95fr;gap:36px;align-items:center;padding:36px 0 10px}
.hero-flex-img{position:relative;border-radius:18px;overflow:hidden;box-shadow:0 25px 60px rgba(0,0,0,.35);min-height:320px}
.hero-flex-img img{width:100%;height:100%;object-fit:cover;min-height:320px;max-height:440px}
.hero-price-pill{display:inline-flex;align-items:baseline;gap:8px;background:#fff;border-radius:12px;padding:10px 16px;margin:14px 0 18px}
.hero-price-pill .amount{font-size:22px;font-weight:800;color:var(--navy)}
.hero-price-pill .note{font-size:11.5px;color:var(--text-light)}

/* ---------- SPOTLIGHT PRODUIT ---------- */
.spotlight{display:grid;grid-template-columns:460px 1fr;gap:36px;padding:0 24px}
.spotlight-gallery-main{border-radius:14px;overflow:hidden;border:1px solid var(--border);height:420px;background:#fff}
.spotlight-gallery-main img{width:100%;height:100%;object-fit:cover}
.spotlight-thumbs{display:flex;gap:8px;margin-top:10px;flex-wrap:wrap}
.spotlight-thumb{width:66px;height:66px;border-radius:9px;overflow:hidden;border:2px solid var(--border);cursor:pointer;flex-shrink:0}
.spotlight-thumb.active{border-color:var(--navy)}
.spotlight-thumb img{width:100%;height:100%;object-fit:cover}
.swatch-row{display:flex;gap:10px;margin:14px 0 4px;flex-wrap:wrap}
.swatch{width:34px;height:34px;border-radius:50%;border:2px solid var(--border);cursor:pointer;position:relative;padding:0}
.swatch.active{border-color:var(--navy);box-shadow:0 0 0 2px #fff, 0 0 0 4px var(--navy)}
.swatch-label{font-size:12px;color:var(--text-light);margin-left:4px}
.tier-row{display:flex;gap:10px;margin:16px 0;flex-wrap:wrap}
.tier-card{border:1.5px solid var(--border);border-radius:10px;padding:12px 16px;min-width:140px}
.tier-card.best{border-color:var(--navy);background:var(--navy-tint)}
.tier-card .tier-lbl{font-size:11px;font-weight:700;color:var(--text-light);text-transform:uppercase}
.tier-card .tier-price{font-size:17px;font-weight:800;color:var(--navy);margin-top:4px}
.tier-card .tier-save{font-size:11px;color:var(--green);font-weight:700}

/* ---------- FEATURES / GALLERY / AVIS ---------- */
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.gallery-grid img{width:100%;height:230px;object-fit:cover;border-radius:12px;border:1px solid var(--border)}
.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.review-card{background:#fff;border:1px solid var(--border);border-radius:12px;padding:18px}
.review-card .stars{margin-bottom:8px}
.review-card h4{font-size:13.5px;font-weight:700;margin-bottom:4px}
.review-card p{font-size:12.5px;color:#444;line-height:1.6;margin-bottom:10px}
.review-card .who{font-size:11.5px;color:var(--text-light);display:flex;align-items:center;gap:6px}
.review-summary{display:flex;align-items:center;gap:20px;margin-bottom:24px;flex-wrap:wrap}
.review-summary .avg{font-size:34px;font-weight:800;color:var(--navy)}
.review-bar-row{display:flex;align-items:center;gap:8px;font-size:11.5px;color:var(--text-light);margin-bottom:3px}
.review-bar-track{flex:1;height:6px;background:var(--border);border-radius:4px;overflow:hidden;max-width:160px}
.review-bar-fill{height:100%;background:var(--yellow-dark)}

@media (max-width:1100px){
  .hero-flex{grid-template-columns:1fr}
  .spotlight{grid-template-columns:1fr}
  .spotlight-gallery-main{height:320px}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .review-grid{grid-template-columns:1fr}
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner{position:fixed;left:16px;right:16px;bottom:16px;z-index:100;background:#fff;border:1px solid var(--border);border-radius:14px;box-shadow:var(--shadow-lg);padding:18px 20px;display:flex;align-items:center;gap:20px;flex-wrap:wrap;max-width:900px;margin:0 auto}
.cookie-banner-text strong{font-size:13.5px;display:block;margin-bottom:4px}
.cookie-banner-text p{font-size:12px;color:var(--text-light);line-height:1.6}
.cookie-banner-text a{color:var(--navy);font-weight:700;text-decoration:underline}
.cookie-banner-actions{display:flex;gap:10px;flex-wrap:wrap;flex-shrink:0;margin-left:auto}
@media (max-width:640px){
  .cookie-banner{flex-direction:column;align-items:stretch}
  .cookie-banner-actions{margin-left:0;justify-content:stretch}
  .cookie-banner-actions .btn{flex:1}
}

/* ---------- SUIVI DE COMMANDE ---------- */
.status-timeline{display:flex;justify-content:space-between;margin:24px 0 30px;position:relative}
.status-timeline::before{content:'';position:absolute;top:15px;left:5%;right:5%;height:2px;background:var(--border);z-index:0}
.status-step{display:flex;flex-direction:column;align-items:center;gap:8px;position:relative;z-index:1;flex:1;text-align:center}
.status-step .dot{width:32px;height:32px;border-radius:50%;background:#fff;border:2px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--text-faint);font-size:15px}
.status-step.done .dot{background:var(--navy);border-color:var(--navy);color:#fff}
.status-step.current .dot{background:#fff;border-color:var(--navy);color:var(--navy);box-shadow:0 0 0 4px var(--navy-tint)}
.status-step .lbl{font-size:11.5px;font-weight:700;color:var(--text-light)}
.status-step.done .lbl,.status-step.current .lbl{color:var(--text)}
.status-history{margin-top:10px}
.status-history-row{display:flex;gap:12px;padding:10px 0;border-bottom:1px solid var(--border);font-size:12.5px}
.status-history-row:last-child{border-bottom:none}
.status-history-row .when{color:var(--text-faint);white-space:nowrap;min-width:130px}
@media (max-width:640px){
  .status-timeline{flex-wrap:wrap;gap:14px}
  .status-timeline::before{display:none}
}

/* ---------- 404 ---------- */
.page-404{text-align:center;padding:90px 24px}
.page-404 .code{font-size:80px;font-weight:800;color:var(--yellow-dark)}
.page-404 p{color:var(--text-light);margin:10px 0 24px}

/* ---------- MOBILE / RESPONSIVE ---------- */
@media (max-width:1200px){
  .hero-cat-sidebar{display:none}
  .hero-layout{grid-template-columns:1fr 220px}
}
@media (max-width:1100px){
  .cat-grid{grid-template-columns:repeat(3,1fr)}
  .prod-grid{grid-template-columns:repeat(3,1fr)}
  .listing{grid-template-columns:1fr}
  .filters-box{position:static;margin-bottom:16px}
  .pd-wrap{grid-template-columns:1fr}
  .pd-gallery-main{height:340px}
  .form-page{grid-template-columns:1fr}
  .cart-wrap{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr}
}
@media (max-width:1100px){
  .promo-band{grid-template-columns:1fr}
  .promo-tile{min-height:200px}
  .ambiance{grid-template-columns:1fr;gap:24px;padding:34px 20px}
}
@media (max-width:900px){
  /* La vidéo passe au-dessus du texte : c'est elle qui accroche le regard. */
  .hero-showcase{grid-template-columns:1fr;min-height:0}
  .hero-showcase-media{aspect-ratio:16/10}
  .hero-showcase-body{padding:22px 20px 24px}
  .hero-showcase-body h1{font-size:23px}
  .hero-showcase-cta{gap:12px}
  .hero-showcase-cta .btn-lg{width:100%;justify-content:center}
  .hero-points{gap:7px 14px}
  .hero-points li{font-size:12px}
  .promo-tile-body{padding:20px 22px}
  .promo-tile-body h2{font-size:20px}
  .ambiance-body h2{font-size:23px}
  .hero-side{display:none}
  .hero-layout{grid-template-columns:1fr}
  /* La photo passe au-dessus du texte plutôt que de disparaître : sur une
     boutique, c'est elle qui déclenche le clic. */
}
@media (max-width:760px){
  .topbar-right span:nth-child(2){display:none}
  .nav{flex-wrap:wrap;height:auto;padding:12px 16px;gap:10px}
  .nav-search{order:3;max-width:100%;width:100%}
  .nav-actions .nav-icon-btn span,.nav-actions .nav-icon-btn{display:none}
  .nav-cart{padding:9px 12px}
  .cat-grid{grid-template-columns:repeat(2,1fr)}
  .prod-grid{grid-template-columns:repeat(2,1fr)}
  .trust{grid-template-columns:repeat(2,1fr)}
  .trust-item{border-right:none;border-bottom:1px solid #F0EEE8}
  .hero h1{font-size:22px}
  .hero-top{align-items:flex-start}
  .hero-kpis{grid-template-columns:repeat(2,1fr);row-gap:16px}
  .cta-strip{grid-template-columns:1fr;text-align:center}
  .cta-strip .wa-btn{width:100%}
  .newsletter{flex-direction:column;text-align:center}
  .newsletter-form{justify-content:center}
  .footer-top{grid-template-columns:1fr 1fr;gap:28px 16px}
  .contact-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .cart-item{grid-template-columns:60px 1fr;grid-template-areas:"img body" "img price"}
  .cart-item img{grid-area:img;width:60px;height:60px}
  .cart-item-price{grid-area:price;text-align:left;display:flex;align-items:center;justify-content:space-between;margin-top:8px}
  .scroll-arrow.prev{left:2px}
  .scroll-arrow.next{right:2px}
}
@media (max-width:480px){
  .cat-grid{grid-template-columns:repeat(2,1fr)}
  .prod-grid{grid-template-columns:repeat(2,1fr)}
  .wrap,.sec,.sec-alt{padding-left:14px;padding-right:14px}
  .hero{padding:16px 14px 22px}
  .pd-thumbs{flex-wrap:wrap}
  .scroll-row .prod-card{flex:0 0 165px;width:165px}
}
