 :root{
 --bg:#0F0F0F;
 --bg2:#0B0B0B;
 --surface:#151515;
 --card:#181818;
 --text:#F8F8F8;
 --muted:#989898;
 --muted2:#8A8A8A;
 --gold:#C6A96D;
 --gold2:#A08C5C;
 --border:rgba(255,255,255,.08);
 --border-gold:rgba(198,169,109,.35);
 --border-gold-strong:rgba(198,169,109,.65);
 --success:#10B981;
 --warn:#F59E0B;
 --error:#EF4444;
 --info:#3B82F6;
 --container:1100px; /* aligné avec location/home */
 --container-shop:1200px; /* layout interne shop (sidebar+main) */
 --navH:72px;
 }

 *{box-sizing:border-box}
 html,body{min-height:100%}
 body{
 margin:0;background:var(--bg);color:var(--text);
 font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
 -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
 }
 a{color:inherit;text-decoration:none}
 img{max-width:100%;display:block}

 /* container 1100px (header, breadcrumb, hero, cart) — aligné avec location/home */
 .container{width:min(var(--container),calc(100% - 48px));margin:0 auto}
 /* container 1200px (layout sidebar+main du shop seulement) */
 .bs-container{width:min(var(--container-shop),calc(100% - 48px));margin:0 auto}

 /* ── Boutons ────────────────────────────────────────── */
 .btn{
 height:38px;padding:0 16px;border-radius:8px;
 font-size:11px;font-weight:600;letter-spacing:.10em;text-transform:uppercase;
 display:inline-flex;align-items:center;justify-content:center;gap:8px;
 border:1px solid transparent;cursor:pointer;transition:background-color .15s ease,border-color .15s ease,color .15s ease,box-shadow .15s ease,transform .15s ease;
 }
 .btn-primary{background:var(--gold);color:#0F0F0F;border-color:var(--gold)}
 .btn-primary:hover{filter:brightness(1.07)}
 .btn-outline{background:transparent;color:var(--gold);border-color:var(--border-gold-strong)}
 .btn-outline:hover{background:rgba(198,169,109,.10);border-color:rgba(198,169,109,.95)}
 .btn-ghost{background:transparent;color:var(--text);border-color:var(--border)}
 .btn-ghost:hover{background:rgba(255,255,255,.04)}
 .btn-sm{height:32px;padding:0 12px;font-size:10px}
 .btn-lg{height:46px;padding:0 22px;font-size:12px}
 .btn-block{width:100%}
 .btn:disabled{opacity:.5;cursor:not-allowed;filter:grayscale(.4)}

 /* ── Badges ─────────────────────────────────────────── */
 /* Badges à fond PLEIN (opaque) + ombre : lisibles par-dessus n'importe quelle photo. */
 .badge{
 display:inline-flex;align-items:center;
 font-size:9.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
 padding:4px 9px;border-radius:6px;border:1px solid transparent;
 box-shadow:0 2px 8px rgba(0,0,0,.4);
 }
 /* Nouveau : fond OR plein, texte foncé (bien visible). */
 .badge-new{background:var(--gold);color:#0F0F0F;border-color:var(--gold)}
 /* Vedette : fond foncé plein, texte + liseré or (distinct du "Nouveau"). */
 .badge-vedette{background:#141414;color:var(--gold);border-color:var(--gold)}
 /* Promo : fond rouge plein, texte blanc. */
 .badge-sale{background:#DC2626;color:#fff;border-color:#DC2626}

 /* ── Card produit (atelier) ─────────────────────────── */
 .product-card{position:relative;
 background:var(--card);border:1px solid var(--border);
 border-radius:14px;overflow:hidden;cursor:pointer;
 transition:border-color .18s ease,background-color .18s ease,transform .12s ease;
 display:flex;flex-direction:column;
 }
 /* Survol sobre (arbitrage 4.4) : bordure or nette, pas de lift ni d'ombre. */
 .product-card:hover{border-color:rgba(198,169,109,.45);background:rgba(198,169,109,.04)}
 .product-card:hover .product-card__hover{opacity:1}

 .product-card__media{position:relative;aspect-ratio:1/1;background:#111;overflow:hidden}
 .product-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
 .product-card:hover .product-card__media img{transform:scale(1.04)}

 .product-card__badges{position:absolute;top:10px;left:10px;display:flex;flex-direction:column;gap:5px;z-index:2}

 .product-card__ref{
 position:absolute;top:10px;right:10px;z-index:2;
 padding:4px 8px;background:rgba(15,15,15,.7);backdrop-filter:blur(6px);
 border:1px solid var(--border);border-radius:6px;
 font-size:9px;letter-spacing:.10em;color:var(--muted);font-weight:600;
 }

 .product-card__hover{
 position:absolute;inset:0;z-index:2;pointer-events:none;
 background:linear-gradient(180deg,transparent 50%,rgba(15,15,15,.95));
 opacity:0;transition:opacity .2s;
 display:flex;align-items:flex-end;padding:12px;gap:8px;
 }
 .product-card:hover .product-card__hover{pointer-events:auto}
 .product-card__hover .btn{flex:1}
 .product-card__hover .icon-btn{
 width:36px;height:36px;border-radius:8px;border:1px solid var(--border-gold);
 background:rgba(15,15,15,.85);color:var(--gold);
 display:grid;place-items:center;cursor:pointer;
 }
 .product-card__hover .icon-btn svg{width:16px;height:16px}

 .product-card__body{padding:12px 14px 14px;display:flex;flex-direction:column;gap:6px;flex:1}
 .product-card__meta{
 display:flex;justify-content:space-between;
 font-size:9px;letter-spacing:.14em;text-transform:uppercase;
 font-weight:600;
 }
 .product-card__meta .brand{color:var(--gold2)}
 .product-card__meta .cat{color:var(--muted2);letter-spacing:.06em}

 /* Titre carte en DM Serif (Phase 10.5d) : lien éditorial avec le hero/univers. */
 .product-card__title{
 font-family:var(--font-display,"DM Serif Display",Georgia,serif);
 font-size:16.5px;font-weight:400;line-height:1.2;letter-spacing:-.01em;margin:0;min-height:40px;
 display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
 }

 .product-card__chips{display:flex;flex-wrap:wrap;gap:4px;margin:8px 0 0;padding:0;list-style:none}
 .product-card__chips li{
 font-size:9.5px;padding:2px 6px;
 background:var(--surface);border:1px solid var(--border);
 border-radius:4px;color:var(--muted);
 }

 .product-card__footer{
 display:flex;align-items:center;justify-content:space-between;
 margin-top:auto;padding-top:10px;border-top:1px solid var(--border);
 }
 .product-card .price strong{font-size:14.5px;color:var(--gold);font-weight:700;display:inline-flex;align-items:baseline;gap:4px}
 .product-card .price strong span{font-size:10px;color:var(--muted2);font-weight:400}
 .product-card .price s{display:block;font-size:10.5px;color:var(--muted2);margin-top:1px}
 .product-card .stock{font-size:9.5px;color:var(--success);letter-spacing:.06em;display:inline-flex;gap:4px;align-items:center;text-transform:uppercase;font-weight:600}
 .product-card .stock::before{content:'';width:6px;height:6px;border-radius:50%;background:currentColor;box-shadow:0 0 6px currentColor}
 .product-card .stock.warn{color:var(--warn)}
 .product-card .stock.warn::before{animation:bs-pulse 1.6s ease-in-out infinite}
 .product-card .stock.out{color:var(--error)}
 .product-card .stock.backorder{color:var(--gold2)}
 @keyframes bs-pulse{0%,100%{opacity:1}50%{opacity:.35}}

 /* ── Sidebar filtres ────────────────────────────────── */
 .filters{width:240px;flex-shrink:0}
 .filters-inner{position:sticky;top:90px;display:flex;flex-direction:column;gap:0}
 .filter-group{padding-bottom:22px;margin-bottom:22px;border-bottom:1px solid var(--border)}
 .filter-group h4{font-size:10px;letter-spacing:.16em;text-transform:uppercase;font-weight:600;color:var(--text);margin:0 0 10px}
 .filter-group ul{list-style:none;padding:0;margin:0}
 .filter-group li{
 display:flex;justify-content:space-between;align-items:center;
 padding:7px 0;font-size:12px;color:var(--muted);cursor:pointer;
 transition:color .15s;
 }
 .filter-group li:hover{color:var(--text)}
 .filter-group li.active{color:var(--text)}
 .filter-group li a{display:flex;justify-content:space-between;align-items:center;width:100%;color:inherit}
 .filter-group .dot{width:6px;height:6px;border-radius:50%;background:var(--border);margin-right:9px;display:inline-block;flex-shrink:0}
 .filter-group li.active .dot{background:var(--gold);box-shadow:0 0 6px rgba(198,169,109,.5)}
 .filter-group em{font-style:normal;font-size:10.5px;color:var(--muted2)}

 .filter-group .checks li{padding:5px 0}
 .filter-group .checks label{display:flex;align-items:center;gap:8px;width:100%;cursor:pointer}
 .filter-group .checks input[type="checkbox"]{accent-color:var(--gold);width:14px;height:14px}
 .filter-group .range-slider{width:100%;accent-color:var(--gold)}
 .filter-group .range-labels{display:flex;justify-content:space-between;font-size:10px;color:var(--muted2);margin-top:4px;letter-spacing:.04em}

 /* ── Search bar sticky ──────────────────────────────── */
 .shop-toolbar{
 position:sticky;top:0;z-index:5;
 background:var(--surface);border-bottom:1px solid var(--border);
 padding:14px 0;
 }
 .shop-toolbar-inner{
 display:grid;grid-template-columns:1fr auto auto auto;gap:10px;align-items:center;
 }
 .search-bar{
 display:flex;align-items:center;gap:10px;
 height:38px;padding:0 14px;
 background:var(--bg);border:1px solid var(--border);border-radius:8px;
 }
 .search-bar svg{width:14px;height:14px;color:var(--muted2);flex-shrink:0}
 .search-bar input{flex:1;background:transparent;border:0;color:var(--text);font:inherit;outline:none;font-size:12.5px}
 .search-bar input::placeholder{color:var(--muted2)}
 .search-bar kbd{font-size:9.5px;color:var(--muted2);letter-spacing:.10em;padding:2px 6px;border:1px solid var(--border);border-radius:4px;font-family:inherit}
 .toolbar-select{
 height:38px;background:var(--bg);border:1px solid var(--border);
 color:var(--text);padding:0 12px;border-radius:8px;font-size:12px;cursor:pointer;
 min-width:140px;
 }
 .toolbar-select:focus{outline:none;border-color:var(--border-gold-strong)}

 /* ── Filter chips actifs ────────────────────────────── */
 .filter-chips{
 display:flex;flex-wrap:wrap;gap:6px;align-items:center;
 margin-bottom:20px;padding:12px 14px;
 background:var(--card);border:1px solid var(--border-gold);border-radius:8px;
 }
 .filter-chip{
 display:inline-flex;align-items:center;gap:6px;
 padding:5px 10px;background:rgba(198,169,109,.12);
 border:1px solid var(--border-gold);border-radius:999px;
 font-size:11px;color:var(--gold);font-weight:600;letter-spacing:.04em;
 transition:background-color .15s,border-color .15s,color .15s,box-shadow .15s,transform .15s;
 }
 .filter-chip:hover{background:rgba(198,169,109,.2);border-color:var(--gold)}
 .filter-chip svg{width:11px;height:11px}
 .filter-chip-clear{
 margin-left:auto;font-size:10.5px;color:var(--muted2);
 text-transform:uppercase;letter-spacing:.10em;font-weight:600;
 padding:5px 10px;border-radius:6px;transition:color .15s;
 }
 .filter-chip-clear:hover{color:var(--text)}

 /* ── Section header ─────────────────────────────────── */
 .section-header{
 display:flex;align-items:flex-end;justify-content:space-between;
 margin-bottom:14px;padding-bottom:10px;border-bottom:1px solid var(--border);
 }
 .section-header .kicker{
 display:block;font-size:9.5px;letter-spacing:.20em;
 color:var(--gold);font-weight:600;text-transform:uppercase;margin-bottom:4px;
 }
 .section-header h2{font-size:18px;font-weight:700;margin:0;line-height:1.2}
 .section-header .meta{font-size:11px;color:var(--muted2);letter-spacing:.06em}

 /* ── Grille produits ────────────────────────────────── */
 /* Grille (Phase 10.5) : 3 cols desktop, 3 cols dès la tablette (fix zone "entre-deux"
    768-1023px : avant, 2 cols jusqu'à 980), 2 cols sous 768px. gap fluide en clamp. */
 .product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(10px,1.5vw,16px)}
 @media (max-width:767px){.product-grid{grid-template-columns:repeat(2,1fr)}}

 /* ── Pagination ─────────────────────────────────────── */
 .bs-pagination{display:flex;justify-content:center;gap:6px;margin-top:30px}
 .bs-pagination button,.bs-pagination span,.bs-pagination a{
 width:34px;height:34px;border:1px solid var(--border);
 background:transparent;color:var(--muted);
 font-size:12px;font-weight:600;border-radius:6px;cursor:pointer;
 display:inline-flex;align-items:center;justify-content:center;
 transition:background-color .15s,border-color .15s,color .15s,box-shadow .15s,transform .15s;
 }
 .bs-pagination a:hover{color:var(--text);border-color:rgba(255,255,255,.2)}
 .bs-pagination .active,.bs-pagination button.active{
 border-color:var(--gold);background:rgba(198,169,109,.10);color:var(--gold);
 }
 .bs-pagination .disabled{opacity:.4;cursor:not-allowed}

 /* ── Hero atelier (starfield + tuiles stats) ────────── */
 /* ── Hero éditorial (Phase 10.5b) : noir chaud on-brand + étoiles, titre DM Serif
    grand, ligne éditoriale discrète (fini les pavés de stats glassmorphiques). ── */
 .shop-hero{
 position:relative;overflow:hidden;
 background:
 radial-gradient(90% 120% at 78% -10%, rgba(198,169,109,.10) 0%, transparent 55%),
 radial-gradient(120% 90% at 50% 0%, #141210 0%, #0B0B0B 60%, #080808 100%);
 border-bottom:1px solid var(--border);
 }
 .shop-hero::after{
 content:'';position:absolute;inset:0;
 background:linear-gradient(180deg,transparent 55%,rgba(8,8,8,.65));
 pointer-events:none;
 }
 .shop-hero .stars{position:absolute;inset:0;pointer-events:none}
 .shop-hero .stars span{
 position:absolute;width:2px;height:2px;border-radius:50%;
 background:#fff;opacity:.55;
 }
 .shop-hero .stars span.gold{background:var(--gold);box-shadow:0 0 4px var(--gold)}
 .shop-hero-inner{
 position:relative;z-index:2;
 padding:clamp(56px,8vw,104px) 0 clamp(40px,5vw,64px);
 max-width:920px;
 }
 .shop-hero-text .kicker{
 font-size:11px;letter-spacing:.22em;color:var(--gold);font-weight:600;
 text-transform:uppercase;display:block;margin-bottom:22px;
 }
 .shop-hero-text h1{
 font-family:var(--font-display,"DM Serif Display",Georgia,serif);
 font-size:clamp(34px,6vw,64px);font-weight:400;letter-spacing:-.015em;
 line-height:1.04;margin:0 0 20px;text-wrap:balance;max-width:16ch;
 }
 .shop-hero-text h1 em{font-style:italic;color:var(--gold)}
 .shop-hero-text p{
 font-size:clamp(14px,1.6vw,16px);color:var(--muted);
 max-width:56ch;line-height:1.65;margin:0;text-wrap:pretty;
 }
 /* Ligne éditoriale : petits repères séparés par un point médian doré. */
 .shop-hero-meta{
 list-style:none;display:flex;flex-wrap:wrap;gap:0;margin:28px 0 0;padding:0;
 font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--muted2);
 }
 .shop-hero-meta li{display:inline-flex;align-items:center}
 .shop-hero-meta li:not(:last-child)::after{
 content:"·";margin:0 14px;color:var(--gold);font-size:14px;
 }

 @media (max-width:760px){
 .shop-hero-inner{padding:44px 0 30px}
 .shop-hero-text .kicker{margin-bottom:16px}
 .shop-hero-text h1{margin-bottom:16px}
 .shop-hero-meta{gap:0;margin-top:20px}
 }

 /* ── Univers / catégories (Phase 10.5b) : tuiles éditoriales gracieuses.
    Cohérence garantie entre tuiles AVEC image (photo + dégradé) et SANS image
    (dégradé or + initiale géante ghostée) : même forme, même corps. ── */
 .shop-univers{padding:clamp(30px,4vw,52px) 0}
 .su-head{display:flex;align-items:baseline;gap:14px;margin-bottom:20px}
 .su-head .kicker{font-size:10px;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);font-weight:600}
 .su-head h2{font-family:var(--font-display,"DM Serif Display",Georgia,serif);font-size:clamp(22px,3vw,30px);font-weight:400;margin:0;letter-spacing:-.01em}
 .su-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr));gap:clamp(12px,1.5vw,18px)}
 .su-tile{
 position:relative;overflow:hidden;isolation:isolate;
 display:flex;flex-direction:column;justify-content:flex-end;
 min-height:210px;padding:22px;border-radius:16px;
 border:1px solid var(--border);background:#111;
 text-decoration:none;color:var(--text);
 transition:border-color var(--dur-fast,.18s) ease;
 }
 .su-tile:hover{border-color:rgba(198,169,109,.5)}
 .su-tile:focus-visible{outline:2px solid var(--gold);outline-offset:2px}
 /* Tuile AVEC image */
 .su-photo{position:absolute;inset:0;z-index:-2}
 .su-photo img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
 .su-tile.has-img:hover .su-photo img{transform:scale(1.04)}
 .su-tile.has-img::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(10,10,10,.15) 0%,rgba(10,10,10,.55) 55%,rgba(8,8,8,.9) 100%)}
 /* Tuile SANS image : dégradé or + initiale géante ghostée */
 .su-tile.no-img{background:radial-gradient(120% 120% at 12% -10%,rgba(198,169,109,.16),transparent 55%),#101010}
 .su-initial{position:absolute;right:2px;top:-24px;z-index:-1;font-family:var(--font-display,"DM Serif Display",Georgia,serif);font-size:170px;line-height:1;color:rgba(198,169,109,.09);pointer-events:none;user-select:none}
 /* Corps commun */
 .su-name{display:block;font-family:var(--font-display,"DM Serif Display",Georgia,serif);font-size:22px;font-weight:400;line-height:1.1;letter-spacing:-.01em}
 .su-count{display:block;margin-top:6px;font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted2);font-weight:600;font-variant-numeric:tabular-nums}
 .su-arrow{position:absolute;top:18px;right:20px;font-size:18px;color:var(--gold);transition:transform var(--dur-fast,.18s) ease}
 .su-tile:hover .su-arrow{transform:translateX(4px)}

 /* ── Barre de filtres horizontale (Phase 10.5e) : chips catégories + états.
    Desktop uniquement (>=981px) ; en dessous, la colonne devient bottom-sheet (inchangé). ── */
 .shop-cats{display:none;margin-bottom:22px}
 .shop-cats-row{display:flex;flex-wrap:wrap;gap:8px;align-items:center}
 .shop-cats-toggles{margin-top:10px}
 .chip{
 display:inline-flex;align-items:center;gap:7px;height:34px;padding:0 15px;
 border-radius:999px;border:1px solid var(--border);background:transparent;
 color:var(--muted);font-size:12px;letter-spacing:.01em;text-decoration:none;white-space:nowrap;
 transition:border-color var(--dur-fast,.18s) ease,color var(--dur-fast,.18s) ease,background-color var(--dur-fast,.18s) ease;
 }
 .chip em{font-style:normal;font-size:10.5px;color:var(--muted2);font-variant-numeric:tabular-nums}
 .chip:hover{border-color:rgba(198,169,109,.5);color:var(--text)}
 .chip:focus-visible{outline:2px solid var(--gold);outline-offset:2px}
 .chip.is-on{background:var(--gold);border-color:var(--gold);color:#0F0F0F;font-weight:600}
 .chip.is-on em{color:rgba(15,15,15,.65)}
 .chip-toggle{font-size:10.5px;text-transform:uppercase;letter-spacing:.10em;height:30px;padding:0 13px}
 .chip-toggle.is-on{background:rgba(198,169,109,.16);border-color:rgba(198,169,109,.5);color:var(--gold);font-weight:600}
 .chip-clear{border-style:dashed;color:var(--muted2);height:30px;padding:0 13px;font-size:10.5px;text-transform:uppercase;letter-spacing:.10em}

 /* Desktop : chips visibles, colonne de filtres masquée (les filtres passent en haut). */
 @media (min-width:981px){
 .shop-cats{display:block}
 .filters{display:none}
 }

 /* ── Layout liste shop ──────────────────────────────── */
 .shop-layout{display:flex;gap:30px;padding:30px 0 60px}
 @media (max-width:980px){.shop-layout{flex-direction:column}.filters{width:100%}.filters-inner{position:static}}
 .shop-main{flex:1;min-width:0}
 .shop-section{margin-bottom:36px}

 /* ── Empty state (Phase 10.5 : soigné) ──────────────── */
 .shop-empty{
 text-align:center;padding:clamp(48px,8vw,80px) 24px;color:var(--muted);
 background:var(--card);border:1px solid var(--border);border-radius:14px;
 display:flex;flex-direction:column;align-items:center;gap:6px;
 }
 .shop-empty svg{width:46px;height:46px;color:var(--gold);opacity:.7;margin:0 0 8px}
 .shop-empty h3{font-family:var(--font-display);font-size:20px;color:var(--text);margin:0}
 .shop-empty p{font-size:14px;color:var(--muted);margin:0;max-width:34ch;line-height:1.5;text-wrap:pretty}
 .shop-empty a{
 margin-top:14px;display:inline-flex;align-items:center;height:38px;padding:0 18px;
 border-radius:10px;border:1px solid rgba(198,169,109,.65);color:var(--gold);
 text-transform:uppercase;letter-spacing:.10em;font-size:11px;
 transition:background-color var(--dur-fast,.18s) ease,border-color var(--dur-fast,.18s) ease;
 }
 .shop-empty a:hover{background:rgba(198,169,109,.10);border-color:rgba(198,169,109,.95)}

 /* ── Nav (header) ───────────────────────────────────── */
 .nav{
 position:fixed;top:0;left:0;right:0;height:var(--navH);z-index:100;
 display:flex;align-items:center;
 background:linear-gradient(to bottom,rgba(0,0,0,.78),rgba(0,0,0,.25),rgba(0,0,0,0));
 backdrop-filter:saturate(120%) blur(2px);
 }
 .nav-inner{display:flex;align-items:center;justify-content:space-between;gap:18px}
 .brand{display:flex;align-items:center;gap:10px;min-width:180px}
 .brand-mark{width:34px;height:34px;border-radius:999px;border:1px solid var(--border-gold);display:grid;place-items:center;background:rgba(0,0,0,.35);overflow:hidden}
 .brand-mark img{width:100%;height:100%;object-fit:cover}
 .brand-name{font-size:13px;letter-spacing:.06em;color:var(--gold)}
 .menu{display:flex;align-items:center;gap:22px}
 .menu a{text-transform:uppercase;letter-spacing:.12em;font-size:12px;opacity:.85;padding:10px 0;position:relative;white-space:nowrap}
 .menu a:hover{opacity:1}
 .menu a.active{opacity:1}
 .menu a.active::after{content:"";position:absolute;left:0;right:0;bottom:-10px;height:2px;background:var(--gold)}
 /* Bouton MON COMPTE / SE CONNECTER aligné sur location/home (radius 14, font-weight normal) */
 .menu .btn-outline{height:34px;padding:0 14px;margin-left:8px;border-radius:14px;border-color:rgba(198,169,109,.85);opacity:1;font-weight:400;letter-spacing:.10em}
 .cart-link{position:relative;display:inline-flex;align-items:center;gap:6px}
 .cart-badge{position:absolute;top:-6px;right:-8px;min-width:18px;height:18px;border-radius:999px;background:var(--gold);color:#0F0F0F;font-size:10px;font-weight:700;display:grid;place-items:center;padding:0 5px}

 main{display:block;padding-top:var(--navH)}

 @media (max-width:980px){
 .menu{display:none !important}
 .nav-inner{justify-content:center}
 .brand{justify-content:center}
 .nav{height:60px}
 :root{--navH:60px}
 }

 /* ═══════════════════════════════════════════════════════
    MOBILE REDESIGN — Shop / Show / Cart (2026-05-08 v2)
    Inspiré Baymard 2026 : bottom-sheet filtres, sticky CTA,
    44px+ touch targets, safe-area-inset, swatches.
   ═══════════════════════════════════════════════════════ */

 /* Variable safe-area-inset (iOS notch) avec fallback */
 :root{
 --safe-bot:env(safe-area-inset-bottom,0px);
 --mobile-nav-h:56px;
 }

 /* ── Désactive hovers vides sur tactile ────────────── */
 @media (hover:none){
 .product-card:hover{transform:none;box-shadow:none;border-color:var(--border)}
 .product-card:hover .product-card__media img{transform:none}
 .product-card__hover{display:none !important}
 }

 /* ── Mobile-only widgets : cachés sur desktop ─────── */
 .mobile-trigger,
 .filter-sheet,
 .filter-sheet-backdrop,
 .pdp-cta-bar,
 .gallery-mobile,
 .gallery-dots{display:none}

 /* Specs accordéon : conserver apparence "section" sur desktop (toujours open) */
 details.specs-card > summary{
 list-style:none;cursor:default;
 display:flex;align-items:center;justify-content:space-between;gap:8px;
 padding:0 0 12px;margin-bottom:0;
 border-bottom:1px solid var(--border);
 }
 details.specs-card > summary::-webkit-details-marker{display:none}
 details.specs-card .specs-summary-label{
 font-size:11px;letter-spacing:.14em;color:var(--gold);
 font-weight:600;text-transform:uppercase;
 }
 details.specs-card .specs-chevron{
 width:18px;height:18px;color:var(--muted);
 transition:transform .2s ease;
 display:none;
 }

 /* ───────────────────────────────────────────────────
    BREAKPOINT ≤ 980px : refonte complète
    ─────────────────────────────────────────────────── */
 @media (max-width:980px){
 /* Container : marges plus fines */
 .container,.bs-container{width:min(var(--container-shop),calc(100% - 24px))}

 /* Padding bas pour mobile-bottom-nav + safe-area */
 main{padding-bottom:calc(var(--mobile-nav-h) + var(--safe-bot) + 16px)}

 /* ─── HERO compact ─── */
 .shop-hero{min-height:0}
 .shop-hero-inner{padding:36px 0 24px;grid-template-columns:1fr;gap:18px}
 .shop-hero-text h1{font-size:26px;line-height:1.15}
 .shop-hero-text p{font-size:13px;max-width:none}
 .shop-hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:6px;width:100%}
 .stat-tile{padding:10px 8px;min-width:0}
 .stat-tile strong{font-size:18px}
 .stat-tile span{font-size:10px;letter-spacing:.10em}

 /* ─── TOOLBAR mobile : recherche + filtres + tri ─── */
 .shop-toolbar{
 position:sticky;top:60px;z-index:20;
 padding:10px 0;
 background:var(--surface);
 border-bottom:1px solid var(--border);
 box-shadow:0 2px 8px rgba(0,0,0,.20);
 }
 .shop-toolbar-inner{
 display:grid !important;
 grid-template-columns:1fr auto auto;
 gap:8px;
 align-items:center;
 }
 .shop-toolbar-inner .search-bar{
 grid-column:1/-1;
 height:44px;padding:0 14px;
 }
 .shop-toolbar-inner .search-bar input{font-size:14px}
 /* Cache sélecteurs natifs et bouton Filtrer du desktop sur mobile */
 .shop-toolbar-inner .toolbar-select,
 .shop-toolbar-inner > button[type="submit"]{display:none}
 /* Boutons mobile : Filtrer / Trier */
 .mobile-trigger{
 display:inline-flex;align-items:center;justify-content:center;gap:6px;
 height:44px;padding:0 14px;flex:1;min-width:0;
 background:var(--bg);color:var(--text);
 border:1px solid var(--border);border-radius:8px;
 font-size:12px;font-weight:600;letter-spacing:.06em;
 cursor:pointer;text-transform:uppercase;
 transition:border-color .15s,background .15s;
 }
 .mobile-trigger:active{transform:scale(.97)}
 .mobile-trigger.has-active{
 border-color:var(--gold);
 background:rgba(198,169,109,.08);
 color:var(--gold);
 }
 .mobile-trigger svg{width:16px;height:16px;flex-shrink:0}
 .mobile-trigger .count-pill{
 display:inline-grid;place-items:center;
 min-width:20px;height:20px;padding:0 5px;
 border-radius:999px;background:var(--gold);color:#0F0F0F;
 font-size:10px;font-weight:700;
 }

 /* ─── SIDEBAR filtres : devient bottom-sheet ─── */
 .filters{
 position:fixed !important;
 left:0;right:0;bottom:0;top:auto !important;
 width:100% !important;
 max-height:85vh;
 z-index:200;
 background:var(--surface);
 border-top:1px solid var(--border-gold);
 border-radius:18px 18px 0 0;
 box-shadow:0 -10px 40px rgba(0,0,0,.5);
 transform:translateY(100%);
 transition:transform .28s cubic-bezier(.4,0,.2,1);
 visibility:hidden;
 display:flex;flex-direction:column;
 padding:0 !important;margin:0 !important;
 overflow:hidden !important;
 }
 .filters.is-open{
 transform:translateY(0);
 visibility:visible;
 }
 .filters-inner{
 position:static !important;
 padding:0 18px 18px;
 overflow-y:auto;flex:1;
 -webkit-overflow-scrolling:touch;
 }
 /* Handle de drag + header sheet */
 .filters::before{
 content:"";display:block;
 width:42px;height:4px;
 margin:10px auto 6px;
 background:var(--muted2);
 border-radius:999px;flex-shrink:0;
 }
 .filter-sheet-header{
 display:flex;justify-content:space-between;align-items:center;
 padding:10px 18px 14px;
 border-bottom:1px solid var(--border);
 flex-shrink:0;
 }
 .filter-sheet-header h3{
 font-size:15px;margin:0;letter-spacing:.04em;
 }
 .filter-sheet-close{
 width:36px;height:36px;border-radius:50%;
 background:var(--card);border:1px solid var(--border);
 color:var(--text);cursor:pointer;
 display:grid;place-items:center;
 }
 .filter-sheet-close svg{width:16px;height:16px}
 /* Header + Footer apply : forcés visibles sur mobile (override inline style) */
 .filters .filter-sheet-header{display:flex !important}
 .filters .filter-sheet-actions{
 display:flex !important;gap:8px;
 padding:12px 18px calc(12px + var(--safe-bot));
 background:var(--surface);
 border-top:1px solid var(--border);
 flex-shrink:0;
 }
 /* Le bouton "Réinitialiser" du desktop devient redondant sur mobile (déjà dans le footer) */
 .filters .filters-inner > a.btn-ghost.btn-block{display:none}
 .filter-sheet-actions .btn{flex:1;height:46px;font-size:12px}
 .filter-sheet-actions .btn-primary{flex:2}

 /* Filter groups bigger touch */
 .filters .filter-group{padding-bottom:20px;margin-bottom:20px}
 .filters .filter-group h4{font-size:11px;margin:0 0 12px}
 .filters .filter-group li{padding:11px 0;font-size:13.5px}
 .filters .filter-group .checks li{padding:9px 0}
 .filters .filter-group .checks input[type="checkbox"]{
 width:20px;height:20px;
 }

 /* Backdrop */
 .filter-sheet-backdrop{
 display:block;
 position:fixed;inset:0;z-index:199;
 background:rgba(0,0,0,.6);
 opacity:0;visibility:hidden;
 transition:opacity .25s ease,visibility .25s ease;
 backdrop-filter:blur(2px);
 }
 .filter-sheet-backdrop.is-open{opacity:1;visibility:visible}
 body.has-sheet-open{overflow:hidden}

 /* ─── PRODUCT GRID ─── (colonnes gérées par la grille fluide + breakpoint 767px) */
 .product-grid{gap:10px}
 .product-card__title{font-size:14.5px;min-height:36px}
 .product-card__body{padding:10px 12px 12px;gap:5px}
 .product-card .price strong{font-size:13.5px}
 .product-card .stock{font-size:9px}
 .product-card__chips{display:none}
 /* Tappable card whole zone */
 .product-card{cursor:pointer;border-radius:12px}
 .product-card:active{transform:scale(.98)}

 /* Section header */
 .section-header{flex-direction:column;align-items:flex-start;gap:6px;padding-bottom:10px;margin-bottom:14px}
 .section-header h2{font-size:18px}
 .section-header .meta{font-size:11px;letter-spacing:.04em}

 /* Filter chips */
 .filter-chips{padding:10px 12px;margin-bottom:14px}
 .filter-chip{padding:6px 11px;font-size:11.5px}

 /* ═══ SHOW PRODUCT ═══ */
 /* Breadcrumb compact */
 .breadcrumb-bar{padding:10px 0}
 .breadcrumb{font-size:11px;gap:6px}
 .breadcrumb-nav{display:none}

 /* Layout 1 colonne ; "display:contents" sur product-main pour
    pouvoir réordonner ses enfants (image, info-grid, specs)
    indépendamment du buy-panel. */
 .product-page{
 display:flex !important;
 flex-direction:column;
 padding:14px 0 30px;gap:14px;
 }
 .product-main{display:contents}
 .thumbs{display:none !important} /* redondant avec swipe + dots */

 /* Ordre logique : image → buy-panel → infos → specs → trust → cross-sell */
 .main-image{order:1}
 .buy-panel{order:2}
 .info-grid{order:3}
 .specs-card{order:4}

 .buy-panel{
 position:static !important;
 padding:16px;
 background:var(--card);
 border:1px solid var(--border);
 border-radius:12px;
 }

 /* Image principale : aspect 1:1 (carré, standard mobile e-commerce) */
 .main-image{aspect-ratio:1/1;border-radius:14px;overflow:hidden}
 .main-image .arrows{display:none !important} /* swipe replaces arrows */
 .main-image > #mainImage,
 .main-image > .desktop-only-img{display:none !important}
 .main-image .icon-actions button{width:40px;height:40px}

 /* ─── Galerie mobile : carrousel scroll-snap natif ─── */
 .gallery-mobile{
 display:flex;
 width:100%;height:100%;
 overflow-x:auto;overflow-y:hidden;
 scroll-snap-type:x mandatory;
 -webkit-overflow-scrolling:touch;
 scrollbar-width:none;
 scroll-behavior:smooth;
 }
 .gallery-mobile::-webkit-scrollbar{display:none}
 .gallery-mobile .gallery-slide{
 flex:0 0 100%;
 width:100%;height:100%;
 object-fit:cover;
 scroll-snap-align:center;
 user-select:none;-webkit-user-drag:none;
 cursor:zoom-in;
 }
 /* Dots indicator */
 .gallery-dots{
 display:flex;justify-content:center;gap:7px;
 position:absolute;left:0;right:0;bottom:10px;
 z-index:3;pointer-events:auto;
 }
 .gallery-dots .dot{
 width:6px;height:6px;border-radius:50%;
 background:rgba(255,255,255,.45);
 border:0;padding:0;cursor:pointer;
 transition:width .25s,background .25s;
 }
 .gallery-dots .dot.active{
 width:22px;background:var(--gold);
 border-radius:6px;
 box-shadow:0 0 8px rgba(198,169,109,.55);
 }

 /* Info-grid : empilé 1 col, plus aéré */
 .info-grid{grid-template-columns:1fr;gap:8px}
 .info-card{padding:14px}
 .info-card h4{font-size:10.5px;margin:0 0 6px}
 .info-card p{font-size:13px}

 /* Specs : devient un vrai accordéon collapsible sur mobile */
 details.specs-card{padding:14px 16px;grid-column:auto}
 details.specs-card > summary{
 cursor:pointer;
 padding:6px 0;
 border-bottom:0;
 margin-bottom:0;
 }
 details.specs-card[open] > summary{
 border-bottom:1px solid var(--border);
 padding-bottom:10px;margin-bottom:10px;
 }
 details.specs-card .specs-chevron{display:block !important}
 details.specs-card[open] .specs-chevron{transform:rotate(180deg)}
 details.specs-card .specs-summary-label{font-size:11.5px}
 .specs-grid{grid-template-columns:1fr 1fr}
 .specs-grid > div{padding:8px 0}
 .specs-grid dt{font-size:10px}
 .specs-grid dd{font-size:12px}

 /* Buy panel : titres et prix */
 .buy-identity h1{font-size:21px;margin:0 0 8px}
 .buy-identity .kicker{font-size:10px}
 .buy-price{margin:12px 0;padding:12px 0}
 .buy-price .main{font-size:28px}

 /* Variants/options : pills 44px touch + 2 cols */
 fieldset.config{margin:14px 0 0}
 fieldset.config legend{font-size:11px;margin-bottom:10px}
 fieldset.config .opts{grid-template-columns:repeat(2,1fr);gap:8px}
 fieldset.config .opts button{
 min-height:46px;padding:10px 8px;
 font-size:13.5px;border-radius:8px;
 }
 fieldset.config .opts button small{font-size:10px}
 .opt-radio{padding:12px;font-size:13px;min-height:50px}
 .config-image-grid{gap:10px}
 .config-image-option{width:64px;height:64px}

 /* Buy actions inline (qty + add) — masqué car remplacé par sticky CTA bar */
 .buy-actions{display:none}

 /* Trust badges plus grandes */
 .buy-trust{margin-top:14px;gap:8px}
 .buy-trust div{font-size:12px}
 .buy-trust svg{width:16px;height:16px}

 /* Cross-sell : 2 cols max (override inline style) */
 .cross-sell{padding:30px 0 40px}
 .cross-sell .product-grid{grid-template-columns:repeat(2,1fr) !important}

 /* Lightbox : padding compact */
 .lightbox{padding:14px}
 .lightbox-arrow.prev{left:8px}
 .lightbox-arrow.next{right:8px}
 .lightbox-arrow{width:42px;height:42px}
 .lightbox-close{top:14px;right:14px;width:42px;height:42px}

 /* ─── STICKY ADD-TO-CART (PDP only) ─── */
 .pdp-cta-bar{
 display:flex;align-items:center;gap:12px;
 position:fixed;left:0;right:0;
 bottom:calc(var(--mobile-nav-h) + var(--safe-bot));
 z-index:90;
 padding:10px 14px;
 background:var(--surface);
 border-top:1px solid var(--border-gold);
 box-shadow:0 -8px 24px rgba(0,0,0,.4);
 }
 .pdp-cta-bar .pdp-price{flex-shrink:0;display:flex;flex-direction:column;line-height:1.1}
 .pdp-cta-bar .pdp-price strong{font-size:18px;color:var(--gold);font-weight:700}
 .pdp-cta-bar .pdp-price small{font-size:9.5px;color:var(--muted2);letter-spacing:.06em;margin-top:2px}
 .pdp-cta-bar .pdp-qty{
 display:flex;align-items:center;height:44px;
 border:1px solid var(--border);border-radius:8px;
 background:var(--bg);flex-shrink:0;
 }
 .pdp-cta-bar .pdp-qty button{
 width:36px;height:100%;background:transparent;border:0;
 color:var(--text);font-size:18px;cursor:pointer;
 }
 .pdp-cta-bar .pdp-qty span{
 width:32px;text-align:center;color:var(--text);
 font-size:14px;font-weight:600;
 }
 .pdp-cta-bar .btn-add{
 flex:1;height:48px;
 background:var(--gold);color:#0F0F0F;border:0;
 border-radius:10px;font-size:13px;font-weight:700;
 letter-spacing:.06em;text-transform:uppercase;
 cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:8px;
 }
 .pdp-cta-bar .btn-add:disabled{opacity:.5;cursor:not-allowed}
 .pdp-cta-bar .btn-add svg{width:16px;height:16px}
 /* PDP : ajoute padding bas pour ne pas masquer le footer */
 main:has(.pdp-cta-bar){padding-bottom:calc(72px + var(--mobile-nav-h) + var(--safe-bot))}

 /* ═══ CART ═══ */
 .cart-page{padding:18px 0 40px}
 }

 /* ─────────────────────────────────────────
    BREAKPOINT ≤ 480px : ajustements smartphone
    ───────────────────────────────────────── */
 @media (max-width:480px){
 .container,.bs-container{width:min(var(--container-shop),calc(100% - 16px))}

 .shop-hero-inner{padding:28px 0 18px}
 .shop-hero-text h1{font-size:22px}
 .stat-tile{padding:8px 6px}
 .stat-tile strong{font-size:16px}
 .stat-tile span{font-size:10px}

 /* Toolbar : Filtrer + Trier en 2 cols */
 .shop-toolbar-inner{grid-template-columns:1fr 1fr}

 /* Cards plus serrées */
 .product-grid{gap:8px}
 .product-card__media img{aspect-ratio:1/1}
 .product-card__title{font-size:13.5px;min-height:34px}
 .product-card .price strong{font-size:13px}

 /* Sticky CTA : prix peut s'effacer si trop serré */
 .pdp-cta-bar{padding:8px 10px;gap:8px}
 .pdp-cta-bar .pdp-price strong{font-size:16px}
 .pdp-cta-bar .pdp-qty{display:none}
 .pdp-cta-bar .btn-add{height:46px}

 /* Pagination wrap */
 .bs-pagination{flex-wrap:wrap;gap:4px}
 .bs-pagination button,.bs-pagination span,.bs-pagination a{width:32px;height:32px;font-size:11px}

 /* Specs : 1 col */
 .specs-grid{grid-template-columns:1fr}
 }

/* ── Refonte shop : product-card lien etire + a11y + filet or ─────────── */
.product-card__link{color:var(--text);text-decoration:none}
.product-card__link::after{content:"";position:absolute;inset:0;z-index:1}
.product-card:hover .product-card__hover{pointer-events:none}
.product-card__hover .btn,.product-card__hover .icon-btn{pointer-events:auto}
.product-card::before{content:"";position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,#BF953F,#FCF6BA);opacity:0;transition:opacity .2s;z-index:3;pointer-events:none}
.product-card:hover::before{opacity:1}
.product-card__link:focus-visible,
.product-card .btn:focus-visible,
.product-card .icon-btn:focus-visible,
.filters a:focus-visible,
.cart-link:focus-visible,
.menu a:focus-visible{outline:2px solid var(--gold);outline-offset:2px;border-radius:4px}

/* ── Refonte shop (Phase 10) : polish UI/UX (make-interfaces-feel-better) ── */
:root{ --r-sm:8px; --r-md:12px; --r-lg:16px; }
.product-card{ border-radius: var(--r-md); }
.product-card .btn{ border-radius: var(--r-sm); transition: background-color .18s, border-color .18s, color .18s, transform .1s; }
.product-card__badges .badge{ border-radius: var(--r-sm); }
/* Prix en chiffres tabulaires : alignement colonne + signal premium, zero layout shift */
.product-card .price strong, .product-card .price s, .stat-tile strong{ font-variant-numeric: tabular-nums; }
/* Media : lisere blanc subtil = profondeur en dark (jamais un noir teinte) */
.product-card__media{ box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
/* Retour tactile au clic sur les actions */
.product-card .btn:active, .product-card .icon-btn:active{ transform: scale(.96); }
/* Desktop uniquement : un peu plus d air dans la carte (densite mobile inchangee) */
@media (min-width:981px){
  .product-card__body{ padding: 16px 16px 18px; gap: 8px; }
  .product-card__title{ font-size: 14px; }
}
