    /* ══════════════════════════════════════════
       DESIGN TOKENS — modifier ici pour changer toute la DA
    ══════════════════════════════════════════ */
    :root {
      /* Couleurs — DA v2 (miel vif = couleur n°1, cf. DESIGN-SYSTEM-PROPOSAL.html) */
      --bg:            #F2EDE6;
      --bg-card:       #FEFAF6;
      --bg-dark:       #1C1812;
      --text:          #1C1812;
      --text-muted:    #9C9488;   /* éclairci + plus neutre — était #8A7F72 */
      --accent:        #E8A317;   /* MIEL — jaune vif, couleur de marque n°1, à utiliser en premier
                                      (titres forts, fonds clair/vert/sombre/noir) — était #C9A96E */
      --accent-warm:   #E8C898;   /* miel clair — inchangé */
      --accent-deep:   #8F6310;   /* miel concentré — déclinaison sombre, réservée aux cas de
                                      contraste difficile (texte fin sur fond très clair) */
      --honey-wash:    #F4E9D2;   /* nappe miel — fond doux catégorie miel (boutique) */
      --border:        #DDD5C8;
      --ink-soft:      rgba(28, 24, 18, 0.5);   /* pointillés décor — noir typo grisé */
      --ink-90:        rgba(28, 24, 18, 0.9);   /* illustrations décor — noir 90% */

      /* Montagne (sapin) — aussi présente que le miel, jamais un simple accent secondaire */
      --pine:          #4A6A30;
      --pine-light:    #8FA876;
      --pine-wash:     #E9EFE2;
      --pine-deep:     #243818;   /* alternative de bande sombre, fort contraste */

      /* Terracotta — réservé au vin + notes ponctuelles fun, jamais dominant */
      --terracotta:       #C9744A;
      --terracotta-light: #E3AD8E;
      --terracotta-deep:  #8C4A2E;

      /* Texte sur fond sombre (cf. DESIGN-SYSTEM-PROPOSAL.html §2) */
      --text-on-dark:       #F8F3EA;
      --text-on-dark-muted: rgba(248, 243, 234, 0.68);

      /* Dégradés doux — jamais sur du texte, jamais plus de 2 couleurs */
      --gradient-soft: linear-gradient(160deg, #F2EDE6 0%, #E9EFE2 100%); /* crème → nappe sapin */
      --gradient-card: linear-gradient(135deg, var(--honey-wash) 0%, var(--pine-wash) 100%); /* nappe miel → nappe sapin */

      /* Typographie — grotesque sans-serif pour les titres, sans pour le corps */
      --font-display:  'Schibsted Grotesk', system-ui, sans-serif;
      --font-body:     'Plus Jakarta Sans', system-ui, sans-serif;

      /* Rayons */
      --r-sm:    8px;
      --r-md:    16px;
      --r-lg:    28px;
      --r-pill:  999px;

      /* Easing */
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

      /* Chanfreins — remplace border-radius arrondi partout */
      --chamfer-btn:    8px;
      --chamfer-btn-in: 6.5px;  /* contour interne : chanfrein - 1.5px (épaisseur bordure) */
      --chamfer-card:   14px;
      --chamfer-lg:     20px;

      /* Marge horizontale standard (desktop) pour tout texte/contenu ferré gauche/droite —
         référence = écart bord de page ↔ panneau hero une fois dézoomé à 90%. Ne pas
         dévier de cette valeur section par section : c'est ce qui garantit l'alignement
         visuel constant des marges sur tout le site. */
      --edge-x: 6.25rem; /* 100px */
    }

    /* ══════════════════════════════════════════
       RESET
    ══════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; scroll-behavior: auto; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-weight: 400;
      line-height: 1.5;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ══════════════════════════════════════════
       BUTTONS
    ══════════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 1rem;
      border-radius: 0;
      clip-path: polygon(
        var(--chamfer-btn) 0%,
        calc(100% - var(--chamfer-btn)) 0%,
        100% var(--chamfer-btn),
        100% calc(100% - var(--chamfer-btn)),
        calc(100% - var(--chamfer-btn)) 100%,
        var(--chamfer-btn) 100%,
        0% calc(100% - var(--chamfer-btn)),
        0% var(--chamfer-btn)
      );
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s;
      border: none;
      position: relative;
      isolation: isolate;
    }
    .btn:hover { transform: translateY(-1px); }

    /* Contour chanfreiné : le contour suit le chanfrein (fond = couleur bordure,
       ::before inset chanfreiné = couleur de face) — sinon le clip-path coupe la bordure */
    .btn--ghost,
    .btn--outline {
      color: var(--text);
    }
    .btn--ghost::before,
    .btn--outline::before {
      content: '';
      position: absolute;
      inset: 1.5px;
      z-index: -1;
      clip-path: polygon(
        var(--chamfer-btn-in) 0%,
        calc(100% - var(--chamfer-btn-in)) 0%,
        100% var(--chamfer-btn-in),
        100% calc(100% - var(--chamfer-btn-in)),
        calc(100% - var(--chamfer-btn-in)) 100%,
        var(--chamfer-btn-in) 100%,
        0% calc(100% - var(--chamfer-btn-in)),
        0% var(--chamfer-btn-in)
      );
      transition: background 0.2s;
    }

    .btn--primary {
      background: var(--text);
      color: var(--bg);
    }
    .btn--primary:hover { background: #2d2820; }

    .btn--ghost           { background: var(--text); }         /* contour noir — "Se connecter" nav */
    .btn--ghost::before   { background: var(--bg); }           /* face */
    .btn--ghost:hover         { background: var(--accent); }   /* remplissage plein jaune au survol */
    .btn--ghost:hover::before { background: var(--accent); }

    .btn--accent {
      background: var(--accent);
      color: var(--bg-dark);
    }

    /* Variantes "sur fond sombre/vert" (bandes hive-dark, pine, pine-deep) —
       cf. DESIGN-SYSTEM-PROPOSAL.html §4. Pas encore utilisées sur le site (aucune
       section bouton n'est sur fond sombre actuellement), prêtes pour la suite. */
    .btn--primary-dark { background: var(--text-on-dark); color: var(--text); }
    .btn--accent:hover { background: var(--accent-warm); }

    /* ══════════════════════════════════════════
       NAVIGATION
    ══════════════════════════════════════════ */
    /* Toujours opaque (retour client : pas de nav translucide/adaptative —
       trop de grisaille sur les sections sombres/vertes, le blanc plein est plus net). */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0.6rem var(--edge-x);
      display: flex;
      align-items: center;
      background: var(--bg-card);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s;
    }
    .nav.scrolled { border-color: var(--border); }

    .nav__logo {
      display: inline-flex;
      align-items: center;
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .nav__logo img { height: 40px; width: auto; display: block; }

    .nav__links {
      display: flex;
      gap: 2rem;
      margin-left: auto;     /* pousse les liens (et les CTA) à droite, logo à gauche */
      margin-right: 2rem;
    }
    .nav__links a {
      font-size: 0.875rem;
      color: var(--text);
      transition: color 0.2s;
    }
    .nav__links a:hover { color: var(--accent); }

    .nav__ctas { display: flex; gap: 0.625rem; align-items: center; }

    /* Panier nav */
    .nav__cart {
      position: relative;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--bg-card);
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
    }
    .nav__cart:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
    .nav__cart-count {
      position: absolute;
      top: -4px;
      right: -4px;
      min-width: 18px;
      height: 18px;
      padding: 0 4px;
      border-radius: var(--r-pill);
      background: var(--accent);
      color: var(--bg-dark);
      font-size: 0.6875rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: scale(0);
      transition: transform 0.25s var(--ease-out);
    }
    .nav__cart-count.is-visible { transform: scale(1); }

    /* ══════════════════════════════════════════
       TIROIR PANIER
    ══════════════════════════════════════════ */
    .cart-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(28, 24, 18, 0.42);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s var(--ease-out);
    }
    .cart-overlay.is-open { opacity: 1; pointer-events: auto; }

    .cart-drawer {
      position: fixed;
      top: 0; right: 0; bottom: 0;
      z-index: 201;
      width: 420px;
      max-width: 100%;
      background: var(--bg-card);
      transform: translateX(100%);
      transition: transform 0.42s var(--ease-out);
      display: flex;
      flex-direction: column;
      box-shadow: -30px 0 60px -30px rgba(28, 24, 18, 0.3);
    }
    .cart-drawer.is-open { transform: translateX(0); }

    .cart-drawer__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem;
      border-bottom: 1px solid var(--border);
    }
    .cart-drawer__title {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
    }
    .cart-drawer__title span { color: var(--text-muted); font-weight: 400; }
    .cart-close {
      width: 36px; height: 36px;
      border: none;
      background: transparent;
      color: var(--text);
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      border-radius: 50%;
      transition: background 0.2s;
    }
    .cart-close:hover { background: var(--bg); }

    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 0.5rem 1.5rem;
    }

    .cart-item {
      display: flex;
      gap: 1rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--border);
    }
    .cart-item__thumb {
      width: 64px; height: 64px;
      flex-shrink: 0;
      border-radius: var(--r-sm);
      background: linear-gradient(135deg, var(--accent-warm), var(--accent));
    }
    .cart-item__info { flex: 1; min-width: 0; }
    .cart-item__name {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.2;
    }
    .cart-item__meta {
      font-size: 0.8125rem;
      color: var(--text-muted);
      margin-bottom: 0.625rem;
    }
    .cart-item__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }
    .cart-qty {
      display: inline-flex;
      align-items: center;
      border: 1px solid var(--border);
      border-radius: var(--r-pill);
      overflow: hidden;
    }
    .cart-qty button {
      width: 28px; height: 28px;
      border: none;
      background: transparent;
      color: var(--text);
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.15s;
    }
    .cart-qty button:hover { background: var(--bg); }
    .cart-qty span {
      min-width: 26px;
      text-align: center;
      font-size: 0.875rem;
      font-weight: 500;
    }
    .cart-item__price {
      font-size: 0.9375rem;
      font-weight: 600;
      white-space: nowrap;
    }
    .cart-item__remove {
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 0.75rem;
      cursor: pointer;
      text-decoration: underline;
      text-underline-offset: 2px;
      padding: 0;
      margin-top: 0.5rem;
    }
    .cart-item__remove:hover { color: var(--text); }

    .cart-empty {
      text-align: center;
      color: var(--text-muted);
      padding: 4rem 1.5rem;
      font-size: 0.9375rem;
    }

    .cart-foot {
      border-top: 1px solid var(--border);
      padding: 1.5rem;
    }
    .cart-foot__row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 0.5rem;
      font-size: 0.875rem;
      color: var(--text-muted);
    }
    .cart-foot__total {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 1.25rem;
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text);
    }
    .cart-foot .btn { width: 100%; justify-content: center; }
    .cart-foot__note {
      text-align: center;
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 0.75rem;
    }

    /* ══════════════════════════════════════════
       BANNER
    ══════════════════════════════════════════ */
    .banner {
      margin-top: 4.5rem;
      padding: 0.625rem 2rem;
      background: var(--bg-card);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: var(--text-muted);
    }
    .banner a {
      color: var(--text);
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* ══════════════════════════════════════════
       HERO — fond noir uni + pin/scrub au scroll (façon SumUp)
    ══════════════════════════════════════════ */
    .hero { position: relative; height: 100vh; }
    .hero__sticky {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      background: var(--bg);          /* crème autour du panneau */
    }
    /* Panneau arrondi avec marge (façon Voldog) ; fond noir uni. Le contenu est
       DANS ce panneau (DOM) : quand on scale .hero__media, le texte suit. */
    .hero__media {
      position: absolute;
      top: 76px;                    /* sous la nav */
      left: 20px;
      right: 20px;
      bottom: 20px;
      border-radius: 36px;
      overflow: hidden;
      z-index: 1;
      background: var(--bg-dark);
      transform-origin: 50% 50%;
      will-change: transform;
    }
    .hero__content {
      position: absolute;
      left: 0;
      top: 50%;                       /* centré dans le panneau (qui EST déjà la zone visible) */
      transform: translateY(-50%);
      z-index: 2;
      text-align: left;
      padding: 0 4.5rem;
    }
    /* fenêtre : cadre fixe, le monde glisse dedans */
    .community-collage {
      position: relative;
      width: 100%;
      height: 880px;
      overflow: hidden;
    }
    /* monde : plan plus grand que la fenêtre, déplacé par Draggable (transform) */
    .community-world {
      position: absolute;
      left: 0; top: 0;
      width: 260%;
      height: 240%;
      z-index: 1;
      cursor: grab;
      will-change: transform;
    }

    /* Texte centré dans la fenêtre, au-dessus du monde (z2), ne bouge pas au
       drag. pointer-events:none → on peut « attraper » le monde à travers lui. */
    .community-block__text {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: min(560px, 86%);
      z-index: 2;
      pointer-events: none;
      padding: 2rem clamp(1.5rem, 4vw, 2.75rem);
      background: rgba(254, 250, 246, 0.62);
      -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
      border-radius: var(--r-lg);
      font-family: var(--font-body);
      font-size: clamp(1rem, 1.5vw, 1.1875rem);
      font-weight: 400;
      line-height: 1.7;
      text-align: center;
      color: var(--text);
    }

    /* Affordance drag — pastille discrète, retirée en JS à la première prise */
    .community-hint {
      position: absolute;
      left: 50%; bottom: 1.4rem;
      transform: translateX(-50%);
      z-index: 3;
      pointer-events: none;
      display: flex; align-items: center; gap: 0.5rem;
      padding: 0.55rem 1rem;
      background: rgba(254, 250, 246, 0.62);
      -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
      border: 1px solid var(--border);
      border-radius: var(--r-pill);
      font-family: var(--font-body);
      font-size: 0.8125rem;
      letter-spacing: 0.02em;
      color: var(--text-muted);
    }

    /* Cards photos — positionnées en absolu dans le monde. Le transform du
       Draggable fait du monde un contexte d'empilement : ces z-index ne jouent
       qu'entre photos (le texte, sibling z2, reste au-dessus de toutes). */
    .hero__photo { position: absolute; will-change: transform; }   /* fond flouté, tout derrière */
    .hero__photo[data-depth="back"]  { z-index: 1; }

    /* Positions dans le MONDE draggable (% du plan 260%×240%, pas du viewport).
       Fenêtre d'arrivée = rect central du monde (x 30.8→69.2%, y 29.2→70.8%) :
       10 photos y sont visibles (1,2,3,8,10,16,17,21,26,27), les 22 autres
       réparties autour par cellules de grille (couverture homogène du drag).
       Calculées par script (stratification + rejection sampling, zéro
       chevauchement) — regénérer le script plutôt que retoucher à la main. */
    .hero__photo:nth-child( 1) { left: 30.47%; top: 46.30%; width: 6.50%; aspect-ratio: 0.82; }

    /* ══════════════════════════════════════════
       TRAIL — chemin pointillé organique en arrière-plan (couche body).
       Sous tout le contenu, juste au-dessus du fond crème ; traverse
       community → savoir-faire → produits. Tirets (pas de points).
       (position top/height calculées en JS pour couvrir la bonne plage.)
    ══════════════════════════════════════════ */
    .trail {
      position: absolute;
      left: 0;
      width: 100%;
      z-index: -1;            /* derrière le contenu, au-dessus du fond crème */
      pointer-events: none;
    }
    /* variante claire : sections à fond sombre (craft phase bouteille, events-band) */
    .trail__path--on-dark { stroke: var(--text-on-dark-muted); }

    /* ══════════════════════════════════════════
       CRAFT — savoir-faire : produit qui se déplace centre → droite (miel)
       → centre-bas (morph) → gauche (bouteille), zoom sur les côtés, fond
       crème → sombre pendant le morph. Texte miel à gauche, bouteille à droite.
    ══════════════════════════════════════════ */
    .craft { position: relative; }
    /* fond crème, fixe — le dégradé sombre (.craft__bg-gradient) se fond par-dessus au morph */
    .craft__bg {
      position: absolute; inset: 0;
      background-color: var(--bg);
      z-index: 0;
    }
    /* fond sombre plein (sapin), bascule instantanée (pas de fondu) au moment du morph —
       couleur plane identique à .events-band pour un raccord net, sans dégradé */
    .craft__bg-gradient {
      position: absolute; inset: 0;
      background: var(--pine-deep);
      opacity: 0;
      z-index: 1;
    }
    /* tracé local : au-dessus des fonds (0/1), sous le pot/bouteille et les panneaux (2/3) */
    .craft__trail {
      position: absolute; inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }

    /* scène centrale : séquence d'images dessinée au canvas, scrubbée au scroll */
    .craft__stage {
      position: relative;
      z-index: 2;
      width: min(80vh, 90vw);
      height: min(80vh, 90vw);
      display: grid;
      place-items: center;
    }

    /* panneaux texte : miel toujours à gauche, bouteille toujours à droite */
    .craft__panels { position: absolute; inset: 0; z-index: 3; pointer-events: none; }

    /* mobile : pas de pin, stack simple */
    @media (max-width: 820px) {
      .craft__sticky {
        position: static; height: auto; overflow: visible;
        flex-direction: column; gap: 2.5rem;
        padding: 4rem 1.5rem;
      }
      .craft__bg { display: none; }
      .craft__bg-gradient { display: none; }
      .craft__trail { display: none; }
      .craft__stage {
        width: min(82vw, 360px);
        height: auto; aspect-ratio: 1 / 1;
        margin: 0 auto;
      }
      .craft__canvas { width: 100%; height: 100%; }
      .craft__panels { position: static; display: flex; flex-direction: column; gap: 2.5rem; }
      .craft__panel {
        position: static; transform: none; opacity: 1 !important;
        width: 100%; left: auto; right: auto; text-align: left !important;
      }
      /* mobile : .craft__bg est masqué (toujours crème) → on garde le texte sombre par défaut */
      .craft__panel[data-phase="wine"] .craft__heading { color: var(--text); }
      .craft__panel[data-phase="wine"] .craft__body { color: var(--text-muted); }
    }

    /* ══════════════════════════════════════════
       EVENTS INTRO + STATS ROW — clone Lovable
       Section crème, colonne centrée, texte balance + stats à dividers verticaux
    ══════════════════════════════════════════ */
    .events-band {
      position: relative;
      background: var(--pine-deep);
      padding: 8rem 0;
    }
    /* tracé local : au-dessus du fond plein, sous le texte/chiffres (en-flux, donc déjà au-dessus) */
    .events-band__trail {
      position: absolute; inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    /* ══════════════════════════════════════════
       SÉPARATEUR MONTAGNE — skyline du Pic du Midi (SVG client verbatim).
       Le fond du bloc (= sapin profond, EXACTEMENT le vert de fin de craft via
       --pine-deep) couvre le "ciel" au-dessus de la crête, continuité directe
       avec .events-band ; le remplissage de la montagne (= nappe miel) annonce
       la boutique. Couture invisible des deux côtés. Pas de liseré sur la crête
       (retour client : le trait ne plaisait pas) — juste la silhouette pleine.
    ══════════════════════════════════════════ */
    .mtn-sep {
      width: 100%;
      line-height: 0;
      margin-bottom: -1px;       /* zéro couture avec la section produits */
      padding-top: 3rem;
      background: var(--pine-deep);  /* continue le fond de .events-band derrière la crête */
    }
    .mtn-sep svg {
      width: 100%;
      height: auto;            /* ratio préservé → pas d'étirement horizontal des pentes */
      display: block;
    }
    .mtn-sep__fill { fill: var(--honey-wash); }  /* = fond section produits (nappe miel), couture invisible */
    .mtn-sep__line { display: none; }            /* liseré retiré (retour client) */

    /* Transition bas de section produits (nappe miel) → crème de la section carte */
    .section-fade {
      height: 150px;
      margin-top: -1px;
      background: linear-gradient(to bottom, var(--honey-wash) 0%, var(--bg) 100%);
    }

    /* ══════════════════════════════════════════
       PRODUITS — texte centré + 2 lignes × 4 produits + bouton
       (inspiré woodid .row.py-xl, transposé à notre DA)
    ══════════════════════════════════════════ */
    /* Fond nappe miel (catégorie miel, doux), pleine largeur */
    .products {
      background: var(--honey-wash);
      padding: 2rem 0 4rem;
    }

    /* Layout 2 colonnes : panneau gauche sticky + grille scrollable (style Robinhood)
       Plein largeur (padding = --edge-x) — pas de max-width centré, pour que texte et
       grille touchent la même marge standard que les autres sections. */
    .products__layout {
      padding: 0 var(--edge-x);
      display: grid;
      grid-template-columns: 560px 1fr;
      gap: 3.5rem;
      align-items: start;
    }

    /* Panneau gauche pinné toute la hauteur de l'écran : titre haut · filtres centre · lien bas */
    .products__panel {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 6rem 0 3rem;
    }

    .products__eyebrow {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }
    .products__title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.2vw, 3rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 1rem;
      color: var(--text);
    }
    .products__sub {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 30ch;
    }

    /* Filtres catégories — liste verticale, centrée verticalement dans le panneau */
    .products__filters {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.1rem;
    }
    .products__filter {
      appearance: none;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 1.35;
      color: var(--text);
      padding: 0.05rem 0;
      transition: color 0.2s, transform 0.2s var(--ease-out);
    }
    .products__filter:hover { color: var(--accent); }
    .products__filter.is-active {
      color: var(--text);
      font-weight: 700;
    }

    .products__panel-foot { padding-top: 0.5rem; }
    .products__all {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--accent);
      transition: opacity 0.2s;
    }
    .products__all:hover { opacity: 0.7; }

    .products__grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(214px, 1fr));
      gap: 1rem;
      padding-top: 6rem;     /* aligne le 1er rang avec le titre du panneau */
      padding-bottom: 4rem;
    }

    .product-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    }
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px -28px rgba(28, 24, 18, 0.22);
    }

    .product-card__img {
      aspect-ratio: 1;
      background: linear-gradient(135deg, var(--accent-warm), var(--accent));
      position: relative;
    }
    .product-card__img.g2 { background: linear-gradient(160deg, var(--border), var(--accent-warm)); }
    .product-card__img.g3 { background: linear-gradient(135deg, var(--accent), var(--pine)); }
    .product-card__img.g4 { background: linear-gradient(160deg, #E8DCCD, var(--accent)); }
    .product-card__img.g5 { background: linear-gradient(135deg, var(--accent-warm), var(--border)); }
    .product-card__img.g6 { background: linear-gradient(160deg, var(--accent), var(--accent-warm)); }
    .product-card__img.g7 { background: linear-gradient(135deg, #E8DCCD, var(--pine)); }
    .product-card__img.g8 { background: linear-gradient(160deg, var(--border), var(--accent)); }

    /* photo produit (remplace le dégradé quand dispo) */
    .product-card__img.has-photo { background: var(--bg-card); overflow: hidden; }
    .product-card__photo {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    /* flèches sélecteur de format (style diaporama) */
    .product-card__nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 32px; height: 32px;
      display: grid; place-items: center;
      border: none; border-radius: 50%;
      background: rgba(242, 237, 230, 0.78);
      -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
      color: var(--text);
      font-size: 1.2rem; line-height: 1; padding: 0;
      cursor: pointer; z-index: 2;
      box-shadow: 0 6px 16px -10px rgba(28, 24, 18, 0.5);
      opacity: 0.85; transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }
    .product-card:hover .product-card__nav { opacity: 1; }
    .product-card__nav:hover { background: var(--bg-card); transform: translateY(-50%) scale(1.08); }
    .product-card__nav--prev { left: 0.6rem; }
    .product-card__nav--next { right: 0.6rem; }

    /* ══════════════════════════════════════════
       QUICK VIEW — aperçu rapide (pop-up home)
    ══════════════════════════════════════════ */
    body.qv-lock { overflow: hidden; }
    .qv-overlay {
      position: fixed; inset: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: center;
      padding: 1.5rem;
      background: rgba(28, 24, 18, 0.55);
      -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
      opacity: 0; visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .qv-overlay.is-open { opacity: 1; visibility: visible; }
    .qv-modal {
      position: relative;
      width: min(920px, 100%);
      max-height: 90vh; overflow: auto;
      background: var(--bg-card);
      border-radius: var(--r-lg, 20px);
      box-shadow: 0 40px 80px -30px rgba(28, 24, 18, 0.5);
      transform: translateY(16px) scale(0.985);
      transition: transform 0.3s ease;
    }
    .qv-overlay.is-open .qv-modal { transform: none; }
    .qv-close {
      position: absolute; top: 0.85rem; right: 0.85rem; z-index: 3;
      width: 38px; height: 38px; border: none; border-radius: 50%;
      background: rgba(242, 237, 230, 0.92); color: var(--text);
      font-size: 1.5rem; line-height: 1; cursor: pointer;
    }
    .qv-close:hover { background: var(--bg); }
    .qv-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .qv-gallery { padding: 1.25rem; }
    .qv-stage { position: relative; }
    .qv-photo {
      aspect-ratio: 1; border-radius: var(--r-md, 14px); overflow: hidden;
      background: var(--bg); background-size: cover; background-position: center;
    }
    .qv-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 36px; height: 36px; display: grid; place-items: center;
      border: none; border-radius: 50%; cursor: pointer; z-index: 2;
      background: rgba(242, 237, 230, 0.85); color: var(--text);
      font-size: 1.3rem; box-shadow: 0 6px 16px -10px rgba(28, 24, 18, 0.5);
    }
    .qv-nav:hover { background: var(--bg); }
    .qv-nav--prev { left: 0.6rem; }
    .qv-nav--next { right: 0.6rem; }
    .qv-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
    .qv-thumb {
      width: 56px; height: 56px; flex: 0 0 auto; padding: 0;
      border-radius: var(--r-sm, 10px); border: 2px solid transparent;
      cursor: pointer; background-size: cover; background-position: center;
    }
    .qv-thumb.is-active { border-color: var(--accent); }
    .qv-info { padding: 2rem 2rem 1.75rem; display: flex; flex-direction: column; }
    .qv-badge {
      align-self: flex-start; padding: 0.25rem 0.75rem; margin-bottom: 0.75rem;
      background: var(--bg); border-radius: var(--r-pill); font-size: 0.6875rem; color: var(--text);
    }
    .qv-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; line-height: 1.1; }
    .qv-short { color: var(--text-muted); margin: 0.4rem 0 0.9rem; }
    .qv-price { font-size: 1.35rem; font-weight: 600; margin-bottom: 1.1rem; }
    .qv-flabel { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
    .qv-formats { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.1rem; }
    .qv-add {
      border: none; border-radius: var(--r-pill); cursor: pointer;
      background: var(--text); color: var(--bg);
      padding: 0.85rem 1.5rem; font-size: 0.95rem; font-weight: 500;
      margin-bottom: 1.4rem; transition: background 0.2s ease;
    }
    .qv-add:hover { background: var(--bg-dark); }
    .qv-block { border-top: 1px solid var(--border); padding-top: 1rem; }
    .qv-text { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }
    .qv-specs { margin: 1rem 0 1.2rem; display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 1.2rem; font-size: 0.9rem; }
    .qv-specs dt { color: var(--text-muted); }
    .qv-specs dd { margin: 0; }
    .qv-more {
      margin-top: auto; align-self: flex-start;
      font-weight: 600; color: var(--accent); text-decoration: none;
      border-bottom: 1px solid currentColor; padding-bottom: 2px;
    }
    @media (max-width: 760px) {
      .qv-grid { grid-template-columns: 1fr; }
      .qv-modal { max-height: 92vh; }
      .qv-info { padding: 1.25rem 1.5rem 1.5rem; }
    }

    /* ══════════════════════════════════════════
       PDP — terroir : carte zone de récolte + chiffres
    ══════════════════════════════════════════ */
    .pdp-terroir {
      margin-top: 3.5rem;
      padding-top: 3rem;
      border-top: 1px solid var(--border);
    }
    .pdp-terroir__head { margin-bottom: 1.5rem; }
    .pdp-terroir__title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 700; line-height: 1.1; margin-top: 0.3rem;
    }
    .pdp-terroir__grid {
      display: grid; grid-template-columns: 1.15fr 1fr; gap: 1.5rem; align-items: stretch;
    }
    .pdp-map {
      position: relative; z-index: 0;
      min-height: 340px; border-radius: var(--r-md, 14px); overflow: hidden;
      background: var(--bg);
    }
    .pdp-map .leaflet-container { width: 100%; height: 100%; font-family: var(--font-body); background: transparent; }
    .pdp-map .leaflet-tile-pane { filter: sepia(0.38) saturate(0.72) brightness(1.05) contrast(0.94) hue-rotate(-8deg); }
    .pdp-map .leaflet-bar { border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; box-shadow: 0 2px 10px rgba(28, 24, 18, 0.12); }
    .pdp-map .leaflet-bar a { background: var(--bg-card); color: var(--text); border-color: var(--border); }
    .pdp-map .leaflet-bar a:hover { background: var(--bg); }
    .pdp-map .leaflet-control-attribution { background: rgba(254, 250, 246, 0.82); color: var(--text-muted); font-size: 0.625rem; }
    .pdp-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
      background: var(--border);
      border: 1px solid var(--border); border-radius: var(--r-md, 14px); overflow: hidden;
    }
    .pdp-stat {
      background: var(--bg-card);
      padding: 1.5rem 1.25rem; text-align: center;
      display: flex; flex-direction: column; gap: 0.5rem; justify-content: center;
    }
    .pdp-stat__num {
      font-family: var(--font-body);
      font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 500;
      letter-spacing: -0.02em; line-height: 1.1; color: var(--text);
    }
    .pdp-stat__num--text { font-size: clamp(1.1rem, 2vw, 1.4rem); }
    .pdp-stat__label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.35; }
    .pdp-terroir__note { margin-top: 1rem; font-size: 0.8rem; color: var(--text-muted); font-style: italic; }
    @media (max-width: 760px) {
      .pdp-terroir__grid { grid-template-columns: 1fr; }
      .pdp-map { min-height: 260px; }
    }

    /* ══════════════════════════════════════════
       CONTACT — barre de coordonnées (section points de vente)
    ══════════════════════════════════════════ */
    .contact-bar {
      margin-top: 2rem;
      padding: 2rem clamp(1.5rem, 4vw, 3rem);
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
      gap: 1.5rem 2.5rem;
    }
    .contact-bar__eyebrow { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.3rem; }
    .contact-bar__title { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 700; line-height: 1.1; }
    .contact-bar__items { display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem; }
    .contact-bar__item { display: flex; flex-direction: column; gap: 0.2rem; text-decoration: none; color: var(--text); }
    a.contact-bar__item:hover .contact-bar__value { color: var(--accent); }
    .contact-bar__label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
    .contact-bar__value { font-size: 1rem; font-weight: 500; transition: color 0.2s ease; }
    @media (max-width: 760px) {
      .contact-bar { flex-direction: column; align-items: flex-start; }
      .contact-bar__items { flex-direction: column; gap: 1rem; }
    }

    .product-card__badge {
      position: absolute;
      top: 0.875rem;
      left: 0.875rem;
      padding: 0.25rem 0.75rem;
      background: var(--bg-card);
      border-radius: var(--r-pill);
      font-size: 0.6875rem;
      font-weight: 500;
      color: var(--text);
    }

    .product-card__body {
      padding: 1.125rem 1.125rem 1.375rem;
    }
    .product-card__name {
      font-family: var(--font-display);
      font-size: 1.0625rem;
      font-weight: 600;
      line-height: 1.25;
      margin-bottom: 0.25rem;
    }
    .product-card__meta {
      font-size: 0.8125rem;
      color: var(--text-muted);
      margin-bottom: 0.625rem;
    }
    /* Rangée prix + bouton ajouter */
    .product-card__foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
    }
    .product-card__price {
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--text);
    }
    .product-card__add {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      border-radius: 50%;
      border: none;
      background: var(--text);
      color: var(--bg);
      font-size: 1.25rem;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .product-card__add:hover { background: var(--accent); color: var(--bg-dark); }
    .product-card__add:active { transform: scale(0.88); }

    /* ══════════════════════════════════════════
       EVENTS MAP — clone Lovable #events
       Header centré + carte plein cadre 720px + sidebar flottante 390px
    ══════════════════════════════════════════ */
    .grid-section {
      padding: 5rem var(--edge-x) 7rem;
    }

    /* Header centré : titre max 576px + CTA dessous */
    .grid-section__header {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
      margin-bottom: 4rem;
    }

    .grid-section__title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.01em;
      max-width: 900px;
    }

    /* Conteneur commun carte + encart contact : largeur resserrée (70%), centrée,
       pour que les deux blocs restent toujours alignés à la même taille */
    .events-content {
      width: 70%;
      max-width: 1100px;
      margin: 0 auto;
    }

    /* Cadre carte + sidebar */
    .events-map {
      position: relative;
      height: 720px;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 0.5rem;
      overflow: hidden;
      display: flex;
      justify-content: flex-end;
    }

    /* Fond carte stylisé Hautes-Pyrénées (sans API) */
    .events-map__canvas {
      position: absolute;
      inset: 0;
      border-radius: var(--r-md);
      overflow: hidden;
      background:
        radial-gradient(circle at 22% 30%, rgba(201,169,110,0.16), transparent 38%),
        radial-gradient(circle at 78% 68%, rgba(74,106,48,0.12), transparent 42%),
        linear-gradient(135deg, #ECE5D9 0%, #E4DAC9 100%);
    }
    @keyframes pin-pulse {
      0%   { transform: scale(0.6); opacity: 0.6; }
      100% { transform: scale(2.2); opacity: 0; }
    }

    /* Sidebar flottante */
    .events-map__sidebar {
      position: relative;
      z-index: 2;
      width: 390px;
      max-width: 100%;
      height: 100%;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 1.5rem 1.5rem 0;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      overflow: hidden;
    }

    .events-sidebar__head {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: 700;
    }
    .events-sidebar__count {
      margin-left: auto;
      font-family: var(--font-body);
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--text-muted);
      background: var(--bg);
      border-radius: var(--r-pill);
      padding: 0.125rem 0.625rem;
    }

    .events-sidebar__filters {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .filter-pill {
      display: inline-flex;
      align-items: center;
      padding: 0.375rem 0.75rem;
      border-radius: var(--r-pill);
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--text-muted);
      background: var(--bg);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s;
    }
    .filter-pill:hover { color: var(--text); border-color: var(--border); }
    .filter-pill.is-active { background: var(--text); color: var(--bg); }

    .events-sidebar__divider {
      height: 1px;
      background: var(--border);
      margin: 0 -1.5rem;
    }

    .events-sidebar__list {
      flex: 1;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding-bottom: 1.5rem;
      margin: 0 -0.5rem;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
    }
    .events-sidebar__month {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 0.5rem;
    }

    .event-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 0.75rem;
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      background: var(--bg-card);
      text-align: left;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.2s;
    }
    .event-item:hover { border-color: var(--accent); transform: translateX(2px); }

    .event-item__thumb {
      width: 56px;
      height: 56px;
      flex-shrink: 0;
      border-radius: var(--r-sm);
      background: linear-gradient(135deg, var(--accent-warm), var(--accent));
    }
    .event-item__thumb.t2 { background: linear-gradient(135deg, var(--border), var(--accent-warm)); }
    .event-item__thumb.t3 { background: linear-gradient(135deg, var(--accent), var(--pine)); }
    .event-item__thumb.t4 { background: linear-gradient(135deg, #E8DCCD, var(--accent)); }
    .event-item__thumb.t5 { background: linear-gradient(135deg, var(--accent-warm), var(--border)); }

    .event-item__body {
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
    }
    .event-item__title {
      display: block;
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 600;
      line-height: 1.25;
      margin-bottom: 0.125rem;
    }
    .event-item__date {
      display: block;
      font-size: 0.8125rem;
      color: var(--text-muted);
    }
    .event-item__loc {
      display: block;
      font-size: 0.8125rem;
      color: var(--text-muted);
    }
    .event-item.is-active { border-color: var(--accent); transform: translateX(2px); }

    /* ══════════════════════════════════════════
       CARTE LEAFLET — intégration dans la DA (palette miel/beige)
       ── Le canvas reçoit un z-index pour créer un stacking context :
          piège les calques internes de Leaflet (z-index 200-700) SOUS la
          sidebar flottante (z-index 2). Sans ça, la carte recouvre la sidebar.
       ══════════════════════════════════════════ */
    .events-map__canvas { z-index: 1; }
    .events-map .leaflet-container {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: transparent;          /* laisse le dégradé chaud du canvas transparaître au chargement */
      font-family: var(--font-body);
    }
    /* Tonalité chaude sur les tuiles → la carte épouse la palette miel/beige */
    .events-map .leaflet-tile-pane {
      filter: sepia(0.38) saturate(0.72) brightness(1.05) contrast(0.94) hue-rotate(-8deg);
    }
    /* Contrôles zoom — repris à la palette */
    .events-map .leaflet-bar a,
    .events-map .leaflet-bar a:hover {
      background: var(--bg-card);
      color: var(--text);
      border-color: var(--border);
      width: 32px;
      height: 32px;
      line-height: 32px;
      font-weight: 600;
    }
    .events-map .leaflet-bar a:hover { background: var(--bg); }
    .events-map .leaflet-bar {
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      box-shadow: 0 2px 10px rgba(28,24,18,0.12);
      overflow: hidden;
    }
    /* Attribution discrète, ton chaud */
    .events-map .leaflet-control-attribution {
      background: rgba(254,250,246,0.82);
      color: var(--text-muted);
      font-family: var(--font-body);
      font-size: 0.625rem;
      border-radius: var(--r-pill) 0 0 0;
      padding: 2px 8px;
    }
    .events-map .leaflet-control-attribution a { color: var(--accent); }
    /* Popup — carte produit miniature à la DA */
    .events-map .leaflet-popup-content-wrapper {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      box-shadow: 0 8px 24px rgba(28,24,18,0.16);
    }
    .events-map .leaflet-popup-tip { background: var(--bg-card); border: 1px solid var(--border); }
    .events-map .leaflet-popup-content {
      font-family: var(--font-body);
      font-size: 0.8125rem;
      line-height: 1.45;
      color: var(--text);
      margin: 0.7rem 0.9rem;
    }
    .events-map .leaflet-popup-content strong { font-family: var(--font-display); font-size: 0.9375rem; }
    .market-pin::after {
      content: '';
      position: absolute;
      left: 50%; top: 50%;
      width: 14px; height: 14px;
      margin: -7px 0 0 -7px;
      border-radius: 50%;
      border: 1px solid var(--accent);
      opacity: 0.5;
      animation: pin-pulse 2.6s ease-out infinite;
      pointer-events: none;
    }

    /* ══════════════════════════════════════════
       FAQ
    ══════════════════════════════════════════ */
    .faq {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 2rem 7rem;
    }

    .faq__title {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 700;
      text-align: center;
      margin-bottom: 3rem;
    }

    .faq__item { border-top: 1px solid var(--border); }
    .faq__item:last-child { border-bottom: 1px solid var(--border); }

    .faq__question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.25rem 0;
      cursor: pointer;
      font-weight: 500;
      font-size: 0.9375rem;
      user-select: none;
    }

    .faq__icon {
      flex-shrink: 0;
      width: 18px; height: 18px;
      position: relative;
    }
    .faq__icon::before,
    .faq__icon::after {
      content: '';
      position: absolute;
      background: var(--text);
      border-radius: 2px;
    }
    .faq__icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
    .faq__icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform 0.3s var(--ease-out), opacity 0.3s; }
    .faq__item.open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

    .faq__answer {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s var(--ease-out);
    }
    .faq__answer-inner {
      padding-bottom: 1.25rem;
      font-size: 0.9375rem;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .faq__item.open .faq__answer { max-height: 400px; }

    /* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
    .footer {
      background: var(--bg-dark);
      color: rgba(242, 237, 230, 0.5);
      padding: 4.5rem 2rem 2rem;
    }

    .footer__top {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(242, 237, 230, 0.1);
    }

    .footer__col-title {
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--bg);
      letter-spacing: 0.04em;
      margin-bottom: 1.25rem;
    }

    .footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
    .footer__links a { font-size: 0.875rem; transition: color 0.2s; }
    .footer__links a:hover { color: var(--bg); }

    .footer__bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.8125rem;
    }

    /* Support word-split (remplace SplitText Club GSAP) */
    .split-overflow { overflow: hidden; display: inline-block; vertical-align: bottom; }
    .split-word     { display: inline-block; }
/* ══════════════════════════════════════════
   FICHE PRODUIT (PDP)
══════════════════════════════════════════ */
.pdp {
  padding: 7rem var(--edge-x) 6rem;
}
.pdp__crumbs {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.pdp__crumbs a { color: var(--text-muted); transition: color 0.2s; }
.pdp__crumbs a:hover { color: var(--text); }
.pdp__crumbs span { opacity: 0.5; }

.pdp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Galerie */
.pdp__gallery { position: sticky; top: 6.5rem; }
.pdp__main-img {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--accent-warm), var(--accent));
  position: relative;
}
/* bandeau « photo à venir » — produits sans photo (fiche + carte boutique) */
.pdp__soon, .product-card__soon {
  position: absolute;
  left: 0.875rem;
  bottom: 0.875rem;
  padding: 0.3rem 0.75rem;
  background: rgba(28, 24, 18, 0.72);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  border-radius: var(--r-pill);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--bg-card);
  white-space: nowrap;
}
.pdp__thumbs { display: flex; gap: 0.75rem; margin-top: 0.875rem; }
.pdp__thumb {
  width: 76px; height: 76px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}
