/* ==========================================================================
   Épicerie JR — CSS Complet
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* Reset */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{min-height:100vh;line-height:1.6;overflow-x:hidden;font-family:'Inter',sans-serif;color:#f0f0f8;background:#0a0a0f;-webkit-font-smoothing:antialiased}
img,svg{display:block;max-width:100%}
ul,ol{list-style:none}
a{text-decoration:none;color:inherit}
button{cursor:pointer;border:none;background:none;font:inherit}
input,textarea,select{font:inherit}
address{font-style:normal}
p{margin-bottom:1rem;color:rgba(255,255,255,.65);line-height:1.7}
p:last-child{margin-bottom:0}
h1,h2,h3,h4,h5,h6{font-family:'Poppins',sans-serif;font-weight:700;line-height:1.2;color:#fff}

/* Variables */
:root{
  --gold:#f4a261;--gold-dark:#e76f51;--gold-light:#ffd6a5;
  --bg:#0a0a0f;--bg2:#12121a;--bg3:#1a1a2e;--card:#16162a;
  --text:#f0f0f8;--text2:rgba(255,255,255,.65);--text3:rgba(255,255,255,.45);
  --border:rgba(255,255,255,.08);--border-gold:rgba(244,162,97,.3);
  --wa:#25d366;
  --radius:16px;--radius-full:9999px;
  --shadow:0 4px 20px rgba(0,0,0,.5);
  --transition:all .3s ease;
}

/* ===== UTILITIES ===== */
.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}
.container--narrow{max-width:800px}
.text-center{text-align:center}
.visually-hidden,.sr-only{position:absolute!important;width:1px!important;height:1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important}
.hidden{display:none!important}
.reveal{opacity:0;transform:translateY(25px);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.skip-link{position:absolute;top:-100%;left:1rem;background:var(--gold);color:#000;padding:.5rem 1rem;z-index:9999;border-radius:8px}
.skip-link:focus{top:1rem}

/* ===== ANIMATIONS ===== */
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
@keyframes bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@keyframes fadeInUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes dotPulse{0%{box-shadow:0 0 0 0 rgba(34,197,94,.5)}70%{box-shadow:0 0 0 10px rgba(34,197,94,0)}100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}}

/* ===== SECTION HEADER ===== */
.section-header{text-align:center;margin-bottom:3.5rem}
.section-label{display:inline-block;color:var(--gold);font-size:.85rem;font-weight:600;text-transform:uppercase;letter-spacing:.15em;margin-bottom:.75rem;font-family:'Poppins',sans-serif}
.section-title{font-size:clamp(1.8rem,4vw,2.8rem);margin-bottom:1rem}
.section-subtitle,.section-desc{color:var(--text2);max-width:600px;margin:0 auto;font-size:1rem}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:12px 28px;border-radius:var(--radius-full);font-weight:600;font-size:1rem;transition:var(--transition);cursor:pointer;text-decoration:none;border:none;line-height:1.4}
.btn--primary{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#fff}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(244,162,97,.4)}
.btn--outline{background:transparent;border:2px solid var(--gold);color:var(--gold)}
.btn--outline:hover{background:var(--gold);color:#0a0a0f}
.btn--whatsapp,.btn-whatsapp{background:var(--wa);color:#fff}
.btn--whatsapp:hover,.btn-whatsapp:hover{background:#128c7e;transform:translateY(-2px)}
.btn--secondary,.btn-secondary{background:rgba(255,255,255,.08);color:#fff;border:1px solid var(--border)}
.btn--secondary:hover{background:rgba(255,255,255,.15)}
.btn--lg{padding:16px 36px;font-size:1.1rem}
.btn--xl{padding:18px 42px;font-size:1.15rem}
.btn--sm{padding:8px 20px;font-size:.875rem}
.btn svg{display:inline-block;flex-shrink:0}
.btn-primary{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#fff;display:inline-flex;align-items:center;gap:.5rem;padding:12px 28px;border-radius:var(--radius-full);font-weight:600;transition:var(--transition);text-decoration:none}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(244,162,97,.4)}
.btn-submit{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#fff;padding:14px 32px;border-radius:var(--radius-full);font-weight:600;cursor:pointer;border:none;font-size:1rem;transition:var(--transition)}
.btn-submit:hover{transform:translateY(-2px)}
.btn-commander,.btn-wa-large{background:var(--wa);color:#fff;padding:12px 28px;border-radius:var(--radius-full);font-weight:600;display:inline-flex;align-items:center;gap:.5rem;transition:var(--transition);text-decoration:none}
.nav-cta{background:var(--wa);color:#fff;padding:8px 20px;border-radius:var(--radius-full);font-weight:600;font-size:.875rem;transition:var(--transition);text-decoration:none;display:inline-flex;align-items:center;gap:.4rem}
.nav-cta:hover{background:#128c7e}

/* ===== HEADER / NAV ===== */
.header,.site-header{position:fixed;top:0;left:0;width:100%;z-index:1000;transition:background .3s ease,box-shadow .3s ease;background:transparent}
.header.scrolled,.site-header.scrolled{background:rgba(10,10,15,.95);backdrop-filter:blur(10px);box-shadow:0 2px 20px rgba(0,0,0,.5)}
.nav,.navbar,.nav-inner,.header-inner{display:flex;align-items:center;justify-content:space-between;max-width:1200px;margin:0 auto;padding:0 1.5rem;height:70px}
.nav__logo,.nav-logo,.logo,.site-logo{display:flex;align-items:center;gap:.75rem;text-decoration:none;color:#fff}
.nav__logo-img{width:55px;height:55px;border-radius:50%;object-fit:cover;transition:transform .3s}
.nav__logo:hover .nav__logo-img{transform:scale(1.08)}
.nav__logo-text,.logo-text{font-size:1.2rem;font-weight:700;font-family:'Poppins',sans-serif;color:#fff}
.nav__logo-text strong,.logo-text strong{color:var(--gold)}
.nav__menu,.nav-links,.nav-list,.main-nav,.nav-menu{display:flex;align-items:center;gap:2rem;list-style:none}
.nav__link,.nav-link{color:rgba(255,255,255,.75);font-size:.95rem;font-weight:500;transition:color .3s;position:relative}
.nav__link:hover,.nav-link:hover,.nav__link.active,.nav-link--active{color:var(--gold)}
.nav__link.active::after{content:'';position:absolute;bottom:-4px;left:0;width:100%;height:2px;background:var(--gold);border-radius:2px}
.nav__actions{display:flex;align-items:center;gap:1rem}
.nav__burger,.nav-toggle{display:none;flex-direction:column;gap:5px;padding:8px;cursor:pointer;background:none;border:none}
.nav__burger-line,.burger-line{display:block;width:24px;height:2px;background:#fff;border-radius:2px;transition:var(--transition)}

/* Nav-menu inner UL (blog pages) */
.nav-menu ul{display:flex;align-items:center;gap:2rem;list-style:none}
.nav-menu ul li a{color:rgba(255,255,255,.75);font-size:.95rem;font-weight:500;transition:color .3s;text-decoration:none}
.nav-menu ul li a:hover,.nav-menu ul li a[aria-current="page"]{color:var(--gold)}
.logo{font-family:'Poppins',sans-serif;font-weight:700;font-size:1.2rem}

/* Breadcrumb OL (blog pages) */
.breadcrumb ol{display:flex;align-items:center;gap:.5rem;list-style:none;font-size:.85rem;color:rgba(255,255,255,.5);padding:.75rem 0}
.breadcrumb ol a{color:var(--gold);text-decoration:none}
.breadcrumb ol a:hover{text-decoration:underline}

/* Footer nav (blog/other pages) */
.footer-nav h3,.footer-contact h3{font-size:.9rem;font-weight:600;color:#fff;margin-bottom:1rem;text-transform:uppercase;letter-spacing:.1em}
.footer-nav ul,.footer-contact ul{list-style:none}
.footer-nav ul li,.footer-contact ul li{padding:.3rem 0}
.footer-nav ul li a,.footer-contact ul li a{color:rgba(255,255,255,.45);font-size:.88rem;transition:color .3s;text-decoration:none}
.footer-nav ul li a:hover,.footer-contact ul li a:hover{color:var(--gold)}
.footer-brand{min-width:0}
.footer-brand address{margin-top:.75rem}
.footer-brand address a{color:rgba(255,255,255,.45);font-size:.85rem;text-decoration:none}
.footer-brand address a:hover{color:var(--gold)}
.footer-brand p{color:rgba(255,255,255,.45);font-size:.85rem;line-height:1.6}
.footer-bottom p{color:rgba(255,255,255,.4);font-size:.8rem;text-align:center;padding:1.25rem 0}
.footer-bottom a{color:var(--gold);text-decoration:none}

/* ===== HERO ===== */
.hero{min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;position:relative;background:linear-gradient(135deg,#0a0a0f 0%,#1a1a2e 50%,rgba(231,111,81,.08) 100%);overflow:hidden}
.hero__overlay{position:absolute;inset:0;background:radial-gradient(ellipse at center,transparent 0%,#0a0a0f 70%)}
.hero__content{position:relative;z-index:2;max-width:850px;padding:0 1.5rem;animation:fadeInUp .8s ease}
.hero__badge{display:inline-flex;align-items:center;gap:8px;background:rgba(34,197,94,.12);color:#22c55e;padding:8px 22px;border-radius:var(--radius-full);font-size:.875rem;font-weight:500;border:1px solid rgba(34,197,94,.25);margin-bottom:1.5rem}
.hero__badge.fermé{background:rgba(239,68,68,.12);color:#ef4444;border-color:rgba(239,68,68,.25)}
.hero__badge-dot{width:8px;height:8px;border-radius:50%;background:#22c55e;display:inline-block;animation:dotPulse 2s infinite}
.hero__title{font-size:clamp(2.2rem,5vw,3.8rem);font-weight:800;margin-bottom:1.5rem;line-height:1.15}
.hero__subtitle{font-size:clamp(1rem,2vw,1.3rem);color:rgba(255,255,255,.65);margin-bottom:2.5rem;max-width:650px;margin-left:auto;margin-right:auto}
.hero__ctas{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:0}
.hero__meta{display:flex;gap:2rem;justify-content:center;flex-wrap:wrap;margin-top:3rem}
.hero__meta-item{display:flex;align-items:center;gap:.5rem;color:rgba(255,255,255,.55);font-size:.9rem}
.hero__meta-item svg{display:inline-block;flex-shrink:0}
.hero__scroll-indicator{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);animation:bounce 2s infinite}
.hero__scroll-dot{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.4)}

/* Page heroes */
.page-hero,.products-hero,.blog-hero,.contact-hero,.about-hero{min-height:35vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:120px 1.5rem 60px;background:linear-gradient(135deg,#0a0a0f,#1a1a2e)}
.page-hero__content{max-width:800px;margin:0 auto}
.page-hero__title,.page-title{font-size:clamp(2rem,4vw,3rem);margin-bottom:1rem}
.page-hero__subtitle,.blog-hero-lead{color:var(--text2);font-size:1.1rem}
.page-intro,.intro-text{max-width:700px;margin:0 auto 2rem;text-align:center;color:var(--text2)}

/* ===== BREADCRUMB ===== */
.breadcrumb{padding:.75rem 0;font-size:.85rem}
.breadcrumb-inner,.breadcrumb-nav{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap}
.breadcrumb-nav a,.breadcrumb a{color:var(--gold);text-decoration:none}
.breadcrumb-nav a:hover,.breadcrumb a:hover{text-decoration:underline}
.breadcrumb__separator,.breadcrumb span[aria-hidden]{color:var(--text3);margin:0 .25rem}

/* ===== AVANTAGES ===== */
.avantages{padding:6rem 0}
.avantages__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.avantage-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:2rem 1.5rem;text-align:center;transition:var(--transition)}
.avantage-card:hover{border-color:var(--border-gold);transform:translateY(-4px);box-shadow:0 8px 30px rgba(244,162,97,.1)}
.avantage-card__icon{font-size:2.8rem;margin-bottom:1rem;display:block}
.avantage-card__title{font-size:1.05rem;font-weight:600;margin-bottom:.75rem;color:#fff}
.avantage-card__desc{color:var(--text2);font-size:.9rem;line-height:1.6}

/* ===== PRODUITS (homepage) ===== */
.produits{padding:6rem 0;background:var(--bg2)}
.produits__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.produit-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:2rem 1.5rem;text-align:center;transition:var(--transition)}
.produit-card:hover{border-color:var(--border-gold);transform:translateY(-4px)}
.produit-card__icon{font-size:2.8rem;margin-bottom:1rem;display:block}
.produit-card__title{font-size:1.05rem;font-weight:600;margin-bottom:.5rem;color:#fff}
.produit-card__desc{color:var(--text2);font-size:.85rem;line-height:1.5}
.produits__cta{text-align:center;margin-top:2.5rem}

/* ===== ZONES (homepage) ===== */
.zones{padding:6rem 0}
.zones__inner{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.zones__content .section-label,.zones__content .section-title{text-align:left}
.zones__intro{color:var(--text2);margin-bottom:2rem;line-height:1.7}
.zones__list{display:grid;grid-template-columns:1fr 1fr;gap:.6rem;margin-bottom:2rem}
.zones__item{display:flex;align-items:center;gap:.5rem;color:rgba(255,255,255,.8);font-size:.95rem}
.zones__item svg{color:#22c55e;flex-shrink:0;display:inline-block}
.zones__map{display:flex;justify-content:center}
.zones__map-visual{position:relative;width:300px;height:300px;display:flex;flex-direction:column;align-items:center;justify-content:center}
.zones__map-pin{color:var(--gold);position:relative;z-index:2}
.zones__map-pin svg{display:inline-block}
.zones__map-label{text-align:center;color:var(--text2);font-size:.85rem;margin-top:.5rem;position:relative;z-index:2}
.zones__radius-ring{position:absolute;border-radius:50%;border:1px solid rgba(244,162,97,.15);top:50%;left:50%;transform:translate(-50%,-50%)}
.zones__radius-ring--1{width:120px;height:120px;border-color:rgba(244,162,97,.25)}
.zones__radius-ring--2{width:200px;height:200px;border-color:rgba(244,162,97,.15)}
.zones__radius-ring--3{width:280px;height:280px;border-color:rgba(244,162,97,.08)}

/* ===== TÉMOIGNAGES ===== */
.temoignages{padding:6rem 0;background:var(--bg2)}
.temoignages__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.temoignage-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:2rem;transition:var(--transition)}
.temoignage-card:hover{border-color:var(--border-gold)}
.temoignage-card--featured{border-color:var(--border-gold);transform:scale(1.03);box-shadow:0 0 30px rgba(244,162,97,.1)}
.temoignage-card__stars{color:var(--gold);font-size:1.2rem;margin-bottom:1rem;letter-spacing:2px}
.temoignage-card__text{color:var(--text2);font-style:italic;line-height:1.7;margin-bottom:1.5rem}
.temoignage-card__text p{color:inherit}
.temoignage-card__author{display:flex;align-items:center;gap:.75rem}
.temoignage-card__avatar{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#0a0a0f;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1.1rem;flex-shrink:0}
.temoignage-card__info{display:flex;flex-direction:column}
.temoignage-card__name{font-weight:600;color:#fff;font-size:.95rem}
.temoignage-card__location{font-size:.8rem;color:var(--text3)}
.google-reviews-cta{text-align:center;margin-top:2.5rem}

/* ===== COMMENT COMMANDER / STEPS ===== */
.comment-commander{padding:6rem 0}
.steps{display:flex;align-items:stretch;justify-content:center;gap:1.5rem;flex-wrap:nowrap}
.step-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:2rem 1.5rem;text-align:center;flex:1;min-width:0;transition:var(--transition)}
.step-card:hover{border-color:var(--border-gold);transform:translateY(-4px)}
.step-card__number{font-size:3rem;font-weight:800;color:rgba(244,162,97,.15);line-height:1;margin-bottom:.5rem;font-family:'Poppins',sans-serif}
.step-card__icon{font-size:2.5rem;margin-bottom:1rem;display:block}
.step-card__title{font-size:1.05rem;font-weight:600;color:#fff;margin-bottom:.75rem}
.step-card__desc{color:var(--text2);font-size:.88rem;line-height:1.6}
.step-card__link{display:inline-block;color:var(--gold);font-weight:500;margin-top:1rem;font-size:.9rem;transition:var(--transition)}
.step-card__link:hover{color:var(--gold-light)}
.step-arrow{color:rgba(244,162,97,.3);flex-shrink:0;display:flex;align-items:center}
.step-arrow svg{display:inline-block}
.commander__cta{text-align:center;margin-top:3rem}
.steps-list{display:flex;align-items:stretch;gap:1.5rem}

/* ===== STATS ===== */
.stats{padding:5rem 0;background:linear-gradient(135deg,rgba(244,162,97,.04),rgba(231,111,81,.04))}
.stats__grid,.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;text-align:center}
.stat-item,.stat-card{padding:2rem 1rem}
.stat-item__number{font-size:clamp(2.5rem,4vw,3.5rem);font-weight:800;color:var(--gold);font-family:'Poppins',sans-serif;line-height:1}
.stat-suffix{font-size:inherit;color:var(--gold)}
.counter{color:var(--gold)}
.stat-item__label,.stat-label{color:var(--text2);font-size:.9rem;margin-top:.5rem}
.stat-number{font-size:3rem;font-weight:800;color:var(--gold);font-family:'Poppins',sans-serif}
.stat-icon{font-size:2rem;margin-bottom:.5rem}
.hero-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;text-align:center;margin-top:2rem}
.hero-stat__value{font-size:2rem;font-weight:800;color:var(--gold)}
.hero-stat__label{color:var(--text2);font-size:.85rem}

/* ===== À PROPOS ===== */
.a-propos{padding:6rem 0}
.a-propos__inner{display:grid;grid-template-columns:1.3fr .7fr;gap:4rem;align-items:center}
.a-propos__content .section-label,.a-propos__content .section-title{text-align:left}
.a-propos__highlights{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:2rem}
.a-propos__highlight{text-align:center;padding:1.25rem 1rem;background:var(--card);border-radius:12px;border:1px solid var(--border)}
.a-propos__highlight strong{display:block;color:var(--gold);font-size:1.4rem;margin-bottom:.25rem}
.a-propos__highlight span{color:var(--text2);font-size:.8rem}
.a-propos__visual{display:flex;justify-content:center}
.a-propos__night-card{background:var(--card);border:1px solid var(--border-gold);border-radius:20px;padding:3rem 2rem;text-align:center;box-shadow:0 0 40px rgba(244,162,97,.08)}
.a-propos__night-card h3{font-size:1.3rem;margin-bottom:.5rem}
.a-propos__night-icon{font-size:3rem;margin-bottom:1rem}
.a-propos__hours{font-size:1.5rem;font-weight:700;color:var(--gold);margin:.5rem 0}
.a-propos__days{color:var(--text2);font-size:.85rem;margin-bottom:1.5rem}

/* ===== NEWSLETTER ===== */
.newsletter{padding:5rem 0;background:var(--bg2)}
.newsletter__inner{display:flex;align-items:center;justify-content:space-between;gap:3rem;max-width:1100px;margin:0 auto;padding:2.5rem;background:var(--card);border-radius:20px;border:1px solid var(--border)}
.newsletter__content{flex:1}
.newsletter__icon{font-size:2.5rem;margin-bottom:.75rem;display:block}
.newsletter__title{font-size:1.4rem;font-weight:700;margin-bottom:.5rem}
.newsletter__subtitle{color:var(--text2);font-size:.9rem}
.newsletter__form{flex:1;max-width:420px}
.newsletter__form-group{display:flex;border-radius:var(--radius-full);overflow:hidden;border:1px solid rgba(255,255,255,.12)}
.newsletter__input{flex:1;padding:14px 20px;background:rgba(255,255,255,.05);border:none;color:#fff;font-size:.95rem;outline:none;min-width:0}
.newsletter__input::placeholder{color:var(--text3)}
.newsletter__input:focus{background:rgba(255,255,255,.08)}
.newsletter__btn{padding:14px 24px;background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#fff;border:none;font-weight:600;cursor:pointer;white-space:nowrap;transition:var(--transition)}
.newsletter__btn:hover{opacity:.9}
.newsletter__hint{font-size:.78rem;color:var(--text3);margin-top:.75rem}
.newsletter__success{background:rgba(34,197,94,.1);color:#22c55e;padding:12px 20px;border-radius:10px;margin-top:1rem;font-size:.9rem}

/* ===== CONTACT (homepage) ===== */
.contact{padding:6rem 0}
.contact__grid,.contact-info-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.contact-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:2rem 1.5rem;text-align:center;transition:var(--transition)}
.contact-card:hover{border-color:var(--border-gold);transform:translateY(-3px)}
.contact-card__icon{margin-bottom:1rem;color:var(--gold)}
.contact-card__icon svg{margin:0 auto;display:inline-block}
.contact-card__title{font-size:1.05rem;font-weight:600;margin-bottom:.75rem;color:#fff}
.contact-card__desc{color:var(--text2);font-size:.85rem;line-height:1.6;margin-bottom:1rem}
.contact-card__link{color:var(--gold);font-weight:600;font-size:.95rem;transition:var(--transition)}
.contact-card__link:hover{color:var(--gold-light)}
.contact-card__address{color:var(--text2);font-size:.9rem;line-height:1.5}
.contact-card__hours{color:var(--gold);font-weight:600;font-size:1rem}
.contact-card__hours span{font-weight:400;color:var(--text2)}

/* ===== CONTACT PAGE ===== */
.contact-layout{display:grid;grid-template-columns:1.2fr .8fr;gap:3rem;align-items:start}
.contact-form-wrap{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:2.5rem}
.contact-aside{display:flex;flex-direction:column;gap:1.5rem}
.aside-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem}
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;color:#fff;font-weight:500;margin-bottom:.5rem;font-size:.9rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-control{width:100%;padding:12px 16px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);border-radius:10px;color:#fff;font-size:.95rem;outline:none;transition:border-color .3s}
.form-control:focus{border-color:var(--gold)}
textarea.form-control{min-height:120px;resize:vertical}
.req{color:var(--gold)}

/* ===== FOOTER ===== */
.footer,.site-footer{background:#060609;border-top:1px solid var(--border);padding-top:4rem}
.footer__top,.footer-inner,.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:3rem;max-width:1200px;margin:0 auto;padding:0 1.5rem 3rem}
.footer__col,.footer-col{min-width:0}
.footer__col-title,.footer-col__title,.footer-nav-title{font-size:.9rem;font-weight:600;color:#fff;margin-bottom:1.5rem;text-transform:uppercase;letter-spacing:.1em}
.footer__logo,.footer-logo,.footer-brand{display:flex;align-items:center;gap:.75rem;margin-bottom:1rem;font-size:1.15rem;color:#fff;font-weight:700;text-decoration:none}
.footer__logo-img{width:70px;height:70px;border-radius:50%;object-fit:cover}
.footer__about-text,.footer-tagline{color:var(--text3);font-size:.85rem;line-height:1.6;margin-bottom:1rem}
.footer__address,.footer-address{display:flex;align-items:center;gap:.5rem;color:var(--text3);font-size:.83rem}
.footer__address svg{display:inline-block;flex-shrink:0}
.footer__socials,.footer-social{display:flex;gap:.75rem;margin-top:1.25rem}
.footer__social-link,.social-link{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.07);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.55);transition:var(--transition)}
.footer__social-link:hover,.social-link:hover{background:var(--gold);color:#0a0a0f}
.footer__social-link svg,.social-link svg{display:inline-block;width:18px;height:18px}
.footer__google-review{display:inline-flex;align-items:center;gap:.4rem;margin-top:1rem;font-size:.83rem;color:var(--text3);transition:color .3s}
.footer__google-review:hover{color:var(--gold)}
.footer__links,.footer-nav{list-style:none}
.footer__link{color:var(--text3);font-size:.88rem;display:block;padding:.3rem 0;transition:color .3s}
.footer__link:hover{color:var(--gold)}
.footer__horaires,.footer-hours{font-size:.85rem}
.footer__horaire-row{display:flex;justify-content:space-between;padding:.35rem 0;color:var(--text3);border-bottom:1px solid rgba(255,255,255,.04)}
.footer__horaire-time{color:var(--gold);font-weight:500}
.footer__horaires-note,.footer-hours-note{display:flex;align-items:center;gap:.5rem;color:var(--text3);font-size:.78rem;margin-top:.75rem}
.footer__horaires-note svg{display:inline-block;flex-shrink:0}
.footer__contact-list,.footer-contact-list{list-style:none}
.footer__contact-item{display:flex;align-items:center;gap:.75rem;color:var(--text3);padding:.45rem 0;font-size:.88rem;transition:color .3s;text-decoration:none}
.footer__contact-item:hover{color:var(--gold)}
.footer__contact-item svg{display:inline-block;flex-shrink:0}
.footer__cta-block{margin-top:1.5rem}
.footer__bottom,.footer-bottom{border-top:1px solid var(--border);padding:1.25rem 0}
.footer__bottom-inner{display:flex;justify-content:space-between;align-items:center;max-width:1200px;margin:0 auto;padding:0 1.5rem;flex-wrap:wrap;gap:1rem}
.footer__copyright,.footer-copy{color:var(--text3);font-size:.8rem}
.footer__legal-links,.footer-legal{display:flex;gap:1.5rem;flex-wrap:wrap}
.footer__legal-link{color:var(--text3);font-size:.8rem;transition:color .3s}
.footer__legal-link:hover{color:var(--gold)}
.footer-badge{display:inline-flex;align-items:center;gap:.4rem;padding:6px 14px;border-radius:var(--radius-full);font-size:.8rem;font-weight:500;background:rgba(34,197,94,.12);color:#22c55e;border:1px solid rgba(34,197,94,.2)}
.footer-wa-btn{display:inline-flex;align-items:center;gap:.5rem;background:var(--wa);color:#fff;padding:10px 22px;border-radius:var(--radius-full);font-weight:600;font-size:.9rem;margin-top:1rem;transition:var(--transition);text-decoration:none}
.footer-wa-btn:hover{background:#128c7e}
.tel-link{color:var(--gold);text-decoration:none}
.footer-contact{font-size:.88rem;color:var(--text3)}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons,.floating-btns{position:fixed;bottom:2rem;right:2rem;z-index:999;display:flex;flex-direction:column;gap:.75rem}
.floating-btn,.float-btn{display:flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:50%;text-decoration:none;transition:var(--transition);box-shadow:0 4px 15px rgba(0,0,0,.4)}
.floating-btn:hover,.float-btn:hover{transform:scale(1.1)}
.floating-btn--whatsapp,.float-wa,.float-whatsapp{background:var(--wa);color:#fff}
.floating-btn--phone,.float-phone{background:var(--gold);color:#fff}
.floating-btn svg,.float-btn svg{display:inline-block;width:24px;height:24px}
.floating-btn__label,.floating-btn__tooltip{display:none;position:absolute;right:70px;background:rgba(0,0,0,.85);color:#fff;padding:6px 14px;border-radius:8px;font-size:.8rem;white-space:nowrap}
.floating-btn:hover .floating-btn__label,.floating-btn:hover .floating-btn__tooltip{display:block}

/* ===== PRODUCTS PAGE ===== */
.products-section{padding:4rem 0}
.products-inner{max-width:1200px;margin:0 auto;padding:0 1.5rem}
.filter-section{margin-bottom:2.5rem;position:sticky;top:70px;z-index:100;background:var(--bg);padding:1rem 0;border-bottom:1px solid var(--border)}
.filter-inner{display:flex;gap:.5rem;flex-wrap:wrap;justify-content:center}
.filter-btn{padding:8px 20px;border-radius:var(--radius-full);font-size:.875rem;font-weight:500;background:rgba(255,255,255,.05);color:var(--text2);border:1px solid var(--border);cursor:pointer;transition:var(--transition)}
.filter-btn:hover{border-color:var(--border-gold);color:var(--gold)}
.filter-btn.active{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#fff;border-color:transparent}
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1.5rem}
.product-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem;text-align:center;transition:var(--transition)}
.product-card:hover{border-color:var(--border-gold);transform:translateY(-3px)}
.product-card[style*="display: none"]{display:none!important}
.product-emoji{font-size:2.5rem;margin-bottom:.75rem;display:block}
.product-category-tag{display:inline-block;font-size:.7rem;font-weight:600;color:var(--gold);text-transform:uppercase;letter-spacing:.1em;background:rgba(244,162,97,.1);padding:3px 10px;border-radius:var(--radius-full);margin-bottom:.75rem}
.product-name{font-size:1rem;font-weight:600;margin-bottom:.5rem;color:#fff}
.product-desc{color:var(--text2);font-size:.83rem;line-height:1.5;margin-bottom:1rem}
.product-price{font-size:1.1rem;font-weight:700;color:var(--gold);margin-bottom:1rem}
.product-footer{margin-top:auto}
.results-count{text-align:center;font-size:.85rem;color:var(--text3);margin-bottom:1.5rem}
.no-results,.not-found-section{text-align:center;padding:3rem;color:var(--text2)}
.not-found-inner{max-width:500px;margin:0 auto}

/* ===== SEO TEXT ===== */
.seo-section,.blog-seo-text{padding:4rem 0;background:var(--bg2)}
.seo-inner,.seo-text-inner,.seo-text{max-width:800px;margin:0 auto;padding:0 1.5rem}
.seo-text p,.seo-inner p,.blog-seo-text p{color:var(--text2);font-size:.9rem;line-height:1.7}

/* ===== ZONES PAGE ===== */
.zone-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1.25rem}
.zone-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem;transition:var(--transition)}
.zone-card:hover{border-color:var(--border-gold);transform:translateY(-2px)}
.zone-card--banlieue{border-left:3px solid var(--gold)}
.zone-card__name{font-weight:600;color:#fff;font-size:1rem;margin-bottom:.25rem}
.zone-card__area{color:var(--text3);font-size:.8rem}
.zone-card__desc{color:var(--text2);font-size:.83rem;margin-top:.5rem}
.zone-card__header{display:flex;justify-content:space-between;align-items:center}
.zone-card__meta{display:flex;gap:.5rem;align-items:center}
.zone-card__price{font-size:.8rem;color:var(--gold)}
.zone-note{font-size:.85rem;color:var(--text2);margin-top:1rem;font-style:italic}
.delay-badge{display:inline-block;padding:3px 10px;border-radius:var(--radius-full);font-size:.75rem;font-weight:600}
.delay-badge--fast{background:rgba(34,197,94,.12);color:#22c55e}
.delay-badge--medium,.delay-badge--standard{background:rgba(244,162,97,.12);color:var(--gold)}
.delay-badge--far{background:rgba(59,130,246,.12);color:#3b82f6}
.delay-legend{margin-bottom:2rem;padding:1.5rem;background:var(--card);border-radius:var(--radius);border:1px solid var(--border)}
.delay-legend__title{font-weight:600;color:#fff;margin-bottom:1rem;font-size:.95rem}
.delay-legend__list{display:flex;gap:1.5rem;flex-wrap:wrap}
.delay-legend__item{display:flex;align-items:center;gap:.5rem;font-size:.85rem;color:var(--text2)}
.banlieue-notice{background:rgba(244,162,97,.08);border:1px solid var(--border-gold);border-radius:var(--radius);padding:1.25rem;margin:2rem 0;font-size:.9rem;color:var(--text2)}

/* ===== INFO CARDS ===== */
.info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.5rem}
.info-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:2rem 1.5rem;text-align:center;transition:var(--transition)}
.info-card:hover{border-color:var(--border-gold)}
.info-card__icon,.info-icon{font-size:2.5rem;margin-bottom:1rem;display:block}
.info-card__title{font-weight:600;color:#fff;margin-bottom:.5rem}
.info-card__desc{color:var(--text2);font-size:.88rem}
.info-card__value{font-size:1.5rem;font-weight:700;color:var(--gold);margin-top:.5rem}
.info-link{color:var(--gold);font-weight:500}

/* ===== TARIFS ===== */
.tarifs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.tarif-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:2rem;text-align:center;position:relative;transition:var(--transition)}
.tarif-card:hover{border-color:var(--border-gold)}
.tarif-card--free{border-color:rgba(34,197,94,.3)}
.tarif-card__badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--wa);color:#fff;padding:4px 16px;border-radius:var(--radius-full);font-size:.75rem;font-weight:600}
.tarif-card__icon{font-size:2.5rem;margin-bottom:1rem}
.tarif-card__title{font-weight:600;color:#fff;margin-bottom:.75rem}
.tarif-card__price{font-size:2rem;font-weight:800;color:var(--gold);margin-bottom:.5rem;font-family:'Poppins',sans-serif}
.tarif-card__condition{color:var(--text2);font-size:.85rem;margin-bottom:1rem}
.tarif-card__features{list-style:none;text-align:left}
.tarif-card__features li{color:var(--text2);font-size:.85rem;padding:.3rem 0;padding-left:1.2rem;position:relative}
.tarif-card__features li::before{content:'✓';position:absolute;left:0;color:#22c55e}
.tarifs-note{text-align:center;color:var(--text3);font-size:.83rem;margin-top:1.5rem}

/* ===== HORAIRES ===== */
.horaires-wrapper{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.horaires-table{width:100%}
.horaires-table tr{border-bottom:1px solid var(--border)}
.horaires-table td{padding:.6rem .5rem;color:var(--text2);font-size:.9rem}
.horaires-table td:last-child{text-align:right;color:var(--gold);font-weight:500}
.row--weekend td{color:#fff;font-weight:500}
.row--ferie td{color:var(--gold)}
.horaires-visual{text-align:center}
.horaires-clock{font-size:4rem;margin-bottom:1rem}
.horaires-details{color:var(--text2);font-size:.9rem}
.horaires-note{font-size:.85rem;color:var(--text3);margin-top:1rem}
.hours-list li{padding:.4rem 0;color:var(--text2);font-size:.9rem;display:flex;justify-content:space-between}
.badge,.status-badge,.badge--open{display:inline-flex;align-items:center;gap:.4rem;padding:6px 14px;border-radius:var(--radius-full);font-size:.8rem;font-weight:500;background:rgba(34,197,94,.12);color:#22c55e;border:1px solid rgba(34,197,94,.2)}
.clock-icon{font-size:3rem;display:block;margin-bottom:1rem}
.clock-time{font-size:1.5rem;font-weight:700;color:var(--gold)}

/* ===== FAQ ===== */
.faq-list{max-width:800px;margin:0 auto}
.faq-item{border:1px solid var(--border);border-radius:var(--radius);margin-bottom:.75rem;overflow:hidden;background:var(--card);transition:var(--transition)}
.faq-item.active{border-color:var(--border-gold)}
.faq-question{width:100%;display:flex;justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;background:none;border:none;color:#fff;font-size:1rem;font-weight:500;cursor:pointer;text-align:left;transition:var(--transition)}
.faq-question:hover{color:var(--gold)}
.faq-icon{color:var(--gold);font-size:1.25rem;transition:transform .3s;flex-shrink:0}
.faq-item.active .faq-icon{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-answer p,.faq-answer div{padding:0 1.5rem 1.25rem;color:var(--text2);font-size:.9rem;line-height:1.7}

/* ===== BLOG ===== */
.blog-grid-section{padding:4rem 0}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem}
.blog-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:var(--transition)}
.blog-card:hover{border-color:var(--border-gold);transform:translateY(-3px)}
.blog-card-img{height:200px;background:var(--bg3);display:flex;align-items:center;justify-content:center}
.blog-card-icon{font-size:3rem}
.blog-card-body{padding:1.5rem}
.blog-card-category{display:inline-block;font-size:.7rem;font-weight:600;color:var(--gold);text-transform:uppercase;letter-spacing:.1em;margin-bottom:.75rem}
.blog-card h3{font-size:1.1rem;margin-bottom:.75rem;line-height:1.3}
.blog-card-date{font-size:.8rem;color:var(--text3);margin-bottom:.5rem}
.blog-card-excerpt{color:var(--text2);font-size:.88rem;line-height:1.6;margin-bottom:1rem}
.blog-card-link{color:var(--gold);font-weight:500;font-size:.9rem;transition:var(--transition)}
.blog-card-link:hover{color:var(--gold-light)}
.blog-cta-banner{text-align:center;padding:3rem;background:var(--card);border-radius:var(--radius);border:1px solid var(--border);margin-top:3rem}

/* ===== BLOG ARTICLE ===== */
.blog-article{max-width:800px;margin:0 auto;padding:3rem 1.5rem}
.article-header{margin-bottom:2.5rem}
.article-meta{display:flex;align-items:center;gap:1rem;margin-bottom:1rem;flex-wrap:wrap}
.article-date{font-size:.85rem;color:var(--text3)}
.article-category{font-size:.75rem;font-weight:600;color:var(--gold);text-transform:uppercase;letter-spacing:.1em;background:rgba(244,162,97,.1);padding:3px 10px;border-radius:var(--radius-full)}
.article-lead{font-size:1.1rem;color:var(--text2);line-height:1.7;margin-top:1rem}
.article-body{line-height:1.8}
.article-body h2{font-size:1.5rem;margin:2.5rem 0 1rem;color:#fff}
.article-body h3{font-size:1.2rem;margin:2rem 0 .75rem;color:#fff}
.article-body p{color:var(--text2);margin-bottom:1.25rem;font-size:1rem}
.article-body ul,.article-body ol{margin:1rem 0 1.5rem 1.5rem;color:var(--text2)}
.article-body ul li,.article-body ol li{margin-bottom:.5rem;line-height:1.7;list-style:disc}
.article-body ol li{list-style:decimal}
.article-body a{color:var(--gold);text-decoration:underline}
.article-body a:hover{color:var(--gold-light)}
.article-body strong{color:#fff}
.article-body blockquote{border-left:3px solid var(--gold);padding:1rem 1.5rem;margin:1.5rem 0;background:rgba(244,162,97,.05);border-radius:0 var(--radius) var(--radius) 0}
.article-body blockquote p{color:var(--text2);font-style:italic;margin-bottom:0}
.article-cta{text-align:center;margin:3rem 0;padding:2.5rem;background:var(--card);border:1px solid var(--border-gold);border-radius:20px}
.article-cta h2,.article-cta h3{margin-bottom:1rem}
.article-cta p{color:var(--text2)}
.article-nav{display:flex;justify-content:space-between;gap:1rem;margin-top:2rem;flex-wrap:wrap}
.article-nav a{color:var(--gold);font-size:.9rem;font-weight:500}
.article-nav a:hover{color:var(--gold-light)}

/* ===== ABOUT PAGE ===== */
.story-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:3rem;align-items:center}
.story-content p{color:var(--text2)}
.story-visual{display:flex;justify-content:center}
.story-tag{display:inline-block;background:rgba(244,162,97,.1);color:var(--gold);padding:4px 14px;border-radius:var(--radius-full);font-size:.8rem;font-weight:600;margin-bottom:1rem}
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.value-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:2rem 1.5rem;text-align:center;transition:var(--transition)}
.value-card:hover{border-color:var(--border-gold)}
.value-icon{font-size:2.5rem;margin-bottom:1rem;display:block}
.mission-inner{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.mission-content h2{margin-bottom:1rem}
.mission-list{list-style:none}
.mission-list li{padding:.5rem 0;color:var(--text2);padding-left:1.5rem;position:relative}
.mission-list li::before{content:'✓';position:absolute;left:0;color:#22c55e}
.mission-card,.mission-visual{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:2rem;text-align:center}

/* ===== MAP ===== */
.map-section{padding:4rem 0}
.map-wrap,.map-wrapper{border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);height:400px}
.map-wrap iframe,.map-wrapper iframe{width:100%;height:100%;border:none;filter:invert(.9) hue-rotate(180deg) brightness(.8) contrast(1.2)}
.map-info,.map-address{text-align:center;margin-top:1.5rem;color:var(--text2)}
.map-header{margin-bottom:1.5rem}
.map-actions{display:flex;gap:1rem;justify-content:center;margin-top:1.5rem;flex-wrap:wrap}
.map-btn{padding:10px 22px;border-radius:var(--radius-full);font-size:.9rem;font-weight:500;transition:var(--transition);text-decoration:none;display:inline-flex;align-items:center;gap:.5rem}
.map-btn--primary{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:#fff}
.map-btn--light{background:rgba(255,255,255,.08);color:#fff;border:1px solid var(--border)}

/* ===== CTA SECTIONS ===== */
.cta-section,.section--cta{padding:5rem 0;text-align:center}
.cta-box{max-width:700px;margin:0 auto;padding:3rem;background:var(--card);border:1px solid var(--border-gold);border-radius:20px;text-align:center}
.cta-box--wide{max-width:900px}
.cta-box__icon,.cta-emoji{font-size:2.5rem;margin-bottom:1rem;display:block}
.cta-box__title{font-size:1.5rem;font-weight:700;margin-bottom:.75rem}
.cta-box__desc{color:var(--text2);margin-bottom:.5rem}
.cta-box__sub{color:var(--text3);font-size:.85rem;margin-bottom:1.5rem}
.cta-box__actions,.cta-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-top:1.5rem}
.unlisted-box{max-width:700px;margin:0 auto;padding:3rem;background:var(--card);border:1px solid var(--border-gold);border-radius:20px;text-align:center}
.unlisted-box__icon{font-size:2.5rem;margin-bottom:1rem}
.unlisted-box__title{font-size:1.3rem;font-weight:700;margin-bottom:.5rem}
.unlisted-box__desc{color:var(--text2);margin-bottom:.25rem}
.unlisted-box__sub{color:var(--text3);font-size:.85rem;margin-bottom:1.5rem}
.unlisted-box__actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ===== SOCIAL ===== */
.social-section{padding:3rem 0;text-align:center}
.social-links{display:flex;gap:1rem;justify-content:center;margin-top:1.5rem}
.social-link--wa{background:var(--wa)!important;color:#fff!important}
.social-icon{width:20px;height:20px}

/* ===== LEGAL PAGE ===== */
.page-mentions-legales{padding-top:100px}
.legal-section{margin-bottom:3rem}
.legal-section h2{font-size:1.3rem;margin-bottom:1rem;color:var(--gold)}
.legal-section h3{font-size:1.1rem;margin-bottom:.75rem;margin-top:1.5rem}
.legal-section p,.legal-section li{color:var(--text2);font-size:.9rem;line-height:1.7}
.legal-section ul{margin-left:1.5rem;margin-bottom:1rem}
.legal-section ul li{list-style:disc;margin-bottom:.3rem}

/* ===== MISC ===== */
.section--alt{background:var(--bg2)}
.section{padding:5rem 0}
.section--sm{padding:3rem 0}
.highlight{color:var(--gold)}
.separator,.sep{width:60px;height:3px;background:var(--gold);border-radius:3px;margin:1rem auto}
.big-icon{font-size:3rem;display:block;margin-bottom:1rem}
.mc-icon{font-size:1.5rem;margin-right:.5rem}
.mc-label{font-weight:500}
.dot{width:6px;height:6px;border-radius:50%;display:inline-block}
.current{color:var(--gold)}
blockquote{border-left:3px solid var(--gold);padding-left:1.5rem;margin:1.5rem 0;font-style:italic;color:var(--text2)}
blockquote p{color:inherit}
.content-narrow{max-width:800px;margin:0 auto}

/* ========== RESPONSIVE ========== */
/* ========== TABLET (1024px) ========== */
@media(max-width:1024px){
  .avantages__grid,.values-grid{grid-template-columns:repeat(2,1fr)}
  .produits__grid{grid-template-columns:repeat(3,1fr)}
  .products-grid{grid-template-columns:repeat(auto-fill,minmax(200px,1fr))}
  .zones__inner{grid-template-columns:1fr;gap:2.5rem}
  .zones__content .section-label,.zones__content .section-title{text-align:center}
  .zones__list{justify-content:center}
  .a-propos__inner{grid-template-columns:1fr;gap:2.5rem;text-align:center}
  .a-propos__content .section-label,.a-propos__content .section-title{text-align:center}
  .story-grid,.mission-inner{grid-template-columns:1fr;gap:2rem}
  .horaires-wrapper{grid-template-columns:1fr}
  .footer__top,.footer-inner,.footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .tarifs-grid{grid-template-columns:1fr}
  .contact-layout{grid-template-columns:1fr}
  .temoignages__grid{grid-template-columns:1fr}
  .contact__grid,.contact-info-grid{grid-template-columns:repeat(2,1fr)}
  .stats__grid,.stats-grid{grid-template-columns:repeat(2,1fr)}
}

/* ========== MOBILE (768px) ========== */
@media(max-width:768px){
  /* --- NAV MOBILE --- */
  .nav__menu,.nav-links,.nav-list,.main-nav,.nav-menu{
    position:fixed;top:0;right:-100%;width:75vw;max-width:300px;height:100vh;height:100dvh;
    background:rgba(10,10,15,.98);backdrop-filter:blur(12px);
    flex-direction:column;padding:6rem 2rem 2rem;gap:1.25rem;
    transition:right .35s cubic-bezier(.4,0,.2,1);z-index:999;
    border-left:1px solid rgba(255,255,255,.08);
    overflow-y:auto
  }
  .nav-menu ul{flex-direction:column;gap:1.25rem}
  .nav-menu ul li a{font-size:1.1rem;padding:.5rem 0;border-bottom:1px solid rgba(255,255,255,.06)}
  .nav__menu.is-open,.nav__menu.active,.nav-links.active,.nav-menu.active{right:0}
  .nav__burger,.nav-toggle{display:flex}
  .nav__burger.is-active .nav__burger-line:nth-child(1),.nav-toggle.is-active .burger-line:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
  .nav__burger.is-active .nav__burger-line:nth-child(2),.nav-toggle.is-active .burger-line:nth-child(2){opacity:0}
  .nav__burger.is-active .nav__burger-line:nth-child(3),.nav-toggle.is-active .burger-line:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
  .nav__link,.nav-link{font-size:1.1rem;padding:.5rem 0;border-bottom:1px solid rgba(255,255,255,.06)}
  .nav__actions .btn--whatsapp,.nav__actions .btn--sm{display:none}

  /* --- HERO MOBILE --- */
  .hero{min-height:85vh;min-height:85dvh;padding:0 1rem}
  .hero__content{padding:0 .5rem}
  .hero__title{font-size:clamp(1.6rem,7vw,2.5rem);margin-bottom:1rem}
  .hero__subtitle{font-size:1rem;margin-bottom:2rem}
  .hero__badge{font-size:.8rem;padding:6px 16px}
  .hero__ctas{flex-direction:column;align-items:stretch;gap:.75rem}
  .hero__ctas .btn{width:100%;justify-content:center;padding:14px 20px}
  .hero__meta{flex-direction:column;gap:.6rem;align-items:center;margin-top:2rem}
  .hero__meta-item{font-size:.85rem}
  .hero__scroll-indicator{display:none}

  /* --- PAGE HERO MOBILE --- */
  .page-hero,.products-hero,.blog-hero,.contact-hero,.about-hero{
    min-height:auto;padding:100px 1rem 40px
  }
  .page-hero__title,.page-title{font-size:clamp(1.5rem,6vw,2.2rem)}

  /* --- SECTIONS SPACING --- */
  .avantages,.produits,.temoignages,.comment-commander,.a-propos,.contact,.zones{padding:3.5rem 0}
  .stats{padding:3rem 0}
  .newsletter{padding:3rem 0}
  .section-header{margin-bottom:2rem}
  .section-title{font-size:clamp(1.5rem,5vw,2rem)}
  .section-subtitle{font-size:.9rem}

  /* --- GRIDS 1 COL --- */
  .avantages__grid,.produits__grid,.contact__grid,.contact-info-grid,
  .stats__grid,.stats-grid,.values-grid,.temoignages__grid{grid-template-columns:1fr}
  .a-propos__highlights{grid-template-columns:repeat(3,1fr)}
  .products-grid{grid-template-columns:repeat(2,1fr);gap:1rem}

  /* --- CARDS MOBILE --- */
  .avantage-card,.produit-card,.contact-card,.temoignage-card,.step-card,.stat-item,.info-card,.value-card{
    padding:1.5rem 1.25rem
  }
  .avantage-card__icon,.produit-card__icon{font-size:2.2rem}
  .product-card{padding:1.25rem 1rem}
  .product-emoji{font-size:2rem}
  .product-name{font-size:.95rem}

  /* --- TEMOIGNAGES --- */
  .temoignage-card--featured{transform:none}
  .temoignage-card__text{font-size:.9rem}

  /* --- STEPS MOBILE --- */
  .steps,.steps-list{flex-direction:column;align-items:stretch;gap:1rem}
  .step-arrow{transform:rotate(90deg);justify-content:center;padding:.25rem 0}
  .step-card__number{font-size:2rem}
  .step-card__icon{font-size:2rem}

  /* --- STATS MOBILE --- */
  .stats__grid,.stats-grid{grid-template-columns:repeat(2,1fr);gap:1rem}
  .stat-item{padding:1.25rem .75rem}
  .stat-item__number{font-size:2rem}

  /* --- A PROPOS MOBILE --- */
  .a-propos__inner{grid-template-columns:1fr;gap:2rem;text-align:center}
  .a-propos__content .section-label,.a-propos__content .section-title{text-align:center}
  .a-propos__night-card{padding:2rem 1.5rem}
  .a-propos__hours{font-size:1.25rem}

  /* --- NEWSLETTER MOBILE --- */
  .newsletter__inner{flex-direction:column;text-align:center;gap:1.5rem;padding:2rem 1.5rem}
  .newsletter__form{max-width:100%;width:100%}
  .newsletter__form-group{flex-direction:column;border-radius:12px}
  .newsletter__input{border-radius:12px 12px 0 0;border-bottom:1px solid rgba(255,255,255,.08);padding:14px 16px}
  .newsletter__btn{border-radius:0 0 12px 12px;padding:14px;width:100%}
  .newsletter__title{font-size:1.2rem}

  /* --- CONTACT CARDS MOBILE --- */
  .contact__grid,.contact-info-grid{grid-template-columns:1fr}
  .contact-card{padding:1.5rem}

  /* --- ZONES MOBILE --- */
  .zones__inner{grid-template-columns:1fr;gap:2rem}
  .zones__list{grid-template-columns:1fr;gap:.5rem}
  .zones__map-visual{width:220px;height:220px}
  .zones__radius-ring--3{width:200px;height:200px}
  .zone-grid{grid-template-columns:1fr}

  /* --- FOOTER MOBILE --- */
  .footer__top,.footer-inner,.footer-grid{grid-template-columns:1fr;gap:2rem;padding-bottom:2rem}
  .footer__col{text-align:center}
  .footer__logo{justify-content:center}
  .footer__address{justify-content:center}
  .footer__socials{justify-content:center}
  .footer__links{display:flex;flex-wrap:wrap;gap:.5rem 1.5rem;justify-content:center}
  .footer__link{display:inline;padding:0}
  .footer__horaire-row{max-width:250px;margin:0 auto}
  .footer__horaires-note{justify-content:center}
  .footer__contact-list{display:flex;flex-direction:column;align-items:center}
  .footer__cta-block{text-align:center}
  .footer__bottom-inner{flex-direction:column;text-align:center;gap:.75rem}
  .footer__legal-links{justify-content:center}

  /* --- BLOG MOBILE --- */
  .blog-grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr;text-align:center;gap:2rem}
  .footer-brand{text-align:center}
  .footer-nav ul,.footer-contact ul{display:flex;flex-wrap:wrap;gap:.5rem 1rem;justify-content:center}
  .footer-nav h3,.footer-contact h3{text-align:center}
  .blog-card-body{padding:1.25rem}

  /* --- FORMS MOBILE --- */
  .form-row{grid-template-columns:1fr}
  .contact-layout{grid-template-columns:1fr;gap:2rem}
  .contact-form-wrap{padding:1.5rem}

  /* --- TARIFS MOBILE --- */
  .tarifs-grid{grid-template-columns:1fr}

  /* --- MAP MOBILE --- */
  .map-wrap,.map-wrapper{height:280px}
  .map-actions{flex-direction:column;align-items:center}

  /* --- CTA MOBILE --- */
  .cta-box,.unlisted-box{padding:2rem 1.5rem}
  .cta-box__actions,.unlisted-box__actions,.cta-buttons{flex-direction:column;align-items:stretch}
  .cta-box__actions .btn,.unlisted-box__actions .btn{width:100%;justify-content:center}

  /* --- FILTER MOBILE --- */
  .filter-section{padding:1rem 0;top:60px}
  .filter-inner{gap:.4rem;padding:0 .5rem}
  .filter-btn{padding:6px 14px;font-size:.78rem}

  /* --- BREADCRUMB MOBILE --- */
  .breadcrumb{padding:.5rem 0}
  .breadcrumb-nav{font-size:.8rem}

  /* --- MISC MOBILE --- */
  .hero-stats{grid-template-columns:repeat(2,1fr)}
  .story-grid{grid-template-columns:1fr}
  .mission-inner{grid-template-columns:1fr}
  .delay-legend__list{flex-direction:column;gap:.75rem}
  .horaires-wrapper{grid-template-columns:1fr}
  .info-grid{grid-template-columns:1fr}
}

/* ========== SMALL PHONE (480px) ========== */
@media(max-width:480px){
  .container{padding:0 .875rem}
  .hero{min-height:80vh;min-height:80dvh}
  .hero__title{font-size:1.6rem;letter-spacing:-.02em}
  .hero__subtitle{font-size:.9rem}
  .hero__badge{font-size:.75rem;padding:5px 12px}
  .hero__ctas .btn{font-size:.95rem;padding:13px 16px}

  .nav,.navbar,.nav-inner{height:60px;padding:0 .875rem}
  .nav__logo-img{width:40px;height:40px}
  .nav__logo-text{font-size:1rem}

  .section-title{font-size:1.3rem}
  .section-label{font-size:.75rem}

  .avantages,.produits,.temoignages,.comment-commander,.a-propos,.contact,.zones{padding:2.5rem 0}

  .avantage-card,.produit-card,.step-card,.contact-card,.temoignage-card{padding:1.25rem 1rem;border-radius:12px}
  .avantage-card__icon,.produit-card__icon{font-size:2rem;margin-bottom:.75rem}
  .avantage-card__title,.produit-card__title,.step-card__title,.contact-card__title{font-size:.95rem}
  .avantage-card__desc,.produit-card__desc,.step-card__desc,.contact-card__desc{font-size:.83rem}

  .products-grid{grid-template-columns:1fr;gap:.875rem}
  .product-card{flex-direction:row;align-items:center;gap:1rem;padding:1rem;text-align:left}
  .product-emoji{font-size:2rem;margin-bottom:0;flex-shrink:0}
  .product-card .product-category-tag{display:none}
  .product-name{font-size:.9rem}
  .product-desc{font-size:.78rem;margin-bottom:.5rem}
  .product-footer{margin-top:0}
  .product-footer .btn{padding:6px 14px;font-size:.78rem}

  .stats__grid,.stats-grid{grid-template-columns:repeat(2,1fr);gap:.75rem}
  .stat-item{padding:1rem .5rem}
  .stat-item__number{font-size:1.75rem}
  .stat-item__label{font-size:.78rem}

  .a-propos__highlights{grid-template-columns:repeat(3,1fr);gap:.5rem}
  .a-propos__highlight{padding:.75rem .5rem}
  .a-propos__highlight strong{font-size:1.1rem}
  .a-propos__highlight span{font-size:.7rem}

  .newsletter__inner{padding:1.5rem 1rem}
  .newsletter__title{font-size:1.1rem}
  .newsletter__subtitle{font-size:.83rem}
  .newsletter__icon{font-size:2rem}

  .step-card__number{font-size:1.75rem}
  .step-card__icon{font-size:1.75rem;margin-bottom:.75rem}

  .temoignage-card__stars{font-size:1rem}
  .temoignage-card__text{font-size:.85rem}
  .temoignage-card__avatar{width:38px;height:38px;font-size:1rem}
  .temoignage-card__name{font-size:.88rem}
  .temoignage-card__location{font-size:.75rem}

  .floating-buttons,.floating-btns{bottom:1rem;right:1rem;gap:.6rem}
  .floating-btn,.float-btn{width:50px;height:50px}
  .floating-btn svg,.float-btn svg{width:22px;height:22px}

  .footer__logo-img{width:55px;height:55px}
  .footer__col-title{font-size:.8rem;margin-bottom:1rem}
  .footer__about-text{font-size:.8rem}
  .footer__horaire-row{font-size:.8rem}
  .footer__contact-item{font-size:.83rem}
  .footer__copyright{font-size:.75rem}
  .footer__legal-link{font-size:.75rem}

  .google-reviews-cta .btn{width:100%;justify-content:center}

  .btn--lg{padding:13px 20px;font-size:.95rem;width:100%;justify-content:center}
  .btn--sm{padding:7px 16px;font-size:.8rem}

  .page-hero,.products-hero,.blog-hero,.contact-hero,.about-hero{padding:90px .875rem 30px}
  .page-hero__title,.page-title{font-size:1.5rem}
  .page-hero__subtitle,.blog-hero-lead{font-size:.9rem}

  .cta-box,.unlisted-box{padding:1.5rem 1rem;border-radius:14px}
  .cta-box__title,.unlisted-box__title{font-size:1.2rem}
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-nav{
  display:none;
  position:fixed;bottom:0;left:0;right:0;z-index:1000;
  background:rgba(10,10,15,.97);backdrop-filter:blur(12px);
  border-top:1px solid rgba(255,255,255,.1);
  padding:6px 0 env(safe-area-inset-bottom,6px);
  justify-content:space-around;align-items:center
}
.mobile-nav__item{
  display:flex;flex-direction:column;align-items:center;gap:2px;
  color:rgba(255,255,255,.5);font-size:.65rem;font-weight:500;
  text-decoration:none;padding:6px 8px;transition:color .2s;
  min-width:0;flex:1;text-align:center
}
.mobile-nav__item svg{display:inline-block;flex-shrink:0}
.mobile-nav__item--active{color:var(--gold)}
.mobile-nav__item:hover{color:var(--gold)}
.mobile-nav__item--wa{
  color:#fff;position:relative
}
.mobile-nav__item--wa svg{
  background:var(--wa);border-radius:50%;padding:6px;
  width:36px;height:36px;margin-top:-14px;
  box-shadow:0 2px 12px rgba(37,211,102,.4)
}
.mobile-nav__item--wa span{color:var(--wa);font-weight:600;margin-top:2px}

@media(max-width:768px){
  .mobile-nav{display:flex}
  .floating-buttons,.floating-btns{display:none}
  body{padding-bottom:70px}
  .footer{padding-bottom:70px}
}

/* Scrollbar */
::-webkit-scrollbar{width:8px}
::-webkit-scrollbar-track{background:#0a0a0f}
::-webkit-scrollbar-thumb{background:rgba(255,255,255,.12);border-radius:4px}
::-webkit-scrollbar-thumb:hover{background:rgba(255,255,255,.2)}
::selection{background:var(--gold);color:#0a0a0f}
