@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700;800;900&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300&display=swap');

/* ═══════════════════════════════════
   RESET & BASE
═══════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --N: #080808; --B: #ffffff; --G: #f5f5f4; --M: #888888;
  --bd: 1.5px solid #080808;
  --FC: 'Barlow Condensed', sans-serif;
  --FB: 'Barlow', sans-serif;
  --radius: 0;
}
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body { font-family: var(--FB); background: var(--B); color: var(--N); overflow-x: hidden; -webkit-font-smoothing: antialiased; font-size: 16px; }
img  { max-width: 100%; display: block; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--FC); }
input, select, textarea { font-family: var(--FB); background: var(--B); color: var(--N); border-radius: 0; -webkit-appearance: none; appearance: none; }
* { -webkit-tap-highlight-color: transparent; }

/* ═══════════════════════════════════
   BOUTONS
═══════════════════════════════════ */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--FC); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: .9rem 2rem; transition: all .2s; min-height: 50px; }
.btn-n  { background: var(--N); color: var(--B); } .btn-n:hover { background: #333; }
.btn-w  { background: var(--B); color: var(--N); border: 2px solid var(--B); } .btn-w:hover { background: transparent; color: var(--B); }
.btn-o  { background: transparent; color: var(--N); border: var(--bd); } .btn-o:hover { background: var(--N); color: var(--B); }
.btn-gw { background: transparent; color: rgba(255,255,255,.7); border: 2px solid rgba(255,255,255,.3); } .btn-gw:hover { border-color: #fff; color: #fff; }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
.nav { position: sticky; top: 0; z-index: 900; background: var(--B); border-bottom: var(--bd); }
.nav-in { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; height: 60px; padding: 0 2rem; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: .55rem; flex-shrink: 0; text-decoration: none; }
.nav-logo img  { height: 40px; width: 40px; object-fit: contain; }
.nav-logo span { font-family: var(--FC); font-size: 1.25rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; color: var(--N); }
.nav-links { display: flex; align-items: center; justify-content: center; flex: 1; gap: 0; }
.nl { font-family: var(--FC); font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #999; padding: .5rem .9rem; border-bottom: 2px solid transparent; white-space: nowrap; transition: color .12s; cursor: pointer; }
.nl:hover { color: var(--N); } .nl.on { color: var(--N); border-bottom-color: var(--N); }
.nav-dd { position: relative; }
.dd-panel { position: absolute; top: calc(100% + 1px); left: 0; background: var(--B); border: var(--bd); border-top: none; padding: .5rem 0; min-width: 210px; opacity: 0; visibility: hidden; transition: opacity .15s; z-index: 200; box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.nav-dd:hover .dd-panel { opacity: 1; visibility: visible; }
.dd-a { display: block; padding: .55rem 1.2rem; font-family: var(--FC); font-size: .56rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #999; transition: all .1s; }
.dd-a:hover { background: var(--G); color: var(--N); }
.dd-all { border-bottom: 1px solid #eee; margin-bottom: .25rem; color: var(--N); font-weight: 900; font-size: .58rem; }
.nav-r { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-cart { font-family: var(--FC); font-size: .56rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--N); color: var(--B); padding: .5rem 1.1rem; cursor: pointer; display: flex; align-items: center; gap: .4rem; transition: background .15s; min-height: 36px; }
.nav-cart:hover { background: #333; }
.cart-badge { background: var(--B); color: var(--N); font-size: .44rem; font-weight: 900; width: 15px; height: 15px; border-radius: 50%; display: none; align-items: center; justify-content: center; border: 1px solid var(--N); }
.cart-badge.show { display: flex; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: .2rem; }
.burger span { display: block; width: 22px; height: 2px; background: var(--N); border-radius: 1px; }

/* ═══════════════════════════════════
   MOBILE SIDEBAR
═══════════════════════════════════ */
.mob-ov { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 950; opacity: 0; visibility: hidden; transition: all .25s; }
.mob-ov.open { opacity: 1; visibility: visible; }
.mob-side { position: fixed; top: 0; left: 0; bottom: 0; width: 290px; max-width: 88vw; background: var(--B); z-index: 951; transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; border-right: var(--bd); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.mob-side.open { transform: translateX(0); }
.mob-h { padding: 1.1rem 1.4rem; border-bottom: var(--bd); display: flex; align-items: center; justify-content: space-between; }
.mob-h span { font-family: var(--FC); font-size: .78rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.mob-x { font-size: 1.2rem; cursor: pointer; color: var(--M); padding: 4px; min-width: 36px; min-height: 36px; display: flex; align-items: center; justify-content: center; }
.mob-nav { flex: 1; padding: .5rem 0; }
.mob-a { display: flex; align-items: center; padding: .95rem 1.4rem; font-family: var(--FC); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--M); border-bottom: 1px solid #f0f0f0; transition: all .1s; min-height: 52px; cursor: pointer; }
.mob-a:hover { color: var(--N); background: var(--G); }
.mob-sub { padding-left: .8rem; display: none; }
.mob-sub.open { display: block; }
.mob-sub .mob-a { font-size: .64rem; padding: .8rem 1.4rem; min-height: 46px; }

/* ═══════════════════════════════════
   TICKER
═══════════════════════════════════ */
.ticker { background: var(--N); overflow: hidden; padding: .7rem 0; }
.ticker-track { display: flex; white-space: nowrap; animation: tk 32s linear infinite; }
.ti { font-family: var(--FC); font-size: .57rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.3); padding: 0 1.8rem; }
@keyframes tk { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════
   PAGE HEADER
═══════════════════════════════════ */
.ph { padding: 3rem 2rem 2.2rem; border-bottom: var(--bd); }
.ph-w { max-width: 1440px; margin: 0 auto; }
.ph-lbl { font-family: var(--FC); font-size: .57rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--M); margin-bottom: .4rem; }
.ph-h1 { font-family: var(--FC); font-size: clamp(2.5rem, 6vw, 6rem); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; line-height: .88; }
.ph-h1 em { font-weight: 300; font-style: italic; font-size: .65em; display: block; opacity: .5; margin-top: .1em; }

/* ═══════════════════════════════════
   SECTION HEADER
═══════════════════════════════════ */
.sh { max-width: 1440px; margin: 0 auto; padding: 2.8rem 2rem 0; display: flex; align-items: flex-end; justify-content: space-between; }
.sh-lbl  { font-family: var(--FC); font-size: .57rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--M); margin-bottom: .3rem; }
.sh-h2   { font-family: var(--FC); font-size: clamp(1.8rem, 3.2vw, 3.2rem); font-weight: 900; text-transform: uppercase; line-height: .9; }
.sh-link { font-family: var(--FC); font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; border-bottom: 1.5px solid var(--N); padding-bottom: 2px; }

/* ═══════════════════════════════════
   TABS
═══════════════════════════════════ */
.tabs { max-width: 1440px; margin: 1.2rem auto 0; padding: 0 2rem; display: flex; border-bottom: var(--bd); overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { font-family: var(--FC); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--M); padding: .6rem 1.1rem; cursor: pointer; border-bottom: 2.5px solid transparent; margin-bottom: -1.5px; white-space: nowrap; transition: all .12s; min-height: 46px; display: inline-flex; align-items: center; }
.tab:hover { color: var(--N); } .tab.on { color: var(--N); border-bottom-color: var(--N); }

/* ═══════════════════════════════════
   GRILLE PRODUITS
═══════════════════════════════════ */
.gw   { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
.grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; margin-top: 1.8rem; padding-bottom: 3rem; }
.grid-empty { grid-column: 1 / -1; text-align: center; padding: 4rem 2rem; color: var(--M); font-family: var(--FC); font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.card-img-placeholder { width: 100%; aspect-ratio: 3/4; background: var(--G); }

/* ═══════════════════════════════════
   CARTE PRODUIT
═══════════════════════════════════ */
.card { cursor: pointer; transition: transform .18s; }
.card:hover { transform: translateY(-3px); }
.card-img { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--G); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-img .i2 { position: absolute; inset: 0; opacity: 0; transition: opacity .3s; }
.card:hover .i2 { opacity: 1; }
.badge-ep { position: absolute; top: .5rem; right: .5rem; background: var(--N); color: var(--B); font-family: var(--FC); font-size: .46rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: .2rem .55rem; z-index: 2; }
.badge-v  { position: absolute; top: .5rem; left: .5rem; background: rgba(255,255,255,.9); font-family: var(--FC); font-size: .44rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .2rem .55rem; z-index: 2; border: 1px solid #ddd; }
.card-b    { padding: .65rem .1rem 0; }
.card-nom  { font-family: var(--FC); font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .1rem; line-height: 1.15; }
.card-cat  { font-size: .65rem; font-weight: 300; color: var(--M); margin-bottom: .35rem; }
.card-prix { font-family: var(--FC); font-size: .95rem; font-weight: 700; }
.card-epuise-lbl { font-size: .75em; color: #aaa; font-weight: 400; }

/* ═══════════════════════════════════
   BANNIERE MILIEU
═══════════════════════════════════ */
.bm { position: relative; height: 60vh; min-height: 380px; overflow: hidden; border-top: var(--bd); border-bottom: var(--bd); }
.bm > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(18%); }
.bm-ov { position: absolute; inset: 0; background: rgba(0,0,0,.52); }
.bm-c  { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 3rem; }
.bm-tag { font-family: var(--FC); font-size: .54rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 1rem; }
.bm-h2  { font-family: var(--FC); font-size: clamp(2.2rem, 5.5vw, 5rem); font-weight: 900; text-transform: uppercase; color: #fff; line-height: .86; margin-bottom: 1.8rem; }
.bm-h2 em { font-weight: 300; font-style: italic; font-size: .62em; display: block; opacity: .5; margin-top: .12em; }

/* ═══════════════════════════════════
   INSTAGRAM BLOCK
═══════════════════════════════════ */
.insta-block { display: flex; align-items: center; gap: .6rem; padding: 1.8rem 2rem; border-top: var(--bd); }
.insta-block a { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--FC); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; transition: opacity .15s; }
.insta-block a:hover { opacity: .7; }
.insta-icon { width: 20px; height: 20px; fill: var(--N); }

/* ═══════════════════════════════════
   MODAL PRODUIT
═══════════════════════════════════ */
.pov { position: fixed; inset: 0; background: rgba(0,0,0,.48); z-index: 1100; opacity: 0; visibility: hidden; transition: all .2s; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); overflow-y: auto; -webkit-overflow-scrolling: touch; display: flex; align-items: flex-start; justify-content: center; padding: 1.5rem; }
.pov.open { opacity: 1; visibility: visible; }
.pm { background: var(--B); max-width: 940px; width: 100%; margin: auto; display: grid; grid-template-columns: 1fr 1fr; position: relative; transform: translateY(14px); transition: transform .25s; }
.pov.open .pm { transform: translateY(0); }
.pm-x { position: absolute; top: .7rem; right: .7rem; font-size: 1rem; cursor: pointer; background: var(--B); border: 1px solid #eee; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; z-index: 3; color: var(--M); }
.pm-x:hover { background: var(--N); color: var(--B); }
.pm-gal { border-right: 1px solid #eee; position: relative; overflow: hidden; }
.pm-main { aspect-ratio: 3/4; overflow: hidden; border-bottom: 1px solid #eee; background: var(--G); position: relative; }
.pm-main img { width: 100%; height: 100%; object-fit: cover; }
.pm-arr { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.9); border: var(--bd); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3; font-size: .9rem; }
.pm-arr:hover { background: var(--N); color: var(--B); }
.pm-arr.l { left: .5rem; } .pm-arr.r { right: .5rem; }
.pm-arr.hide { display: none; }
.pm-th { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.pm-th::-webkit-scrollbar { display: none; }
.pm-th > div { width: 60px; height: 60px; flex-shrink: 0; cursor: pointer; border-right: 1px solid #eee; opacity: .4; transition: opacity .12s; }
.pm-th > div.on, .pm-th > div:hover { opacity: 1; }
.pm-th img { width: 100%; height: 100%; object-fit: cover; }
.pm-info { padding: 1.8rem 1.5rem; display: flex; flex-direction: column; overflow: hidden; }
.pm-cat  { font-family: var(--FC); font-size: .5rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--M); margin-bottom: .4rem; }
.pm-nom  { font-family: var(--FC); font-size: 1.28rem; font-weight: 900; text-transform: uppercase; margin-bottom: .28rem; line-height: 1.05; word-break: break-word; }
.pm-prix { font-family: var(--FC); font-size: 1.5rem; font-weight: 700; margin-bottom: .7rem; }
.pm-div  { border: none; border-top: 1px solid #eee; margin: .65rem 0; }
.pm-sl   { font-family: var(--FC); font-size: .5rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--M); margin-bottom: .5rem; }
.pm-tailles { display: flex; gap: .25rem; flex-wrap: wrap; margin-bottom: .3rem; }
.pm-t { font-family: var(--FC); font-size: .57rem; font-weight: 700; padding: .4rem .7rem; border: var(--bd); background: var(--B); cursor: pointer; min-height: 40px; min-width: 40px; display: inline-flex; align-items: center; justify-content: center; transition: all .1s; }
.pm-t:hover { background: var(--G); } .pm-t.sel { background: var(--N); color: var(--B); }
.pm-t.ep { opacity: .35; cursor: not-allowed; }
.pm-hint { font-size: .5rem; color: var(--M); margin-bottom: .9rem; }
.pm-hint a { border-bottom: 1px solid var(--M); }
.pm-desc { font-size: .82rem; font-weight: 300; line-height: 1.78; color: #444; margin-bottom: .5rem; word-wrap: break-word; overflow-wrap: break-word; }
.pm-mat  { font-family: var(--FC); font-size: .5rem; color: var(--M); letter-spacing: .08em; text-transform: uppercase; word-break: break-word; }
.pm-acts { margin-top: auto; padding-top: .9rem; }
.pm-add  { width: 100%; font-family: var(--FC); font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; background: var(--N); color: var(--B); padding: .92rem; border: none; cursor: pointer; margin-bottom: .28rem; min-height: 50px; transition: background .15s; }
.pm-add:hover { background: #333; } .pm-add.ep { background: #ccc; color: #888; cursor: not-allowed; }
.pm-or  { font-size: .5rem; color: var(--M); text-align: center; margin: .18rem 0; text-transform: uppercase; }
.pm-pay { width: 100%; font-family: var(--FC); font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; background: #635bff; color: var(--B); padding: .85rem; border: none; cursor: pointer; min-height: 50px; transition: background .15s; }
.pm-pay:hover { background: #4f46e5; }

/* ═══════════════════════════════════
   PANIER
═══════════════════════════════════ */
.cov  { position: fixed; inset: 0; background: rgba(0,0,0,.3); z-index: 1000; opacity: 0; visibility: hidden; transition: all .2s; }
.cov.open { opacity: 1; visibility: visible; }
.cpan { position: fixed; top: 0; right: 0; bottom: 0; width: 370px; max-width: 100vw; background: var(--B); z-index: 1001; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; border-left: var(--bd); }
.cpan.open { transform: translateX(0); }
.cpan-h { padding: 1.1rem 1.3rem; border-bottom: var(--bd); display: flex; align-items: center; justify-content: space-between; }
.cpan-h span { font-family: var(--FC); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.cpan-x { font-size: 1.2rem; color: var(--M); cursor: pointer; padding: 4px; min-width: 34px; min-height: 34px; display: flex; align-items: center; justify-content: center; }
.cpan-items { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: .7rem 1.1rem; }
.cpan-empty { text-align: center; padding: 3rem 1.2rem; color: var(--M); font-size: .8rem; font-weight: 300; }
.ci { display: grid; grid-template-columns: 54px 1fr auto; gap: .65rem; padding: .75rem 0; border-bottom: 1px solid #eee; align-items: start; }
.ci img { width: 54px; height: 68px; object-fit: cover; background: var(--G); }
.ci-nom  { font-family: var(--FC); font-size: .62rem; font-weight: 700; text-transform: uppercase; margin-bottom: .12rem; }
.ci-det  { font-size: .55rem; color: var(--M); }
.ci-prix { font-family: var(--FC); font-size: .82rem; font-weight: 700; }
.ci-rm   { font-size: .9rem; color: #ccc; cursor: pointer; display: flex; align-items: center; justify-content: center; margin-top: .3rem; min-height: 30px; min-width: 30px; }
.ci-rm:hover { color: var(--N); }
.cpan-f { padding: 1rem 1.2rem; border-top: var(--bd); background: var(--G); }
.cpan-tr  { display: flex; justify-content: space-between; margin-bottom: .35rem; }
.cpan-tl  { font-family: var(--FC); font-size: .57rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.cpan-tv  { font-family: var(--FC); font-size: 1.1rem; font-weight: 700; }
.cpan-lv  { font-size: .5rem; color: var(--M); text-transform: uppercase; margin-bottom: .7rem; }
.cpan-btn { width: 100%; font-family: var(--FC); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; background: var(--N); color: var(--B); padding: .95rem; border: none; cursor: pointer; min-height: 50px; transition: background .15s; }
.cpan-btn:hover { background: #635bff; }
.ship-line { display: flex; justify-content: space-between; padding: .35rem 0; }
.ship-line .sl { font-family: var(--FC); font-size: .57rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.ship-line .sv { font-family: var(--FC); font-size: .78rem; font-weight: 700; }
.ship-tot { border-top: 1px solid #ddd; margin-top: .3rem; padding-top: .5rem; }
.ship-tot .sl { font-size: .62rem; font-weight: 900; }
.ship-tot .sv { font-size: .98rem; font-weight: 900; }

/* ═══════════════════════════════════
   PAIEMENT
═══════════════════════════════════ */
.payov { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1200; opacity: 0; visibility: hidden; transition: all .2s; -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.payov.open { opacity: 1; visibility: visible; }
.paym { background: var(--B); width: 100%; max-width: 430px; border: var(--bd); max-height: 92vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.paym-h { background: var(--N); color: var(--B); padding: .95rem 1.4rem; display: flex; align-items: center; justify-content: space-between; }
.paym-h span { font-family: var(--FC); font-size: .57rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.paym-hx { color: var(--B); font-size: 1rem; cursor: pointer; opacity: .5; padding: 4px; }
.paym-hx:hover { opacity: 1; }
.paym-b { padding: 1.4rem; }
.pf { margin-bottom: .65rem; }
.pf label { font-family: var(--FC); font-size: .47rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #444; display: block; margin-bottom: .28rem; }
.pf input { width: 100%; border: 1px solid #ccc; padding: .65rem .8rem; font-size: .9rem; outline: none; min-height: 46px; }
.pf input:focus { border-color: var(--N); }
.p2c { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
#card-el  { border: 1px solid #ccc; padding: .8rem; background: var(--G); }
#card-err { font-family: var(--FC); font-size: .52rem; color: #c00; margin-top: .28rem; min-height: .75rem; }
.pay-btn  { width: 100%; font-family: var(--FC); font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; background: var(--N); color: var(--B); padding: .95rem; border: none; cursor: pointer; margin-top: .8rem; min-height: 50px; transition: background .15s; }
.pay-btn:hover { background: #635bff; }
.pay-btn:disabled { background: #ccc; cursor: not-allowed; }
.pay-ok { display: none; text-align: center; padding: 2rem 1.4rem; }
.pay-ok.show { display: block; }
.pay-ok h3 { font-family: var(--FC); font-size: .9rem; font-weight: 900; text-transform: uppercase; margin: .6rem 0 .5rem; }
.pay-ok p  { font-size: .8rem; font-weight: 300; color: var(--M); line-height: 1.65; }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq { padding: 4rem 2rem; border-bottom: var(--bd); }
.faq-in { max-width: 860px; margin: 0 auto; }
.faq-title { font-family: var(--FC); font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 900; text-transform: uppercase; margin-bottom: 2rem; }
.faq-item { border-top: var(--bd); }
.faq-q { width: 100%; text-align: left; padding: 1.15rem 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; background: none; border: none; min-height: 54px; gap: 1rem; }
.faq-q span:first-child { font-family: var(--FC); font-size: .85rem; font-weight: 700; text-transform: uppercase; line-height: 1.2; }
.faq-q span:last-child  { font-size: 1.2rem; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q span:last-child { transform: rotate(45deg); }
.faq-a { font-size: .83rem; font-weight: 300; line-height: 1.78; color: #444; max-height: 0; overflow: hidden; transition: max-height .3s, padding .2s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.2rem; }

/* ═══════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════ */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--N); color: var(--B); padding: 1.2rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; z-index: 2000; transform: translateY(100%); transition: transform .4s cubic-bezier(.4,0,.2,1); flex-wrap: wrap; border-top: 2px solid rgba(255,255,255,.1); }
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: .78rem; font-weight: 300; line-height: 1.55; color: rgba(255,255,255,.7); max-width: 600px; }
.cookie-btns { display: flex; gap: .6rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btns button { font-family: var(--FC); font-size: .58rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: .65rem 1.3rem; cursor: pointer; min-height: 42px; transition: all .15s; }
.cookie-btns button:first-child { background: var(--B); color: var(--N); border: none; }
.cookie-btns button:first-child:hover { background: #eee; }
.cookie-refuse { background: transparent !important; color: rgba(255,255,255,.5) !important; border: 1px solid rgba(255,255,255,.2) !important; }
.cookie-refuse:hover { color: #fff !important; border-color: rgba(255,255,255,.5) !important; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer { background: var(--N); }
.ft-in  { max-width: 1440px; margin: 0 auto; padding: 2.5rem 2rem 1.5rem; }
.ft-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1.2rem; align-items: start; }
.ft-logo { display: flex; align-items: center; gap: .55rem; margin-bottom: .65rem; }
.ft-logo img  { height: 34px; width: 34px; object-fit: contain; filter: brightness(0) invert(1); opacity: .7; }
.ft-logo span { font-family: var(--FC); font-size: .88rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.ft-desc { font-size: .72rem; font-weight: 300; line-height: 1.68; color: rgba(255,255,255,.22); margin-bottom: .9rem; }
.ft-insta { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--FC); font-size: .52rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); transition: color .15s; }
.ft-insta:hover { color: rgba(255,255,255,.7); }
.ft-insta svg { width: 13px; height: 13px; fill: currentColor; }
.ft-ct    { font-family: var(--FC); font-size: .48rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.18); margin-bottom: .7rem; }
.ft-links { display: flex; flex-direction: column; gap: .45rem; }
.ft-links a { font-size: .7rem; font-weight: 300; color: rgba(255,255,255,.32); transition: color .12s; line-height: 1.4; }
.ft-links a:hover { color: rgba(255,255,255,.75); }
.ft-bot  { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.ft-copy { font-family: var(--FC); font-size: .46rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.1); }

/* ═══════════════════════════════════
   RESPONSIVE 1400px
═══════════════════════════════════ */
@media (max-width: 1399px) { .grid { grid-template-columns: repeat(4, 1fr); } }

/* ═══════════════════════════════════
   RESPONSIVE 1100px
═══════════════════════════════════ */
@media (max-width: 1099px) {
  .grid   { grid-template-columns: repeat(3, 1fr); }
  .ft-top { grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
  .nl     { padding: .4rem .6rem; font-size: .56rem; }
}

/* ═══════════════════════════════════
   RESPONSIVE 900px
═══════════════════════════════════ */
@media (max-width: 900px) { .nl { padding: .35rem .5rem; font-size: .52rem; } }

/* ═══════════════════════════════════
   RESPONSIVE MOBILE 767px
═══════════════════════════════════ */
@media (max-width: 767px) {
  body { font-size: 15px; }

  /* NAV */
  .nav-links { display: none; }
  .burger    { display: flex; }
  .nav-in    { height: 56px; padding: 0 1rem; }
  .nav-logo img  { height: 40px; width: 40px; }
  .nav-logo span { font-size: 1.08rem; letter-spacing: .12em; }
  .nav-cart  { padding: .4rem .8rem; font-size: .56rem; }
  .nav-r     { gap: .4rem; }

  /* GRILLE */
  .grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .gw   { padding: 0 1rem; }
  .tabs { padding: 0 1rem; }

  /* CARDS */
  .card-nom  { font-size: .72rem; }
  .card-cat  { font-size: .6rem; }
  .card-prix { font-size: .88rem; }
  .card-b    { padding: .6rem .05rem 0; }

  /* PAGE HEADER */
  .ph { padding: 2rem 1rem 1.5rem; }
  .ph-h1 { font-size: clamp(2rem, 8vw, 3.5rem); }

  /* SECTION HEADER */
  .sh { flex-direction: column; align-items: flex-start; gap: .5rem; padding: 2rem 1rem 0; }
  .sh-h2 { font-size: clamp(1.6rem, 6vw, 2.5rem); }

  /* MODAL PRODUIT, slide depuis le bas */
  .pov { padding: 0; align-items: flex-end; }
  .pm  { grid-template-columns: 1fr; max-width: 100%; width: 100%; margin: 0; max-height: 96vh; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; border-radius: 10px 10px 0 0; box-sizing: border-box; }
  .pm-gal  { border-right: none; border-bottom: none; }
  .pm-main { aspect-ratio: 4/5; position: relative; overflow: hidden; border-bottom: none; }
  /* Slider swipe mobile */
  .pm-slider { display: flex; width: 100%; height: 100%; transition: transform .28s cubic-bezier(.4,0,.2,1); will-change: transform; }
  .pm-slide  { flex: 0 0 100%; width: 100%; height: 100%; }
  .pm-slide img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
  /* Dots indicateurs */
  .pm-dots { display: flex; justify-content: center; gap: 5px; padding: .5rem 0; background: var(--B); }
  .pm-dot  { width: 5px; height: 5px; border-radius: 50%; background: #ddd; transition: background .15s; }
  .pm-dot.on { background: var(--N); }
  /* Miniatures cachées sur mobile */
  .pm-th { display: none; }
  /* Flèches cachées sur mobile */
  .pm-arr { display: none !important; }
  .pm-info { padding: 1rem 1rem 1.5rem; box-sizing: border-box; width: 100%; max-width: 100%; overflow: hidden; }
  .pm-nom  { font-size: 1.05rem; word-break: break-word; }
  .pm-prix { font-size: 1.25rem; }
  .pm-desc { font-size: .82rem; line-height: 1.72; word-wrap: break-word; overflow-wrap: break-word; white-space: normal; }
  .pm-mat  { font-size: .5rem; word-wrap: break-word; }
  .pm-add, .pm-pay { font-size: .6rem; min-height: 52px; width: 100%; }
  .pm-x    { width: 38px; height: 38px; }
  .pm-tailles { gap: .3rem; }
  .pm-t   { min-height: 46px; min-width: 46px; font-size: .6rem; }

  /* PANIER */
  .cpan { width: 100vw; }

  /* PAIEMENT */
  .payov { padding: 0; align-items: flex-end; }
  .paym  { max-width: 100%; max-height: 96vh; margin: 0; border-radius: 10px 10px 0 0; border-left: none; border-right: none; border-bottom: none; }
  .p2c   { grid-template-columns: 1fr; }

  /* FOOTER */
  .ft-top { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .ft-in  { padding: 2rem 1rem 1.2rem; }

  /* BANNIERE */
  .bm    { min-height: 320px; }
  .bm-c  { padding: 1.5rem 1rem; }
  .bm-h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }

  /* TICKER */
  .ti { font-size: .52rem; padding: 0 1.2rem; }

  /* COOKIE */
  #cookie-banner { flex-direction: column; align-items: flex-start; padding: 1.2rem 1rem; gap: 1rem; }
  .cookie-btns   { width: 100%; }
  .cookie-btns button { flex: 1; }

  /* FAQ */
  .faq { padding: 2.5rem 1rem; }
  .faq-q span:first-child { font-size: .78rem; }
  .faq-a { font-size: .8rem; }
}

/* ═══════════════════════════════════
   RESPONSIVE 479px
═══════════════════════════════════ */
@media (max-width: 479px) {
  .nav-in    { height: 52px; padding: 0 .75rem; }
  .nav-logo span { font-size: .92rem; }
  .nav-logo img  { height: 36px; width: 36px; }
  .gw   { padding: 0 .75rem; }
  .tabs { padding: 0 .75rem; }
  .grid { gap: .65rem; }
  .ph   { padding: 1.5rem .75rem 1.2rem; }
  .tab  { font-size: .57rem; padding: .55rem .8rem; }
  .card-nom { font-size: .66rem; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .sh { padding: 1.5rem .75rem 0; }
  .bm-c { padding: 1.2rem .75rem; }
}

/* ═══════════════════════════════════
   360px, 1 colonne
═══════════════════════════════════ */
@media (max-width: 359px) { .grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════
   TOUCH, zones cliquables
═══════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  .pm-add, .pm-pay, .cpan-btn, .pay-btn, .btn { min-height: 54px; }
  .tab    { min-height: 50px; }
  .nav-cart { min-height: 46px; }
  .pm-t   { min-height: 48px; min-width: 48px; }
  .mob-a  { min-height: 54px; }
  .ci-rm  { min-height: 38px; min-width: 38px; }
}