.pdp__thumb:hover { opacity: 0.85; transform: translateY(-2px); }
.pdp__thumb.is-active { opacity: 1; border-color: var(--accent); }

/* Infos */
.pdp__info {}
.pdp__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.pdp__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}
.pdp__short {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}
.pdp__price {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.pdp__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pdp__variants { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2rem; }
.variant-pill {
  padding: 0.625rem 1.125rem;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--bg-card);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.variant-pill:hover { border-color: var(--accent); }
.variant-pill.is-active { background: var(--text); color: var(--bg); border-color: var(--text); }

.pdp__buyrow { display: flex; gap: 0.875rem; align-items: stretch; margin-bottom: 2.5rem; }
.pdp__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--bg-card);
}
.pdp__qty button {
  width: 44px; height: 44px;
  border: none; background: transparent;
  color: var(--text); font-size: 1.25rem; cursor: pointer;
  transition: background 0.15s;
}
.pdp__qty button:hover { background: var(--bg); }
.pdp__qty button:first-child { border-radius: var(--r-pill) 0 0 var(--r-pill); }
.pdp__qty button:last-child { border-radius: 0 var(--r-pill) var(--r-pill) 0; }
.pdp__qty span { min-width: 36px; text-align: center; font-weight: 500; }
.pdp__add { flex: 1; justify-content: center; font-size: 0.9375rem; }

