  :root {
    --bg: #FFFFFF;
    --bg-alt: #F4F6F8;
    --surface: #FFFFFF;
    --border: #E2E8EC;
    --border-soft: #EEF2F6;
    --border-strong: #CBD5E1;

    --text: #2C3E50;
    --text-2: #5A6C7E;
    --muted: #8A9BAA;
    --faint: #B4C0CC;

    --primary: #4577C3;
    --primary-deep: #3F73B5;
    --primary-soft: #6B97D9;
    --primary-bg: #EAF1FB;

    --accent: #E8A33B;
    --accent-soft: #F0BC6A;
    --accent-bg: #FFF8E5;

    --success: #4E8C5F;
    --success-bg: #E8F2EA;
    --alert: #C84B4B;

    --footer-bg: #3F4A55;
    --footer-text: #C9D3DD;
    --footer-muted: #8A95A1;

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    --font-display: 'Jost', 'Futura', system-ui, sans-serif;
    --font-body: 'Open Sans', system-ui, sans-serif;
    --font-script: 'Allura', cursive;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { overflow-x: clip; }   /* évite le scroll horizontal (tiroir hors-écran) sans casser position: sticky */
  body {
    background: var(--bg); color: var(--text);
    font-family: var(--font-body); font-size: 16px; line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

  /* ===== TOP BAR ===== */
  .top-bar { background: var(--primary-deep); color: #fff; font-size: 13px; }
  .top-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
  .top-bar-contact { display: flex; align-items: center; gap: 24px; min-width: 0; }
  .top-bar-contact a { display: inline-flex; align-items: center; gap: 8px; color: #fff; opacity: .9; transition: opacity .15s; white-space: nowrap; }
  .top-bar-contact a:hover { opacity: 1; }
  .top-bar-contact svg { width: 15px; height: 15px; flex-shrink: 0; opacity: .85; }
  .top-bar-social { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
  .top-bar-social .follow { font-size: 12px; opacity: .72; letter-spacing: .02em; }
  .top-bar-social a { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.16); display: inline-grid; place-items: center; color: #fff; transition: background .15s, transform .15s; }
  .top-bar-social a:hover { background: rgba(255,255,255,.26); transform: translateY(-1px); }
  .top-bar-social svg { width: 14px; height: 14px; }

  /* ===== NAV ===== */
  .nav { background: white; border-bottom: 1px solid var(--border-soft); position: sticky; top: 0; z-index: 60; }
  .nav-inner { display: flex; align-items: center; gap: 24px; height: 88px; }
  .brand { display: flex; align-items: center; gap: 8px; }
  .brand-logo {
    width: 60px; height: 56px; position: relative;
    font-family: var(--font-display); font-weight: 800; font-size: 38px;
    letter-spacing: -0.05em; line-height: 1;
    display: flex; align-items: center;
  }
  .brand-logo .v { color: var(--primary-deep); }
  .brand-logo .d { color: var(--primary); }
  .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
  .brand-text .main { font-family: var(--font-display); font-weight: 700; font-size: 23px; color: var(--text); letter-spacing: -0.01em; }
  .brand-text .sub { font-family: var(--font-script); font-size: 16px; color: var(--text-2); margin-top: -2px; }
  .brand-img { height: 50px; width: auto; display: block; }
  .footer-brand .brand-img { height: 56px; }
  .footer-logo { filter: brightness(0) invert(1); }

  .nav-links { display: flex; gap: 26px; align-items: center; font-size: 14px; font-weight: 500; color: var(--text); margin-left: auto; }
  .nav-links a { transition: color .15s; padding: 6px 0; }
  .nav-links a:hover { color: var(--primary); }
  .nav-links a.active { color: var(--primary); border-bottom: 2px solid var(--primary); padding-bottom: 4px; }
  .nav-links a.cta {
    background: var(--primary); color: white; padding: 11px 22px; border-radius: var(--radius-pill);
    text-transform: uppercase; font-weight: 600; font-size: 12.5px; letter-spacing: 0.06em;
  }
  .nav-links a.cta:hover { background: var(--primary-deep); color: white; }

  .nav-cart {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--border); padding: 9px 16px; border-radius: var(--radius-pill);
    font-size: 13px; font-weight: 600; color: var(--text); position: relative;
    background: var(--surface); cursor: pointer; font-family: var(--font-body);
    transition: border-color .15s;
  }
  .nav-cart:hover { border-color: var(--primary-soft); }
  .nav-cart svg { width: 17px; height: 17px; }
  .nav-cart .badge {
    background: var(--accent); color: white; border-radius: 50%; width: 20px; height: 20px;
    display: grid; place-items: center; font-size: 11px; font-weight: 700;
  }

  .nav-actions { display: flex; align-items: center; gap: 12px; }
  .nav-burger { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; border-radius: var(--radius-sm); flex-direction: column; align-items: center; justify-content: center; gap: 5px; transition: background .15s; }
  .nav-burger:hover { background: var(--bg-alt); }
  .nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ===== HERO ===== */
  .hero {
    position: relative; min-height: 560px;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%),
      url('images/hero.jpg');
    background-size: cover; background-position: center;
    color: white; display: flex; align-items: center; overflow: hidden;
  }
  .hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; padding: 80px 0; }
  .hero h1 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(40px, 5.4vw, 68px); line-height: 1.05; letter-spacing: -0.02em;
    margin: 0 0 18px;
  }
  .hero h1 .script {
    font-family: var(--font-script); font-weight: 400; color: #F8E5BD;
    font-size: clamp(48px, 6vw, 78px); display: block;
    margin-top: -8px; letter-spacing: 0;
  }
  .hero-sub {
    font-size: 18px; color: rgba(255,255,255,0.92); max-width: 560px;
    margin-bottom: 32px; line-height: 1.55;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-pill);
    font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em;
    transition: transform .15s, background .15s, color .15s;
    cursor: pointer; border: 0; font-family: var(--font-body);
  }
  .btn-primary { background: white; color: var(--primary-deep); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
  .btn-primary:hover { transform: translateY(-2px); background: #FAFCFE; }
  .btn-ghost { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
  .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }
  .btn-solid { background: var(--primary); color: white; }
  .btn-solid:hover { background: var(--primary-deep); transform: translateY(-2px); }
  .btn:disabled, .btn[disabled] { opacity: .5; cursor: not-allowed; box-shadow: none; }
  .btn:disabled:hover { transform: none; }
  .btn-solid:disabled:hover { background: var(--primary); transform: none; }
  .btn-primary:disabled:hover { background: white; transform: none; }

  .hero-features { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.2); }
  .hero-feat { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.95); font-weight: 500; }
  .hero-feat .ic { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.15); display: grid; place-items: center; font-size: 16px; }

  /* Hero featured product cards */
  .hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-card {
    background: rgba(255,255,255,0.95); color: var(--text);
    border-radius: var(--radius); overflow: hidden;
    backdrop-filter: blur(10px); padding: 0;
    cursor: pointer; transition: transform .15s, box-shadow .15s;
  }
  .hero-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.22); }
  .hero-card:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
  .hero-card.big { grid-column: 1 / -1; }
  .hero-card-img { aspect-ratio: 16/9; overflow: hidden; }
  .hero-card.big .hero-card-img { aspect-ratio: 21/9; }
  .hero-card-img img { width: 100%; height: 100%; object-fit: cover; }
  .hero-card-body { padding: 14px 16px; }
  .hero-card .title { font-weight: 700; font-size: 13.5px; margin: 0; line-height: 1.3; }
  .hero-card .meta { color: var(--muted); font-size: 11.5px; margin-top: 2px; }
  .hero-card .price { color: var(--primary-deep); font-weight: 700; font-size: 17px; margin-top: 6px; font-family: var(--font-display); }

  /* ===== PROMISES STRIP ===== */
  .promise-strip { background: var(--bg-alt); padding: 24px 0; border-bottom: 1px solid var(--border-soft); }
  .promise-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; }
  .promise { display: flex; align-items: center; gap: 12px; }
  .promise .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-bg); color: var(--primary-deep); display: grid; place-items: center; font-size: 22px; flex-shrink: 0; }
  .promise .text { font-size: 13px; }
  .promise .text b { display: block; font-weight: 700; color: var(--text); font-size: 14px; margin-bottom: 2px; }
  .promise .text span { color: var(--text-2); }

  /* ===== SECTION SHELL ===== */
  section.block { padding: 80px 0; }
  .section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
  .section-head .eyebrow { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--primary); margin-bottom: 16px; }
  h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 16px; color: var(--text); }
  h2 .script { font-family: var(--font-script); font-weight: 400; color: var(--primary); font-size: 1.15em; }
  .section-sub { font-size: 17px; color: var(--text-2); max-width: 640px; margin: 0 auto; }

  /* ===== CATEGORIES — real photos ===== */
  .cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .cat-card {
    position: relative; min-height: 280px; border-radius: var(--radius);
    overflow: hidden; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white;
    transition: transform .25s;
  }
  .cat-card:hover { transform: translateY(-3px); }
  .cat-card::before {
    content: ''; position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform .4s;
  }
  .cat-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%); }
  .cat-card:hover::before { transform: scale(1.05); }
  .cat-card.gravels::before { background-image: url('images/galets-blancs.jpg'); }
  .cat-card.paillage::before { background-image: url('images/pouzzolane.jpg'); }
  .cat-card.fond::before { background-image: url('images/hero.jpg'); }
  .cat-card.materiaux::before { background-image: url('images/marbre-blanc.jpg'); }
  .cat-card .body { position: relative; z-index: 2; padding: 32px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .cat-card h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2.6vw, 34px); margin: 0; letter-spacing: -0.01em; }
  .cat-card .count { font-size: 13px; opacity: 0.9; max-width: 360px; }
  .cat-card .discover {
    background: white; color: var(--primary-deep);
    padding: 11px 24px; border-radius: var(--radius-pill);
    font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
    margin-top: 6px; transition: background .15s, color .15s;
  }
  .cat-card:hover .discover { background: var(--primary); color: white; }

  /* ===== FILTER BAR ===== */
  .filter-bar { background: var(--bg-alt); padding: 18px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
  .filter-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
  .filter-pills { display: flex; gap: 10px; flex-wrap: wrap; }
  .filter-pill { padding: 8px 16px; border: 1px solid var(--border); background: white; border-radius: var(--radius-pill); font-size: 13px; font-weight: 500; color: var(--text-2); cursor: pointer; transition: all .15s; font-family: var(--font-body); line-height: 1.3; }
  .filter-pill .pill-count { opacity: .65; font-weight: 400; }
  .products-empty { text-align: center; color: var(--text-2); font-size: 15px; padding: 56px 0 8px; }
  .filter-pill:hover { border-color: var(--primary); color: var(--primary); }
  .filter-pill.active { background: var(--primary); border-color: var(--primary); color: white; }
  .filter-sort { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); }
  .filter-sort select { padding: 7px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: white; font-size: 13px; color: var(--text); font-family: var(--font-body); }

  /* ===== PRODUCT GRID — local images ===== */
  .products-section { background: white; padding: 64px 0 96px; }
  .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .product {
    background: white; border: 1px solid var(--border-soft);
    border-radius: var(--radius); overflow: hidden;
    transition: transform .15s, box-shadow .15s, border-color .15s;
    cursor: pointer; display: flex; flex-direction: column;
  }
  .product:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(63,115,181,0.08); border-color: var(--primary-soft); }
  .product-img { aspect-ratio: 4/3; position: relative; overflow: hidden; background: var(--bg-alt); }
  .product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
  .product:hover .product-img img { transform: scale(1.05); }
  .product-badge {
    position: absolute; top: 10px; left: 10px;
    padding: 4px 10px; border-radius: var(--radius-pill);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    z-index: 2;
  }
  .product-badge.bestseller { background: var(--accent); color: white; }
  .product-badge.new { background: var(--success); color: white; }
  .product-badge.vrac { background: var(--primary); color: white; }
  .product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
  .product .cat { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
  .product h3 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1.3; color: var(--text); }
  .product .desc { font-size: 13px; color: var(--text-2); line-height: 1.5; flex: 1; }
  .product-options {
    font-size: 11px; color: var(--muted); margin-top: 2px;
    padding: 5px 8px; background: var(--bg-alt); border-radius: 4px;
    display: inline-block; align-self: flex-start;
  }
  .product-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; margin-top: 4px; border-top: 1px solid var(--border-soft); }
  .product .price { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--primary-deep); }
  .product .price .unit { font-family: var(--font-body); font-weight: 400; font-size: 12px; color: var(--muted); margin-left: 2px; }
  .product .add-btn { background: var(--primary); color: white; border: 0; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 18px; cursor: pointer; transition: background .15s, transform .15s; }
  .product .add-btn:hover { background: var(--primary-deep); transform: scale(1.05); }

  /* ===== HOW ===== */
  .how { background: var(--primary-deep); color: white; padding: 80px 0; position: relative; overflow: hidden; }
  .how .section-head { color: white; position: relative; }
  .how h2 { color: white; }
  .how h2 .script { color: #F8E5BD; }
  .how .section-sub { color: rgba(255,255,255,0.85); }
  .how-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .how-step { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 14px; backdrop-filter: blur(8px); }
  .how-step .num { font-family: var(--font-display); font-weight: 800; font-size: 48px; line-height: 1; color: rgba(255,255,255,0.4); letter-spacing: -0.04em; }
  .how-step h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0; color: white; }
  .how-step p { color: rgba(255,255,255,0.85); margin: 0; font-size: 14.5px; line-height: 1.55; }

  /* ===== DELIVERY ===== */
  .delivery { background: var(--bg-alt); padding: 80px 0; }
  .delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .delivery h2 { margin-bottom: 20px; }
  .delivery p { color: var(--text-2); font-size: 16px; line-height: 1.65; }
  .delivery ul { list-style: none; padding: 0; margin: 24px 0; }
  .delivery ul li { padding: 10px 0; border-bottom: 1px solid var(--border-soft); display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); }
  .delivery ul li .zone-pin { font-size: 18px; color: var(--primary); }
  .delivery ul li .price { margin-left: auto; font-weight: 700; color: var(--primary-deep); font-family: var(--font-display); font-size: 14px; }
  .delivery ul li.free .price { color: var(--success); }
  .delivery-map { aspect-ratio: 1/1; background: white; border-radius: var(--radius); padding: 30px; border: 1px solid var(--border); position: relative; background-image: radial-gradient(circle at center, rgba(69,119,195,0.08) 0%, transparent 60%); }
  .delivery-map .center-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 24px; height: 24px; border-radius: 50%; background: var(--primary); border: 3px solid white; box-shadow: 0 0 0 4px var(--primary), 0 4px 12px rgba(63,115,181,0.4); z-index: 3; }
  .delivery-map .ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 2px dashed var(--primary-soft); border-radius: 50%; opacity: 0.5; }
  .delivery-map .ring.r1 { width: 35%; height: 35%; opacity: 0.7; }
  .delivery-map .ring.r2 { width: 60%; height: 60%; opacity: 0.5; }
  .delivery-map .ring.r3 { width: 85%; height: 85%; opacity: 0.3; }
  .delivery-map .pin { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 2px solid white; }
  .delivery-map .pin.p1 { top: 25%; left: 30%; }
  .delivery-map .pin.p2 { top: 35%; right: 22%; }
  .delivery-map .pin.p3 { bottom: 30%; left: 22%; }
  .delivery-map .pin.p4 { bottom: 22%; right: 30%; }
  .delivery-map .pin.p5 { top: 18%; right: 38%; }
  .delivery-map .city-label { position: absolute; font-size: 11px; font-weight: 600; color: var(--text-2); background: white; padding: 3px 8px; border-radius: var(--radius-sm); border: 1px solid var(--border-soft); white-space: nowrap; }
  .delivery-map .city-label.center { top: 52%; left: 50%; transform: translateX(-50%); color: var(--primary-deep); font-weight: 700; }
  .delivery-map .city-label.l1 { top: 17%; left: 22%; }
  .delivery-map .city-label.l2 { top: 27%; right: 14%; }
  .delivery-map .city-label.l3 { bottom: 22%; left: 14%; }
  .delivery-map .city-label.l4 { bottom: 14%; right: 22%; }

  /* ===== WHY US ===== */
  .why-us { padding: 80px 0; }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .why-card { background: white; border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 14px; }
  .why-card .ic { width: 56px; height: 56px; border-radius: 50%; background: var(--primary-bg); color: var(--primary-deep); display: grid; place-items: center; font-size: 26px; }
  .why-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 0; }
  .why-card p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; margin: 0; }

  /* ===== FAQ ===== */
  .faq { background: var(--bg-alt); padding: 80px 0; }
  .faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
  .faq-item { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 28px; }
  .faq-item summary { cursor: pointer; font-weight: 600; font-size: 16px; color: var(--text); display: flex; align-items: center; justify-content: space-between; list-style: none; font-family: var(--font-display); }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: '+'; color: var(--primary); font-size: 22px; font-weight: 400; }
  .faq-item[open] summary::after { content: '–'; }
  .faq-item p { color: var(--text-2); font-size: 15px; line-height: 1.65; margin: 14px 0 0; }

  /* ===== FINAL CTA ===== */
  .final-cta { background: var(--primary); color: white; padding: 88px 0; position: relative; overflow: hidden; }
  .final-cta-inner { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
  .final-cta h2 { color: white; font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
  .final-cta h2 .script { color: #F8E5BD; }
  .final-cta p { color: rgba(255,255,255,0.92); font-size: 18px; margin: 0 0 32px; }
  .final-cta .btn-primary { background: white; color: var(--primary-deep); }

  /* ===== FOOTER ===== */
  footer { background: var(--footer-bg); color: var(--footer-text); padding: 64px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-brand .brand-logo { color: white; }
  .footer-brand .brand-logo .v { color: white; }
  .footer-brand .brand-logo .d { color: var(--primary-soft); }
  .footer-brand .brand-text .main { color: white; }
  .footer-brand .brand-text .sub { color: var(--footer-text); }
  .footer-brand p { font-size: 13.5px; color: var(--footer-text); margin: 14px 0 0; line-height: 1.6; max-width: 280px; }
  .footer-col h5 { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: white; margin: 0 0 16px; letter-spacing: 0.02em; }
  .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
  .footer-col a { color: var(--footer-text); font-size: 13.5px; }
  .footer-col a:hover { color: white; }
  .footer-contact-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: white; margin-bottom: 14px; }
  .footer-contact-row .ic { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1); display: grid; place-items: center; flex-shrink: 0; }
  .footer-contact .cta { display: inline-flex; align-items: center; padding: 11px 24px; border-radius: var(--radius-pill); background: var(--primary); color: white; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }
  .footer-contact .cta:hover { background: var(--primary-soft); }
  .footer-bottom { padding-top: 24px; text-align: center; font-size: 13px; color: var(--footer-muted); }
  .footer-bottom .legal { margin-top: 8px; opacity: 0.7; }
  .footer-support { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; padding: 30px 0 4px; }
  .footer-support img { width: 62px; height: auto; border-radius: 8px; background: #fff; padding: 6px; box-sizing: border-box; flex-shrink: 0; }
  .footer-support span { font-size: 13.5px; font-weight: 600; color: var(--footer-text); }

  /* ===== CART DRAWER (panier local) ===== */
  .cart-overlay { position: fixed; inset: 0; background: rgba(20,30,40,0.45); z-index: 90; opacity: 0; transition: opacity .25s; }
  .cart-overlay.open { opacity: 1; }
  .cart-drawer {
    position: fixed; top: 0; right: 0; height: 100%; width: 392px; max-width: 90vw;
    background: var(--surface); z-index: 100; display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform .3s ease; box-shadow: -12px 0 44px rgba(0,0,0,0.18);
  }
  .cart-drawer.open { transform: translateX(0); }
  .cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--border-soft); }
  .cart-drawer-head h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0; display: flex; align-items: baseline; gap: 8px; color: var(--text); }
  .cart-drawer-head .cart-count { font-family: var(--font-body); font-weight: 500; font-size: 13px; color: var(--muted); }
  .cart-close { background: none; border: 0; font-size: 28px; line-height: 1; color: var(--text-2); cursor: pointer; padding: 0; width: 34px; height: 34px; border-radius: 50%; transition: background .15s; }
  .cart-close:hover { background: var(--bg-alt); color: var(--text); }
  .cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; display: flex; flex-direction: column; }
  .cart-item { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border-soft); flex-shrink: 0; }
  .cart-item img { width: 58px; height: 58px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
  .cart-item-info { flex: 1; min-width: 0; }
  .cart-item-name { font-weight: 600; font-size: 14px; margin: 0; color: var(--text); line-height: 1.3; }
  .cart-item-meta { font-size: 12px; color: var(--muted); margin: 4px 0 0; }
  .cart-item-price { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--primary-deep); white-space: nowrap; }
  .cart-foot { padding: 20px 24px; border-top: 1px solid var(--border-soft); background: var(--bg-alt); }
  .cart-subtotal { display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 15px; color: var(--text); }
  .cart-subtotal-val { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--primary-deep); }
  .cart-note { font-size: 12px; color: var(--text-2); margin: 10px 0 16px; line-height: 1.5; }
  .cart-checkout { width: 100%; justify-content: center; }
  .cart-continue { width: 100%; margin-top: 10px; background: none; border: 0; color: var(--text-2); font-size: 13px; font-weight: 600; cursor: pointer; padding: 8px; font-family: var(--font-body); }
  .cart-continue:hover { color: var(--primary); }
  /* lignes panier : sélecteur de quantité en pilule (style Kyoto / Uber Eats) */
  .cart-item { align-items: flex-start; }
  .cart-item img { align-self: center; }
  .qty-pill { display: inline-flex; align-items: center; background: var(--bg-alt); border-radius: var(--radius-pill); padding: 3px; margin-top: 10px; }
  .qty-pill .qty-btn { width: 32px; height: 32px; border: 0; background: none; border-radius: 50%; cursor: pointer; display: grid; place-items: center; color: var(--text); padding: 0; transition: background .15s, color .15s, transform .1s; }
  .qty-pill .qty-btn:hover { background: rgba(44,62,80,.08); }
  .qty-pill .qty-btn:active { transform: scale(.9); }
  .qty-pill .qty-btn svg { width: 17px; height: 17px; }
  .qty-pill .qty-btn.is-trash { color: var(--alert); }
  .qty-pill .qty-btn.is-trash:hover { background: rgba(200,75,75,.1); }
  .qty-pill .qty-n { min-width: 30px; text-align: center; font-weight: 700; font-size: 14px; color: var(--text); }
  @media (max-width: 720px) {
    .qty-pill .qty-btn { width: 38px; height: 38px; }
    .qty-pill .qty-btn svg { width: 19px; height: 19px; }
    .qty-pill .qty-n { min-width: 34px; font-size: 15px; }
  }
  .cart-empty { margin: auto; text-align: center; padding: 24px; color: var(--text-2); }
  .cart-empty-ic { font-size: 40px; opacity: .35; margin-bottom: 10px; }
  .cart-empty p { margin: 0; font-size: 14.5px; }
  .co-empty { text-align: center; padding: 20px 8px; }
  .co-empty p { color: var(--text-2); margin: 0 0 16px; font-size: 14px; }
  /* animations badge + bouton ajouter */
  @keyframes badgePop { 0% { transform: scale(1); } 40% { transform: scale(1.45); } 100% { transform: scale(1); } }
  .badge-pop { animation: badgePop .32s ease; }
  @keyframes addPop { 0% { transform: scale(1); } 35% { transform: scale(0.8); background: var(--success); } 100% { transform: scale(1); } }
  .add-btn.added { animation: addPop .4s ease; }
  /* toast « ajouté au panier » */
  .vd-toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(18px); background: var(--text); color: #fff; padding: 12px 20px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; box-shadow: 0 12px 34px rgba(0,0,0,.22); display: flex; align-items: center; gap: 9px; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; z-index: 80; max-width: calc(100vw - 32px); }
  .vd-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
  .vd-toast-ic { background: var(--success); width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; flex-shrink: 0; }

  /* ===== FICHE PRODUIT (modal) ===== */
  .pm-overlay { position: fixed; inset: 0; background: rgba(20,30,40,0.55); z-index: 110; opacity: 0; transition: opacity .25s; }
  .pm-overlay.open { opacity: 1; }
  .pm {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%) scale(.98);
    width: 860px; max-width: calc(100vw - 32px); max-height: calc(100vh - 48px);
    background: var(--surface); border-radius: var(--radius-lg); z-index: 120;
    display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.32);
    opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  }
  .pm.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
  .pm-close {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    background: rgba(255,255,255,0.92); border: 0; width: 36px; height: 36px; border-radius: 50%;
    font-size: 26px; line-height: 1; color: var(--text-2); cursor: pointer;
    display: grid; place-items: center; transition: background .15s, color .15s;
    box-shadow: 0 2px 8px rgba(0,0,0,.14);
  }
  .pm-close:hover { background: #fff; color: var(--text); }
  .pm-media { position: relative; background: var(--bg-alt); }
  .pm-media img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
  .pm-badge {
    position: absolute; top: 14px; left: 14px;
    padding: 4px 10px; border-radius: var(--radius-pill); color: #fff;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  }
  .pm-badge.bestseller { background: var(--accent); }
  .pm-badge.new { background: var(--success); }
  .pm-badge.vrac { background: var(--primary); }
  .pm-body { padding: 34px 30px; display: flex; flex-direction: column; gap: 12px; min-height: 0; overflow-y: auto; }
  .pm-cat { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
  .pm-title { font-family: var(--font-display); font-weight: 700; font-size: 25px; line-height: 1.25; margin: 0; color: var(--text); }
  .pm-price { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--primary-deep); }
  .pm-price .pm-unit { font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--muted); margin-left: 6px; }
  .pm-desc { font-size: 14.5px; color: var(--text-2); line-height: 1.6; margin: 0; }
  .pm-options { font-size: 12px; color: var(--muted); padding: 6px 10px; background: var(--bg-alt); border-radius: var(--radius-sm); align-self: flex-start; }
  .pm-actions { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 20px; }
  .pm-qty { margin-top: 0; }
  .pm-add { flex: 1; justify-content: center; }
  @media (max-width: 720px) {
    .pm { grid-template-columns: 1fr; top: auto; left: 0; right: 0; bottom: 0;
          width: 100%; max-width: 100%; max-height: 92vh; transform: translateY(100%);
          border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .pm.open { transform: translateY(0); }
    .pm-media img { min-height: 0; max-height: 32vh; }
    .pm-body { padding: 22px 20px; }
    .pm-title { font-size: 22px; }
  }

  /* ===== RESPONSIVE ===== */
  /* Menu mobile (hamburger) */
  @media (max-width: 980px) {
    .nav-inner { height: 76px; }
    .nav-burger { display: flex; }
    .nav-links {
      position: absolute; top: 100%; left: 0; right: 0; margin: 0;
      flex-direction: column; align-items: stretch; gap: 0;
      background: #fff; border-top: 1px solid var(--border-soft);
      box-shadow: 0 16px 30px rgba(0,0,0,.1); padding: 8px 0; display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 14px 28px; font-size: 15px; }
    .nav-links a:hover { background: var(--bg-alt); }
    .nav-links a.active { border-bottom: 0; background: var(--primary-bg); }
    .nav-links a.cta { margin: 12px 28px 6px; text-align: center; }
    .brand-img { height: 44px; }
  }
  @media (max-width: 1080px) {
    .hero-grid, .delivery-grid { grid-template-columns: 1fr; gap: 48px; }
    .cat-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .promise-row, .how-steps, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 720px) {
    section.block { padding: 56px 0; }
    .container { padding: 0 22px; }
    .cat-grid, .products-grid, .promise-row, .how-steps, .why-grid, .footer-grid { grid-template-columns: 1fr; }
    .filter-pills { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  }
  /* Top bar compacte sur petit écran : on garde téléphone + réseaux */
  @media (max-width: 620px) {
    .top-bar-contact .mail { display: none; }
    .top-bar-social .follow { display: none; }
    .top-bar-inner { min-height: 40px; }
  }

/* ===== CHECKOUT (page /checkout) ===== */
.checkout { padding: 44px 0 80px; background: var(--bg-alt); }
.checkout-head { margin-bottom: 26px; }
.checkout-head .back { font-size: 13px; color: var(--text-2); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.checkout-head .back:hover { color: var(--primary); }
.checkout-head h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.4vw, 38px); margin: 0; color: var(--text); letter-spacing: -0.01em; }
.checkout-steps { display: flex; gap: 8px; align-items: center; margin-top: 14px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.checkout-steps .on { color: var(--primary-deep); font-weight: 700; }
.checkout-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 30px; align-items: start; }
.checkout-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 26px 28px; margin-bottom: 20px; }
.checkout-card h2 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 0 0 20px; display: flex; align-items: center; gap: 10px; color: var(--text); }
.checkout-card h2 .step-n { width: 27px; height: 27px; border-radius: 50%; background: var(--primary-bg); color: var(--primary-deep); display: grid; place-items: center; font-size: 13px; font-family: var(--font-body); flex-shrink: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row:last-child { margin-bottom: 0; }
.form-row.full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--text-2); }
.field input, .field select { padding: 11px 13px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-body); color: var(--text); background: white; width: 100%; }
.field input:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-bg); }
.field-error { display: none; color: var(--alert); font-size: 12px; font-weight: 600; margin-top: 1px; }
.field.invalid input { border-color: var(--alert); background: #FEF6F6; }
.field.invalid input:focus { box-shadow: 0 0 0 3px rgba(200, 75, 75, .15); }
.field.invalid .field-error { display: block; }
.pay-on-delivery { display: flex; align-items: flex-start; gap: 9px; margin: 18px 0 0; padding: 12px 14px; background: var(--success-bg); border: 1px solid #CFE3D4; border-radius: var(--radius-sm); font-size: 13px; color: var(--text-2); line-height: 1.5; }
.pay-on-delivery b { color: var(--text); }
.pay-methods { display: flex; flex-direction: column; gap: 10px; }
.pay-method { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 15px; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--text); transition: border-color .15s, background .15s; }
.pay-method:hover { border-color: var(--primary-soft); }
.pay-method input { accent-color: var(--primary); margin: 0; }
.pay-method.sel { border-color: var(--primary); background: var(--primary-bg); }
.pay-method .pm-ic { margin-left: auto; font-size: 17px; }
.card-fields { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--border); }
.checkout-summary { position: sticky; top: 24px; background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 24px; }
.checkout-summary h2 { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin: 0 0 16px; color: var(--text); }
.sum-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
.sum-item img { width: 52px; height: 52px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.sum-item .n { flex: 1; font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.3; }
.sum-item .n small { display: block; color: var(--muted); font-weight: 400; font-size: 12px; margin-top: 3px; }
.sum-item .p { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--primary-deep); white-space: nowrap; }
.sum-lines { padding: 14px 0 4px; }
.sum-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-2); padding: 6px 0; }
.sum-line .free { color: var(--success); font-weight: 600; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; margin-top: 8px; border-top: 1px solid var(--border); }
.sum-total .lbl { font-weight: 700; font-size: 15px; color: var(--text); }
.sum-total .val { font-family: var(--font-display); font-weight: 800; font-size: 25px; color: var(--primary-deep); }
.pay-btn { width: 100%; justify-content: center; margin-top: 18px; }
.checkout-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; display: flex; align-items: center; justify-content: center; gap: 6px; }
.mock-banner { background: var(--accent-bg); border: 1px solid var(--accent-soft); color: #8a5a12; border-radius: var(--radius-sm); padding: 11px 15px; font-size: 12.5px; margin-bottom: 22px; display: flex; align-items: center; gap: 9px; line-height: 1.5; }
.order-success { display: none; background: var(--success-bg); border: 1px solid var(--success); border-radius: var(--radius); padding: 26px 28px; text-align: center; margin-bottom: 22px; }
.order-success.show { display: block; }
.order-success .ok { width: 52px; height: 52px; border-radius: 50%; background: var(--success); color: white; display: grid; place-items: center; font-size: 26px; margin: 0 auto 12px; }
.order-success h3 { font-family: var(--font-display); margin: 0 0 6px; color: var(--success); font-size: 21px; }
.order-success p { margin: 0; font-size: 14px; color: var(--text-2); line-height: 1.6; }
@media (max-width: 860px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}
@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
}