.pdp__meta {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pdp__meta-row {}
.pdp__meta-row .pdp__label { margin-bottom: 0.375rem; }
.pdp__meta-row p { font-size: 0.9375rem; line-height: 1.55; }
.pdp__notes { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pdp__note {
  padding: 0.3125rem 0.75rem;
  background: var(--bg);
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  color: var(--text);
}

/* Section produits liés */
.pdp-related {
  padding: 2rem var(--edge-x) 7rem;
}
.pdp-related__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

@media (max-width: 860px) {
  .pdp__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pdp__gallery { position: static; }
}

/* ══════════════════════════════════════════
   PAGE CATALOGUE (boutique)
══════════════════════════════════════════ */
.shop {
  padding: 7rem var(--edge-x) 7rem;
}
.shop__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}
.shop__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.shop__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.shop__sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.shop__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.shop__filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.shop__right { display: flex; align-items: center; gap: 1rem; }
.shop__count { font-size: 0.8125rem; color: var(--text-muted); white-space: nowrap; }
.shop__sort {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.shop__sort:focus { outline: none; border-color: var(--accent); }
.shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(269px, 1fr));
  gap: 1.25rem;
}
.shop__empty {
  text-align: center;
  color: var(--text-muted);
  padding: 4rem 0;
}
@media (max-width: 980px) { .shop__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .shop__grid { grid-template-columns: repeat(2, 1fr); } }

/* ══════════════════════════════════════════
   RESPONSIVE — burger + breakpoints
══════════════════════════════════════════ */
/* Burger (caché desktop) */
.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-card);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav__burger span { display: block; width: 18px; height: 2px; background: var(--text); transition: transform 0.25s, opacity 0.2s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── Tablette ─── */
@media (max-width: 980px) {
  /* Boutique : on déplie le layout (panneau non-pinné, au-dessus de la grille) */
  .products__layout { grid-template-columns: 1fr; gap: 2rem; }
  .products__panel {
    position: static; height: auto;
    flex-direction: column; gap: 1.5rem;
    padding: 1rem 0 0;
  }
  .products__filters { flex-flow: row wrap; align-items: center; gap: 0.25rem 1.25rem; }
  .products__filter { font-size: 1.15rem; }
  .products__grid { grid-template-columns: repeat(3, 1fr); padding-top: 0; padding-bottom: 0; }
  .initiative__inner { gap: 3rem; }
  .events-map__sidebar { width: 340px; }
}

/* ─── Mobile ─── */
@media (max-width: 820px) {
  /* Nav + menu burger */
  .nav { padding: 0.875rem 1.25rem; justify-content: space-between; }
  .nav__logo img { height: 34px; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-card); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0.25rem 1.25rem 1rem; display: none;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 0.875rem 0; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .nav__burger { display: flex; }
  .nav .btn--ghost { display: none; }

  /* Hero */
  /* Hero mobile — panneau statique (pas de pin), wordmark + desc à gauche dessus */
  .hero { height: 86vh; }
  .hero__sticky { height: 100%; }
  .hero__media {
    top: 68px; left: 12px; right: 12px; bottom: 12px;
    border-radius: 26px;
    transform: none !important;
  }
  .hero__content { top: 46%; padding: 0 1.2rem; }
  .hero__title-logo { width: min(80vw, 360px); }
  .hero__sub { margin-left: 0; }   /* pas de décalage sur mobile, l'espace manque */
  .hero__desc {
    width: min(40ch, 84vw);
    font-size: 0.95rem;
  }

  /* Community mobile — collage → grille empilée (pas de monde draggable :
     display:contents dissout le wrapper, les photos redeviennent des items
     directs de la grille ; le Draggable n'est créé que sur desktop en JS) */
  .community-block { padding: 4rem 1.25rem 5rem; }
  .community-collage { height: auto; min-height: 0; overflow: visible; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .community-world { display: contents; }
  .community-hint { display: none; }
  .community-block__text {
    position: static !important; transform: none !important;
    width: 100% !important; grid-column: 1 / -1; order: -1;
    margin-bottom: 1rem;
  }
  .community-collage .hero__photo {
    position: relative !important;
    left: auto !important; right: auto !important; top: auto !important; bottom: auto !important;
    width: 100% !important; aspect-ratio: 1.2 !important;
    transform: none !important;
  }

  /* Stats — 2×2 */
  .events-band { padding: 4rem 0; }
  .events-intro { gap: 2.5rem; padding: 0 1.25rem; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; padding: 1.25rem 0.5rem; }
  .stat-item + .stat-item::before { display: none; }

  /* Produits */
  .products { padding: 2rem 0 3rem; }
  .products__layout { padding: 0 1.25rem; }
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
  .products__filter { font-size: 1.05rem; }

  /* Carte points de vente — empilée */
  .grid-section { padding: 4rem 1.25rem 5rem; }
  .grid-section__header { margin-bottom: 2.5rem; }
  .events-content { width: 100%; }
  .events-map { flex-direction: column; height: auto; }
  .events-map__canvas { position: relative; inset: auto; height: 260px; }
  .events-map__sidebar { width: 100%; height: auto; }
  .events-sidebar__list { max-height: 420px; }

  /* SheBuilds — empilé */
  .initiative { padding: 4rem 0; }
  .initiative__inner { flex-direction: column; gap: 2.5rem; padding: 0 1.25rem; }
  .initiative__text { width: 100%; }
  .slide { width: 240px; height: 330px; }

  /* Mur d'avatars */
  .testimonials { padding: 4rem 1.25rem; }
  .avatar-wall { gap: 2rem; }
  .avatar-row { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .avatar-row--top .avatar:first-child,
  .avatar-row--top .avatar:last-child { visibility: visible; }

  /* FAQ */
  .faq { padding: 0 1.25rem 5rem; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Panier plein écran */
  .cart-drawer { width: 100%; }

  /* Catalogue */
  .shop { padding: 6rem 1.25rem 5rem; }
  .shop__toolbar { flex-direction: column; align-items: stretch; }
  .shop__right { justify-content: space-between; }

  /* PDP */
  .pdp { padding: 6rem 1.25rem 4rem; }
  .pdp-related { padding: 1rem 1.25rem 5rem; }
}

/* ─── Petit mobile ─── */
@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; }
  .avatar-row { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════
   CHECKOUT — formulaire + récapitulatif
══════════════════════════════════════════ */
.checkout { max-width: 1180px; margin: 0 auto; padding: 7rem 2rem 6rem; }
.checkout__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.checkout__grid { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: start; }

.form-section { margin-bottom: 2.75rem; }
.form-section__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.form-field input,
.form-field select {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.75rem 0.875rem;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus { outline: none; border-color: var(--accent); }
.form-field input::placeholder { color: #b5ab9c; }

.delivery-options { display: flex; gap: 0.75rem; margin-bottom: 0.5rem; }
.delivery-opt {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.delivery-opt:hover { border-color: var(--accent); }
.delivery-opt.is-active { border-color: var(--text); background: var(--bg); }
.delivery-opt__title { font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.25rem; }
.delivery-opt__desc { font-size: 0.8125rem; color: var(--text-muted); }

/* Récapitulatif */
.checkout__summary {
  position: sticky;
  top: 6.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.summary__title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; margin-bottom: 1.25rem; }
.summary__items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.summary__item { display: flex; gap: 0.875rem; align-items: center; }
.summary__thumb { width: 52px; height: 52px; flex-shrink: 0; border-radius: var(--r-sm); position: relative; }
.summary__thumbimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-sm); }
.summary__qty {
  position: absolute; top: -6px; right: -6px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--text); color: var(--bg);
  border-radius: var(--r-pill); font-size: 0.6875rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.summary__info { flex: 1; min-width: 0; }
.summary__name { font-size: 0.875rem; font-weight: 600; line-height: 1.2; }
.summary__meta { font-size: 0.75rem; color: var(--text-muted); }
.summary__price { font-size: 0.875rem; font-weight: 600; white-space: nowrap; }

.summary__totals { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.summary__row { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.625rem; }
.summary__total { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 0.5rem 0 1.25rem; }
.checkout__pay { width: 100%; justify-content: center; font-size: 0.9375rem; }
.checkout__secure { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.875rem; }
.checkout__empty { text-align: center; padding: 4rem 0; color: var(--text-muted); }

@media (max-width: 860px) {
  .checkout { padding: 6rem 1.25rem 4rem; }
  .checkout__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .checkout__summary { position: static; order: -1; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   RECHERCHE — overlay + résultats live
══════════════════════════════════════════ */
.nav__search {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.nav__search:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

.search-overlay {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(28, 24, 18, 0.42);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.search-overlay.is-open { opacity: 1; pointer-events: auto; }

.search-panel {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.35s var(--ease-out);
  max-height: 80vh; overflow-y: auto;
}
.search-overlay.is-open .search-panel { transform: translateY(0); }

.search-box { max-width: 760px; margin: 0 auto; padding: 1.75rem 2rem 2rem; }
.search-bar { display: flex; align-items: center; gap: 1rem; border-bottom: 2px solid var(--text); padding-bottom: 0.75rem; }
.search-bar svg { flex-shrink: 0; color: var(--text-muted); }
.search-input {
  flex: 1;
  border: none; background: transparent; outline: none;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 500; color: var(--text);
}
.search-input::placeholder { color: #c2b8a8; }
.search-close {
  border: none; background: transparent; color: var(--text-muted);
  font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.search-close:hover { color: var(--text); }

.search-hint { font-size: 0.8125rem; color: var(--text-muted); margin-top: 1.5rem; }
.search-results { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.search-result {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.75rem; border-radius: var(--r-sm);
  cursor: pointer; transition: background 0.15s;
}
.search-result:hover { background: var(--bg); }
.search-result__thumb { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--r-sm); }
.search-result__info { flex: 1; min-width: 0; }
.search-result__name { font-size: 0.9375rem; font-weight: 600; }
.search-result__cat { font-size: 0.75rem; color: var(--text-muted); }
.search-result__price { font-size: 0.875rem; font-weight: 600; white-space: nowrap; }
.search-empty { padding: 1.5rem 0; color: var(--text-muted); font-size: 0.9375rem; }

/* ══════════════════════════════════════════
   PAGES LÉGALES
══════════════════════════════════════════ */
.legal { max-width: 1100px; margin: 0 auto; padding: 7rem 2rem 6rem; }
.legal__grid { display: grid; grid-template-columns: 240px 1fr; gap: 4rem; align-items: start; }
.legal__nav { position: sticky; top: 6.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.legal__nav a {
  padding: 0.625rem 0.875rem;
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.legal__nav a:hover { background: var(--bg-card); color: var(--text); }
.legal__nav a.is-active { background: var(--text); color: var(--bg); }

.legal__content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.legal__updated { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 2rem; }
.legal__note {
  background: var(--bg-card);
  border: 1px dashed var(--accent);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.legal__content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  margin: 2.25rem 0 0.75rem;
}
.legal__content h3 { font-size: 1rem; font-weight: 600; margin: 1.25rem 0 0.5rem; }
.legal__content p { line-height: 1.7; margin-bottom: 1rem; color: var(--text); font-size: 0.9375rem; }
.legal__content ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal__content li { line-height: 1.7; margin-bottom: 0.5rem; font-size: 0.9375rem; list-style: disc; }
.legal__content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal__ph { color: var(--accent); font-weight: 500; }

@media (max-width: 860px) {
  .legal { padding: 6rem 1.25rem 4rem; }
  .legal__grid { grid-template-columns: 1fr; gap: 2rem; }
  .legal__nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
  .legal__nav a { border: 1px solid var(--border); }
}

/* ══════════════════════════════════════════
   RGPD — bandeau cookies
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem; left: 1.25rem;
  z-index: 300;
  width: 380px; max-width: calc(100% - 2.5rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 24px 50px -24px rgba(28, 24, 18, 0.28);
  transform: translateY(160%);
  transition: transform 0.45s var(--ease-out);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.cookie-banner__text { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.cookie-banner__text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: 0.625rem; }
.cookie-banner__actions .btn { flex: 1; justify-content: center; font-size: 0.8125rem; padding: 0.5rem 0.75rem; }

@media (max-width: 520px) {
  .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; width: auto; }
}

/* ══════════════════════════════════════════
   RÉASSURANCE — bandeau confiance + icônes paiement
══════════════════════════════════════════ */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.trust__inner {
  max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.trust__item { display: flex; align-items: flex-start; gap: 0.875rem; }
.trust__icon {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 50%; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.trust__title { font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.125rem; }
.trust__sub { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.45; }

/* Icônes moyens de paiement */
.pay-icons { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.pay-badge {
  height: 28px; min-width: 42px; padding: 0 0.5rem;
  border: 1px solid var(--border); border-radius: 5px;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.02em;
}
.pay-badge--visa { color: #1a1f71; font-style: italic; }
.pay-badge--mc { gap: 0; }
.pay-badge--mc .mc-dot { width: 13px; height: 13px; border-radius: 50%; display: inline-block; }
.pay-badge--mc .mc-dot:first-child { background: #eb001b; }
.pay-badge--mc .mc-dot:last-child { background: #f79e1b; margin-left: -5px; mix-blend-mode: multiply; }
.pay-badge--cb { color: #134a9e; }

/* PDP réassurance compacte */
.pdp__reassure { display: flex; flex-direction: column; gap: 0.625rem; margin: 1.5rem 0 2rem; }
.pdp__reassure li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: var(--text); list-style: none; }
.pdp__reassure svg { color: var(--accent); flex-shrink: 0; }

@media (max-width: 820px) {
  .trust__inner { grid-template-columns: 1fr 1fr; gap: 1.75rem 1rem; padding: 2rem 1.25rem; }
}
@media (max-width: 480px) {
  .trust__inner { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter { background: var(--bg-dark); color: var(--bg); padding: 5.5rem 2rem; }
.newsletter__sub { color: rgba(242, 237, 230, 0.6); line-height: 1.6; margin-bottom: 2rem; }
.newsletter__form { display: flex; gap: 0.625rem; max-width: 460px; margin: 0 auto; }
.newsletter__input {
  flex: 1;
  font-family: var(--font-body); font-size: 0.9375rem;
  color: var(--bg);
  background: rgba(242, 237, 230, 0.08);
  border: 1px solid rgba(242, 237, 230, 0.18);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
}
.newsletter__input::placeholder { color: rgba(242, 237, 230, 0.45); }
.newsletter__input:focus { outline: none; border-color: var(--accent); }
.newsletter__note { font-size: 0.75rem; color: rgba(242, 237, 230, 0.45); margin-top: 1rem; }
.newsletter__note a { color: rgba(242, 237, 230, 0.7); text-decoration: underline; }
.newsletter__success {
  display: none;
  font-size: 1.0625rem; color: var(--accent-warm);
  padding: 0.5rem 0;
}
.newsletter.is-done .newsletter__form,
.newsletter.is-done .newsletter__note { display: none; }
.newsletter.is-done .newsletter__success { display: block; }

@media (max-width: 560px) {
  .newsletter { padding: 4rem 1.25rem; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form .btn { justify-content: center; }
}
