/* ================= VARIABLES & RESET ================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

:root {
    --primary: #1B4332;
    --secondary: #D32F2F;
    --tertiary: #4A148C;
    --bg-light: #F7F9F7;
    --text-dark: #222;
    --gray: #666;
    --transition: all 0.3s ease;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; font-weight: 400; }
body:has(> .topbar):has(> header),
body:has(> .topbar):has(> .site-header) {
    padding-top: var(--chrome-h, 112px);
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, .logo, .section-title, .footer-logo, .footer-col h4,
.newsletter-text h3, .blog-header h1, .blog-title, .card-info h3,
.summary-title, .bulk-content h3, .hero-home h1, .story-content h2,
.discovery-content h2, .discovery-title, .commitment h2, .cat-content h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* ================= ICÔNES LUCIDE ================= */
.icon-inline { display: inline-flex; align-items: center; gap: 7px; }
.icon-inline svg { width: 15px; height: 15px; stroke: currentColor; flex-shrink: 0; }
.topbar .icon-inline svg { width: 13px; height: 13px; opacity: 0.85; }
.cart-icon { display: inline-flex; align-items: center; gap: 8px; }
.cart-icon svg { width: 18px; height: 18px; }

.trust-icon, .feat-icon, .hero-stat-icon {
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(27, 67, 50, 0.08); color: var(--primary);
}
.trust-icon { width: 52px; height: 52px; margin: 0 auto 14px; }
.trust-icon svg { width: 22px; height: 22px; }
.feat-icon { width: 36px; height: 36px; margin-right: 14px; flex-shrink: 0; background: rgba(27,67,50,0.06); }
.feat-icon svg { width: 18px; height: 18px; }

.social-icons a svg { width: 16px; height: 16px; }
.contact-list .icon-inline svg { color: var(--secondary); margin-top: 2px; }
.bulk-content h3 { display: flex; align-items: center; gap: 12px; }
.bulk-content h3 svg { width: 28px; height: 28px; color: var(--secondary); flex-shrink: 0; }
.btn-main, .btn-premium, .btn-social { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn-main svg, .btn-premium svg { width: 18px; height: 18px; }

.cat-link { display: inline-flex; align-items: center; gap: 6px; }
.cat-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.cat-box:hover .cat-link svg { transform: translateX(6px); }

.commitment-quote { display: flex; justify-content: center; margin-bottom: 20px; opacity: 0.4; }
.commitment-quote svg { width: 40px; height: 40px; color: var(--secondary); }

/* ================= EN-TÊTES & NAVIGATION ================= */
:root {
    --topbar-h: 40px;
    --header-h: 72px;
    --chrome-h: calc(var(--topbar-h) + var(--header-h));
}
body.nav-open {
    overflow: hidden;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    height: var(--topbar-h);
    background: #0E241A;
    color: #ccc;
    font-size: 12px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    box-sizing: border-box;
}
.topbar-left, .topbar-right {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    align-items: center;
    min-width: 0;
}

/* Sélecteur de langue */
.lang-switcher { display: inline-flex; align-items: center; gap: 6px; margin-left: 4px; }
.lang-btn { background: none; border: none; color: #888; font-size: 11px; font-weight: bold; cursor: pointer; padding: 2px 4px; transition: color 0.3s; }
.lang-btn:hover { color: #fff; }
.lang-btn.active { color: var(--secondary); pointer-events: none; }
.lang-separator { color: #555; font-size: 10px; }

header.site-header,
body > header {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 1190;
    height: var(--header-h);
    background: #fff;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    box-sizing: border-box;
}
.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    letter-spacing: .5px;
    line-height: 1;
    text-transform: none;
    display: inline-flex;
    align-items: baseline;
    gap: .28em;
    flex-shrink: 0;
}
.logo span {
    font-family: 'Outfit', system-ui, sans-serif;
    color: var(--secondary);
    font-weight: 700;
    font-style: normal;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .72em;
    line-height: 1;
}
.brand-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}
.brand-logo-img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    background: transparent;
}
.brand-logo--header .brand-logo-img {
    height: 52px;
    width: auto;
    max-width: min(200px, 42vw);
}
.brand-logo--footer {
    margin: 0 0 14px;
}
.brand-logo--footer .brand-logo-img {
    width: clamp(88px, 10vw, 128px);
    height: auto;
    max-width: 128px;
    aspect-ratio: 1 / 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.25));
}
.brand-logo--admin .brand-logo-img {
    width: 96px;
    height: auto;
    margin: 0 auto 10px;
}
body > header nav,
header.site-header nav { display: flex; gap: 30px; align-items: center; }
body > header nav a,
header.site-header nav a { font-weight: 600; text-transform: uppercase; font-size: 14px; transition: var(--transition); }
body > header nav a:hover,
body > header nav a.active,
header.site-header nav a:hover,
header.site-header nav a.active { color: var(--secondary); }
.cart-icon { font-weight: bold; cursor: pointer; background: var(--bg-light); padding: 10px 20px; border-radius: 30px; border: 1px solid #eee; white-space: nowrap; flex-shrink: 0; }

/* Menu mobile */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; flex-shrink: 0; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--active span:nth-child(2) { opacity: 0; }
.nav-toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Toast notifications */
.mada-toast {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    padding: 14px 22px; border-radius: 8px; color: #fff; font-size: 14px; font-weight: 500;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18); max-width: 360px;
    transform: translateY(80px); opacity: 0; transition: all 0.35s ease; pointer-events: none;
}
.mada-toast--visible { transform: translateY(0); opacity: 1; }
.mada-toast--success { background: var(--primary); }
.mada-toast--warning { background: #e65100; }
.mada-toast--error { background: var(--secondary); }

/* ================= SECTIONS & GRILLES GÉNÉRALES ================= */
.section-title { text-align: center; font-size: 2.6rem; margin: 60px 0 12px; color: var(--primary); letter-spacing: 0.5px; }
.section-label { display: block; text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--secondary); margin-bottom: 8px; }
.section-desc { text-align: center; color: var(--gray); font-size: 1.05em; max-width: 620px; margin: 0 auto 40px; line-height: 1.7; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 5% 80px; }
.grid-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 18px;
    max-width: 1280px;
    margin: 0 auto;
}

/* ================= BOUTONS GÉNÉRAUX ================= */
.btn-main { display: inline-block; background: var(--secondary); color: #fff; padding: 15px 40px; font-size: 16px; text-transform: uppercase; font-weight: bold; border-radius: 4px; transition: var(--transition); border: none; cursor: pointer; text-decoration: none; text-align: center; }
.btn-main:hover { background: var(--tertiary); transform: translateY(-2px); }

/* ================= CARTES PRODUITS (BOUTIQUE — STYLE RÉFÉRENCE) ================= */
.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    border: 1px solid #ececec;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}
.card-media { position: relative; }
.card-media-main { position: relative; background: #f6f6f6; }
.card-media-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.card-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}
/* Diaporama auto des photos produit (boutique) */
.card-slideshow {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
    background: #f4f6f4;
}
.card-slideshow .card-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.75s ease;
    pointer-events: none;
}
.card-slideshow .card-slide.active {
    opacity: 1;
    z-index: 1;
}
.card:hover .card-slideshow .card-slide.active {
    transform: none;
}
.card-video {
    background: #111;
}
.card-img-placeholder {
    width: 100%;
    height: 170px;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
}
.card-media-thumbs {
    display: flex;
    gap: 5px;
    padding: 6px 8px 0;
    background: #fff;
}
.card-thumb {
    width: 36px;
    height: 28px;
    padding: 0;
    border: 1.5px solid #e5e5e5;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-thumb.active {
    border-color: var(--primary);
}
.card-thumb-video {
    color: var(--primary);
}
.card-thumb-video i,
.card-thumb-video svg {
    width: 12px;
    height: 12px;
}
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary);
    color: #fff;
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    z-index: 2;
    font-family: var(--font-body);
}
.card-info {
    padding: 14px 14px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-info h3,
.card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: 0.1px;
    line-height: 1.25;
}
.card-info .excerpt {
    font-family: var(--font-body);
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    line-height: 1.45;
    padding: 0;
    flex-grow: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Fiches techniques */
.product-specs {
    text-align: left;
    margin: 0 0 12px;
    padding: 8px 10px;
    background: #fafafa;
    border-radius: 6px;
    border: 1px solid #eee;
    font-size: 11px;
    color: #888;
    list-style: none;
}
.product-specs li {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    border-bottom: 1px dotted #ddd;
    padding: 5px 0;
}
.product-specs li:first-child { padding-top: 0; }
.product-specs li:last-child { border-bottom: none; padding-bottom: 0; }
.product-specs li span {
    color: #888;
    flex-shrink: 0;
}
.product-specs strong {
    color: var(--primary);
    font-weight: 600;
    text-align: right;
    font-family: var(--font-body);
    font-size: 11px;
}

/* Sélecteur de format (cartes boutique) */
.card-purchase { margin-top: auto; width: 100%; }
.weight-selector {
    display: flex;
    gap: 6px;
    background: #f2f2f2;
    padding: 4px;
    border-radius: 10px;
    margin: 0 0 10px;
    border: none;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: stretch;
}
.weight-btn {
    flex: 1 1 0;
    background: transparent;
    border: none;
    padding: 8px 6px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
    white-space: nowrap;
    min-height: 36px;
}
.weight-btn:hover { color: var(--primary); }
.weight-btn.active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* Prix & bouton */
.price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 6px;
    letter-spacing: 0;
    line-height: 1;
}
.price small {
    font-family: var(--font-body);
    font-size: 0.45em;
    color: #aaa;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 3px;
}
.shipping-cost {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 10px;
}
.btn-add {
    background: #fff;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 10px 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: var(--transition);
    font-family: var(--font-body);
}
.btn-add:hover { background: var(--primary); color: #fff; }

/* ================= AFFICHE GROS / B2B — confiance export ================= */
.bulk-promo-banner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(105deg, rgba(14, 36, 26, 0.96) 0%, rgba(27, 67, 50, 0.88) 48%, rgba(20, 52, 38, 0.82) 100%),
        url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1400&q=80') center/cover;
    color: #fff;
    border-radius: 4px;
    padding: clamp(32px, 5vw, 52px) clamp(28px, 4vw, 48px);
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.7fr);
    align-items: center;
    gap: clamp(28px, 4vw, 48px);
    margin: 36px 0 56px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 48px rgba(14, 36, 26, 0.28);
}
.bulk-promo-banner::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--secondary), #ff6b6b 70%, transparent);
    z-index: 1;
}
.bulk-promo-banner::after {
    content: "";
    position: absolute;
    right: -8%;
    top: -35%;
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 0;
}
.bulk-content,
.bulk-cta {
    position: relative;
    z-index: 1;
}
.bulk-eyebrow {
    display: inline-block;
    margin: 0 0 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffb4b4;
}
.bulk-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.2vw, 2.55rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #fff;
    margin: 0 0 12px;
}
.bulk-lead {
    margin: 0;
    max-width: 38rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #d5e0d7;
    font-weight: 400;
}
.bulk-thresholds {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    margin: 26px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    max-width: 34rem;
}
.bulk-thresholds li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bulk-th-label {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #a8b9ad;
    font-weight: 500;
}
.bulk-thresholds strong {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}
.bulk-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 22px 0 0;
    padding: 0;
}
.bulk-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #e8f0ea;
    font-weight: 500;
}
.bulk-trust svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
}
.bulk-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    text-align: center;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
}
.bulk-cta-btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    line-height: 1.25;
    padding: 16px 22px;
    background: var(--secondary) !important;
    color: #fff !important;
    opacity: 1 !important;
    box-shadow: 0 10px 24px rgba(211, 47, 47, 0.35);
}
.bulk-cta-btn:hover {
    background: #b71c1c !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(211, 47, 47, 0.4);
}
.bulk-cta-note {
    margin: 0;
    font-size: 0.82rem;
    color: #b7c7bb;
    letter-spacing: 0.02em;
}

@keyframes bulk-trust-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.bulk-trust li {
    animation: bulk-trust-in 0.55s ease both;
}
.bulk-trust li:nth-child(2) { animation-delay: 0.08s; }
.bulk-trust li:nth-child(3) { animation-delay: 0.16s; }

/* ================= PAGE D'ACCUEIL (INDEX) — PRO ================= */
.hero-home {
    position: relative;
    min-height: min(92vh, 820px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 72px 6% 56px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(10, 28, 20, 0.78) 0%, rgba(14, 36, 26, 0.88) 55%, rgba(10, 28, 20, 0.94) 100%),
        url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-home-inner {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-home-inner > * {
    animation: hero-rise 0.65s ease both;
}
.hero-home-inner > *:nth-child(1) { animation-delay: 0.04s; }
.hero-home-inner > *:nth-child(2) { animation-delay: 0.1s; }
.hero-home-inner > *:nth-child(3) { animation-delay: 0.16s; }
.hero-home-inner > *:nth-child(4) { animation-delay: 0.22s; }
.hero-home-inner > *:nth-child(5) { animation-delay: 0.28s; }
.hero-home-inner > *:nth-child(6) { animation-delay: 0.34s; }
@keyframes hero-rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-home-inner > * { animation: none; }
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}
.hero-eyebrow svg { width: 14px; height: 14px; color: var(--secondary); flex-shrink: 0; }
.hero-home h1 {
    margin: 0 0 16px;
    max-width: 18ch;
    font-size: clamp(1.95rem, 5.4vw, 3.35rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.18;
    color: #fff;
}
.hero-home h1 .hero-title-main { color: #fff; font-style: normal; }
.hero-home h1 .hero-title-accent {
    color: #fff;
    font-style: italic;
    font-weight: 500;
}
.hero-home .hero-lead,
.hero-home p.hero-lead {
    margin: 0 auto 28px;
    max-width: 38rem;
    font-size: clamp(0.98rem, 2vw, 1.12rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin: 0 0 36px;
    width: 100%;
    max-width: 520px;
}
.hero-actions .btn-main,
.hero-actions .btn-outline-light {
    flex: 1 1 200px;
    min-height: 48px;
    justify-content: center;
    padding: 12px 22px;
    font-size: 13px;
    border-radius: 6px;
}
.btn-outline-light {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    padding: 14px 32px; font-size: 14px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; border-radius: 6px; transition: var(--transition); font-family: var(--font-body);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; transform: translateY(-2px); }
.btn-outline-light svg { width: 16px; height: 16px; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 560px;
    margin: 0;
    padding: 16px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(8, 22, 16, 0.45);
    backdrop-filter: blur(6px);
}
.hero-stat { text-align: center; padding: 4px 6px; }
.hero-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 3.5vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.hero-stat span {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.3;
}

.trust-bar { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; padding: 50px 5%; border-bottom: 1px solid #eee; gap: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.trust-item { text-align: center; padding: 10px; }
.trust-item h4 { color: var(--primary); font-size: 1.05rem; margin-bottom: 8px; letter-spacing: 0.5px; }
.trust-item p { color: var(--gray); font-size: 13px; line-height: 1.5; }

.discovery-section {
    padding: 72px 5% 88px;
    background:
        radial-gradient(ellipse 70% 50% at 0% 0%, rgba(27, 67, 50, 0.06), transparent 55%),
        linear-gradient(180deg, #f7f9f7 0%, #ffffff 45%, #f4f7f5 100%);
}
.discovery-shell { max-width: 1180px; margin: 0 auto; }
.discovery-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 22px;
}
.discovery-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
}
.discovery-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary);
    border: 1px solid rgba(211, 47, 47, 0.35);
    padding: 5px 10px;
    border-radius: 4px;
    background: #fff;
}
.discovery-container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid #e4ebe7;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(27, 67, 50, 0.07);
}
.discovery-image {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    background: #14261d;
}
.discovery-slides { position: absolute; inset: 0; }
.discovery-image img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; top: 0; left: 0;
    opacity: 0; transform: scale(1.04);
    transition: opacity .85s ease, transform 2s ease;
    z-index: 0; pointer-events: none;
}
.discovery-image img.is-active {
    opacity: 1; transform: scale(1); z-index: 1;
}
.discovery-image-overlay {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(90deg, rgba(14,36,26,.18) 0%, transparent 45%);
}
.discovery-dots {
    position: absolute; left: 18px; bottom: 18px; z-index: 3;
    display: flex; gap: 7px; align-items: center;
}
.discovery-dot {
    width: 8px; height: 8px; border-radius: 50%;
    border: none; padding: 0; cursor: pointer;
    background: rgba(255,255,255,.4);
    transition: width .25s ease, background .25s ease;
}
.discovery-dot.is-active {
    width: 22px; border-radius: 999px; background: #fff;
}
.discovery-dot:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.discovery-content {
    padding: 40px 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.discovery-title {
    margin: 0 0 12px;
    font-size: clamp(1.85rem, 3.2vw, 2.55rem);
    line-height: 1.15;
    color: var(--primary);
    font-weight: 600;
}
.discovery-title em {
    font-style: italic;
    color: var(--secondary);
    font-weight: 500;
}
.discovery-subtitle {
    margin: 0 0 14px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #3d4f44;
    line-height: 1.45;
    font-family: var(--font-body);
}
.discovery-desc {
    margin: 0 0 22px;
    color: #5a665f;
    line-height: 1.7;
    font-size: 15px;
}
.discovery-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 10px;
}
.discovery-features li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    padding: 10px 12px;
    background: #f6f9f7;
    border: 1px solid #e8eee9;
    border-radius: 6px;
    font-size: 14px;
    color: #24362c;
    font-weight: 500;
    line-height: 1.4;
}
.discovery-features .feat-icon {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: #e8f2ec;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.discovery-features .feat-icon svg { width: 16px; height: 16px; }
.discovery-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px 20px;
    border-top: 1px solid #e8eee9;
    padding-top: 22px;
    margin-top: auto;
}
.discovery-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.discovery-price strong {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 2.35rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.discovery-price small {
    font-family: var(--font-body);
    font-size: 12px;
    color: #7a877f;
    font-weight: 400;
    line-height: 1.4;
    max-width: 28ch;
}
.btn-premium {
    background: var(--primary);
    color: white;
    padding: 14px 26px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 13px;
    border: 0;
    cursor: pointer;
    min-height: 48px;
}
.btn-premium:hover { background: var(--secondary); transform: translateY(-1px); }
.discovery-offer-form { display: inline-flex; margin: 0; }
.discovery-offer-form .btn-premium { width: 100%; }

@media (max-width: 900px) {
    .discovery-section { padding: 48px 4% 56px; }
    .discovery-container { grid-template-columns: 1fr; }
    .discovery-image { min-height: 260px; height: 280px; }
    .discovery-content { padding: 24px 18px 28px; }
    .discovery-title { font-size: 1.7rem; margin-bottom: 10px; }
    .discovery-subtitle { font-size: 0.98rem; }
    .discovery-action {
        flex-direction: column;
        align-items: stretch;
    }
    .discovery-offer-form,
    .discovery-offer-form .btn-premium { width: 100%; }
    .discovery-features li { grid-template-columns: 32px 1fr; padding: 10px; }
}

.story-section { display: flex; align-items: center; gap: 70px; padding: 90px 5%; background: var(--bg-light); flex-wrap: wrap; }
.story-content { flex: 1; min-width: 0; }
.story-content .section-label { text-align: left; }
.story-content h2 { font-size: 2.8rem; color: var(--primary); margin-bottom: 22px; line-height: 1.15; }
.story-content h2 span { color: var(--secondary); font-style: italic; }
.story-content p { color: #555; font-size: 1.02em; margin-bottom: 18px; line-height: 1.75; }
.story-image { flex: 1; min-width: 0; position: relative; }
.story-image img { width: 100%; border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.story-image::after { content: ''; position: absolute; border: 2px solid var(--tertiary); top: 20px; left: -20px; right: 20px; bottom: -20px; z-index: -1; border-radius: 8px; opacity: 0.5; }
.story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    align-items: center;
}
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}
.btn-outline-dark:hover {
    background: var(--primary);
    color: #fff;
}
.btn-outline-dark svg { width: 16px; height: 16px; }

/* Galerie + lightbox (partagé blog / histoire) */
.site-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin: 0 auto 40px;
    max-width: 1100px;
    text-align: left;
}
.site-gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #eee;
    margin: 0;
}
.site-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}
.site-gallery-item:hover img { transform: scale(1.06); }
.site-gallery-item figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 10px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: #fff; font-size: 12px; font-weight: 600;
}
.gallery-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.9);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 12px; padding: 20px;
}
.gallery-lightbox[hidden] { display: none !important; }
.gallery-lightbox img { max-width: min(92vw, 960px); max-height: 78vh; object-fit: contain; border-radius: 6px; }
.gallery-lightbox-caption { color: #eee; font-size: 14px; text-align: center; max-width: 640px; }
.gallery-lightbox-close, .gallery-lightbox-prev, .gallery-lightbox-next {
    position: absolute; background: rgba(255,255,255,0.12); color: #fff; border: none;
    font-size: 28px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
}
.gallery-lightbox-close { top: 18px; right: 18px; }
.gallery-lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.gallery-lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* Page documentaire Notre Histoire */
.docu-hero {
    background:
        linear-gradient(160deg, rgba(14,36,26,.88), rgba(27,67,50,.72)),
        url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: #fff;
    padding: 88px 5% 72px;
    text-align: center;
}
.docu-hero-inner { max-width: 720px; margin: 0 auto; }
.docu-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #f0dfb0;
    font-weight: 700;
    margin: 0 0 14px;
    opacity: .95;
}
.docu-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.1rem);
    color: #fff8e8;
    margin: 0 0 14px;
    line-height: 1.15;
}
.docu-lead {
    color: #d5e1d7;
    font-size: 1.05rem;
    line-height: 1.55;
    margin: 0 auto 28px;
    max-width: 540px;
    opacity: .95;
}
.docu-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.docu-page { background: #fff; }
.docu-chapter {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 5%;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 48px;
    align-items: center;
}
.docu-chapter + .docu-chapter {
    border-top: 1px solid #eef2ef;
}
.docu-chapter--reverse { direction: rtl; }
.docu-chapter--reverse > * { direction: ltr; }
.docu-step {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 10px;
}
.docu-chapter-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--primary);
    margin: 0 0 16px;
    line-height: 1.2;
}
.docu-chapter-text p {
    color: #555;
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0 0 14px;
}
.docu-chapter-visual {
    margin: 0;
    position: relative;
}
.docu-chapter-visual img {
    width: 100%;
    border-radius: 10px;
    display: block;
    box-shadow: 0 18px 44px rgba(16,40,28,.14);
    aspect-ratio: 4/3;
    object-fit: cover;
}
.docu-chapter-visual figcaption {
    margin-top: 10px;
    font-size: .82rem;
    color: #777;
    font-style: italic;
}
.docu-gallery-block {
    background: var(--bg-light);
    padding: 80px 5% 70px;
    text-align: center;
}
.docu-gallery-head {
    max-width: 680px;
    margin: 0 auto 36px;
    position: static;
    height: auto;
    display: block;
    background: transparent;
    box-shadow: none;
    padding: 0;
}
.docu-gallery-grid {
    max-width: 1100px;
    margin: 0 auto;
}
.docu-closing {
    text-align: center;
    padding: 80px 5%;
    background: #123526;
    color: #e5eee7;
}
.docu-closing h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #fff8e8;
    margin: 0 0 14px;
}
.docu-closing p {
    max-width: 52ch;
    margin: 0 auto 28px;
    color: #c9d6cb;
    line-height: 1.65;
}
.docu-closing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.docu-closing-actions .btn-outline-dark {
    border-color: rgba(255,255,255,.45);
    color: #fff;
}
.docu-closing-actions .btn-outline-dark:hover {
    background: rgba(255,255,255,.1);
}
@media (max-width: 900px) {
    .docu-chapter,
    .docu-chapter--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
        padding: 48px 5%;
    }
    .docu-hero { padding: 64px 5% 52px; }
    .docu-hero-actions .btn-main,
    .docu-hero-actions .btn-outline-light,
    .docu-closing-actions .btn-main,
    .docu-closing-actions .btn-premium,
    .docu-closing-actions .btn-outline-dark {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .story-actions { flex-direction: column; align-items: stretch; }
    .story-actions .btn-main,
    .story-actions .btn-outline-dark { justify-content: center; width: 100%; }
}

.categories-section { padding: 90px 5%; background: var(--bg-light); text-align: center; }
.cat-grid { display: flex; justify-content: center; align-items: flex-end; gap: 18px; margin-top: 50px; flex-wrap: wrap; }
.cat-box { position: relative; flex: 1; min-width: 220px; max-width: 270px; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12); text-decoration: none; transition: transform 0.4s ease, box-shadow 0.4s ease; background: #000; display: flex; flex-direction: column; justify-content: flex-end; height: 380px; }
.cat-box:nth-child(2), .cat-box:nth-child(3) { height: 440px; }
.cat-box:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.2); }
.newsletter-form--done input[type="email"] {
    opacity: 0.85;
    cursor: default;
}
.newsletter-form--done button[type="submit"] {
    background: #1B4332;
    cursor: default;
}
.cat-slideshow { position: absolute; inset: 0; z-index: 1; }
.cat-slide { position: absolute; inset: 0; object-fit: cover; opacity: 0; transition: opacity 1.5s ease, transform 6s linear; }
.cat-slide.active { opacity: 0.65; transform: scale(1.04); }
.cat-box:hover .cat-slide.active { opacity: 0.5; transform: scale(1.08); }
.cat-content { position: relative; z-index: 2; padding: 28px 24px; background: linear-gradient(to top, rgba(14,36,26,0.95) 0%, transparent 100%); text-align: left; }
.cat-content h3 { color: #fff; font-size: 1.6rem; margin-bottom: 6px; letter-spacing: 0.5px; }
.cat-link { color: rgba(255,255,255,0.75); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-body); }
.cat-link svg { stroke: var(--secondary); }

.commitment { background: linear-gradient(135deg, #1B4332, #0E241A); color: #fff; padding: 90px 5%; text-align: center; }
.commitment h2 { font-size: 2.4rem; color: #fff; margin-bottom: 24px; font-style: italic; font-weight: 400; line-height: 1.4; max-width: 820px; margin-left: auto; margin-right: auto; }
.commitment p { max-width: 680px; margin: 0 auto 32px; font-size: 1.05em; color: rgba(255,255,255,0.75); line-height: 1.8; }

/* ================= PAGE BLOG / LE MAG ================= */
.blog-header { background: linear-gradient(rgba(27, 67, 50, 0.8), rgba(74, 20, 140, 0.8)), url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1920&q=80') center/cover; color: white; text-align: center; padding: 100px 20px; margin-bottom: 50px; }
.blog-header h1 { font-size: 3.5em; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
.blog-header p { font-size: 1.2em; color: #e5e5e5; max-width: 600px; margin: 0 auto; }
.instagram-section { max-width: 1000px; margin: 0 auto 80px; padding: 0 5%; text-align: center; }
.instagram-section h2 { color: var(--primary); font-size: 2.2em; margin-bottom: 10px; text-transform: uppercase; }
.instagram-section p { color: var(--gray); margin-bottom: 40px; font-size: 1.1em;}
.social-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
.btn-social { display: inline-flex; align-items: center; justify-content: center; color: white; padding: 12px 35px; border-radius: 30px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; transition: transform 0.3s ease; text-decoration: none; }
.btn-social:hover { transform: scale(1.05); }
.btn-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.btn-tiktok { background: #000; color: #fff; border: 1px solid #333; }
.btn-tiktok span.blue { color: #69C9D0; }
.blog-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 30px; margin-top: 40px; margin-bottom: 80px; }
.blog-content { padding: 35px 25px; display: flex; flex-direction: column; flex-grow: 1;}
.blog-date { color: var(--secondary); font-size: 13px; font-weight: bold; margin-bottom: 10px; display: block; }
.blog-title { font-size: 20px; margin-bottom: 15px; color: var(--primary); line-height: 1.4; }
.blog-excerpt { color: var(--gray); font-size: 14px; margin-bottom: 25px; flex-grow: 1;}
.social-share { border-top: 1px solid #eee; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.share-btn {
    font-size: 12px; padding: 7px 12px; border-radius: 4px; color: #fff; font-weight: 600;
    cursor: pointer; text-decoration: none; border: none; font-family: inherit;
    display: inline-flex; align-items: center; gap: 6px;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.share-btn:hover { transform: translateY(-1px); opacity: 0.92; }
.share-btn svg { width: 14px; height: 14px; }
.share-native { background: var(--primary); }
.share-fb { background: #1877f2; }
.share-wa { background: #25d366; }
.share-li { background: #0a66c2; }
.share-x { background: #111; }
.share-tg { background: #229ed9; }
.share-copy { background: #6b7280; }
.share-tw { background: #1da1f2; }
.article-highlight { outline: 2px solid var(--secondary); outline-offset: 4px; border-radius: 8px; }

/* ================= FOOTER PREMIUM ================= */
.footer-premium { background-color: #0E241A; color: #e5e5e5; padding-top: 50px; margin-top: 60px; border-top: 4px solid var(--secondary); }
.footer-newsletter { max-width: 1200px; margin: 0 auto 50px; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.newsletter-text h3 { color: var(--secondary); font-size: 24px; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.newsletter-text p { color: #aaa; font-size: 14px; }
.newsletter-form { display: flex; flex: 1; max-width: 500px; min-width: 0; }
.newsletter-form input { flex: 1; padding: 12px 15px; border: none; border-radius: 4px 0 0 4px; outline: none; font-family: inherit; min-width: 0; }
.newsletter-form button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background-color: var(--secondary); color: #fff; font-weight: bold; padding: 12px 25px; border: none; border-radius: 0 4px 4px 0; cursor: pointer; transition: background 0.3s; text-transform: uppercase; font-size: 13px; white-space: nowrap; }
.newsletter-form button:hover { background-color: #b71c1c; }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: minmax(220px, 2fr) 1fr 1fr minmax(200px, 1.5fr); gap: 40px; margin-bottom: 50px; align-items: start; }
.footer-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    font-style: italic;
    color: #fff;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: baseline;
    gap: .28em;
    margin-bottom: 16px;
    text-decoration: none;
    line-height: 1;
}
.footer-logo span {
    font-family: 'Outfit', system-ui, sans-serif;
    color: var(--secondary);
    font-weight: 700;
    font-style: normal;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .72em;
    line-height: 1;
}
.brand-col p { color: #aaa; font-size: 14px; line-height: 1.6; margin-bottom: 20px; max-width: 300px; }
.social-icons { display: flex; flex-wrap: wrap; gap: 10px; }
.social-icons a { display: inline-flex; justify-content: center; align-items: center; width: 35px; height: 35px; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; font-size: 14px; font-weight: bold; transition: all 0.3s; text-decoration: none; }
.social-icons a svg { width: 16px; height: 16px; display: block; }
.social-icons a:hover { background: var(--tertiary); transform: translateY(-3px); }
.social-icons a.is-empty { opacity: 0.45; cursor: default; }
.social-icons a.is-empty:hover { transform: none; background: rgba(255,255,255,0.1); }
.footer-col h4 { color: var(--secondary); font-size: 16px; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: #aaa; font-size: 14px; text-decoration: none; transition: color 0.3s; display: inline-block; }
.footer-col ul a:hover { color: var(--secondary); transform: translateX(5px); }
.contact-list li { color: #aaa; font-size: 14px; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 15px; }
.footer-bottom { background-color: #07120D; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; font-size: 12px; color: #777; }
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a { color: #777; transition: color 0.3s; }
.footer-bottom .legal-links a:hover { color: var(--secondary); }

/* ================= ADAPTATION MOBILE (RESPONSIVE) ================= */
@media (max-width: 1100px) {
    .grid-container { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
    .grid-container { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 100%; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-newsletter { flex-direction: column; text-align: center; }
    .newsletter-form { max-width: 100%; min-width: 0; width: 100%; }
    .footer-brand-logo { width: 96px; max-width: 96px; }
}
@media (max-width: 560px) {
    .grid-container { grid-template-columns: 1fr 1fr; gap: 12px; }
    .card-img, .card-img-placeholder,
    .card-slideshow { height: 150px; }
    .card-info { padding: 12px 12px 14px; }
    .card-title { font-size: 1rem; line-height: 1.3; }
    .card-info .excerpt { font-size: 13px; }
    .card-info .price { font-size: 1.05rem; }
    .btn-add { font-size: 12px; padding: 10px 12px; min-height: 42px; }
    /* Specs visibles sur mobile (empilées pour tenir en 2 colonnes) */
    .product-specs {
        display: block;
        font-size: 10px;
        padding: 6px 8px;
        margin-bottom: 10px;
    }
    .product-specs li {
        flex-direction: column;
        align-items: flex-start;
        gap: 1px;
        padding: 4px 0;
    }
    .product-specs strong {
        text-align: left;
        font-size: 10px;
        word-break: break-word;
    }
}
@media (max-width: 400px) {
    .grid-container { grid-template-columns: 1fr; gap: 14px; }
    .card-img, .card-img-placeholder,
    .card-slideshow { height: 200px; }
}
@media (max-width: 768px) {
    .bulk-promo-banner {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 28px 22px 30px;
        gap: 24px;
    }
    .bulk-thresholds {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        max-width: none;
    }
    .bulk-trust {
        gap: 10px 16px;
    }
    .bulk-cta {
        align-items: stretch;
    }
    .btn-premium { width: 100%; text-align: center; justify-content: center; }
    .trust-bar { grid-template-columns: 1fr 1fr; gap: 16px; padding: 36px 5%; }
    .hero-actions { max-width: 100%; }
    .hero-actions .btn-main,
    .hero-actions .btn-outline-light { justify-content: center; }
    .cat-box { min-width: calc(50% - 12px); max-width: none; height: 300px !important; }
    .story-section { gap: 36px; padding: 60px 5%; }
    .story-image::after { display: none; }
    .account-order {
        flex-direction: column;
        align-items: flex-start;
    }
    .account-order-right {
        width: 100%;
        justify-items: start;
        text-align: left;
    }
    .account-tracking-actions {
        width: 100%;
    }
    .account-tracking-actions .btn-main,
    .account-tracking-actions .btn-outline-account {
        flex: 1 1 auto;
        text-align: center;
        justify-content: center;
    }
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        border-radius: 12px;
    }
    .newsletter-form input[type="email"] {
        border-radius: 12px 12px 0 0;
        width: 100%;
    }
    .newsletter-form button {
        border-radius: 0 0 12px 12px;
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 900px) {
    :root {
        --topbar-h: 34px;
        --header-h: 58px;
    }

    .topbar {
        padding: 0 3.5%;
        gap: 8px;
        font-size: 11px;
    }
    .topbar-left, .topbar-right {
        gap: 10px;
    }
    /* Compact : masquer les textes longs, garder l’essentiel */
    .topbar-left > .icon-inline:first-child { display: none; }
    .topbar [data-i18n="top_currency"],
    .topbar .icon-inline:has([data-i18n="top_currency"]) { display: none; }
    .topbar [data-i18n="nav_lang"] { display: none; }
    .topbar-wa {
        font-size: 0;
        gap: 0;
        padding: 4px;
        border-radius: 50%;
        background: rgba(37, 211, 102, 0.15);
        color: #25D366;
    }
    .topbar-wa svg { width: 14px; height: 14px; opacity: 1; }
    .topbar .icon-inline:has([data-site-phone]) span[data-site-phone] {
        font-size: 11px;
        letter-spacing: 0;
    }

    header.site-header,
    body > header {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 0 3.5%;
    }
    .logo { font-size: 20px; }
    .brand-logo--header .brand-logo-img { height: 42px; max-width: min(160px, 48vw); }
    .nav-toggle { display: flex; order: 2; margin-left: auto; }
    .cart-icon {
        order: 3;
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 999px;
    }
    .cart-icon svg { width: 16px; height: 16px; }

    body > header nav,
    header.site-header nav {
        position: fixed;
        top: var(--chrome-h);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1180;
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: #fff;
        border-top: 1px solid #eee;
        padding: 8px 0 28px;
        overflow-y: auto;
        transform: translateX(110%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform .28s ease, opacity .2s ease, visibility .2s;
        box-shadow: -8px 0 30px rgba(14, 36, 26, 0.12);
    }
    body > header nav.nav-open,
    header.site-header nav.nav-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    body > header nav a,
    header.site-header nav a {
        padding: 14px 5%;
        border-bottom: 1px solid #f3f5f4;
        font-size: 14px;
        letter-spacing: .04em;
    }
    body > header nav a:active,
    header.site-header nav a:active {
        background: #f7f9f7;
    }

    .hero-home { padding: 56px 5% 44px; min-height: auto; }
    .section-title { font-size: clamp(22px, 5vw, 28px); }
    .cart-summary { position: static; }
    .blog-header { padding: 70px 16px; }
    .blog-header h1 { font-size: clamp(1.8em, 8vw, 2.8em); }
    .blog-container { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .footer-main { grid-template-columns: 1fr; text-align: center; gap: 28px; }
    .footer-brand-mark { justify-content: center; }
    .footer-brand-logo { width: 78px; max-width: 78px; }
    .brand-col p { margin: 0 auto 20px; max-width: 280px; }
    .social-icons { justify-content: center; }
    .contact-list li { justify-content: center; text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .footer-bottom .legal-links { flex-wrap: wrap; justify-content: center; gap: 12px 18px; }
    .mada-toast { left: 16px; right: 16px; max-width: none; }
    .trust-bar { grid-template-columns: 1fr; }
    .cat-box { min-width: 100%; max-width: 100%; height: 280px !important; }
    .discovery-image { height: 240px; min-height: 240px; }
    .commitment h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
    .bulk-thresholds { grid-template-columns: 1fr; }
    .bulk-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
    .shop-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
    .shop-filter-chip { flex: 0 0 auto; }

    .topbar-left > .icon-inline:has([data-site-phone]) span[data-site-phone] {
        max-width: 118px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .cart-icon span[data-i18n="nav_cart"] { display: none; }
}
/* ================= FRAIS DE PORT DHL ================= */
.shipping-cost {
    display: block; /* Le place sur une nouvelle ligne en dessous du prix */
    font-size: 12px;
    color: var(--secondary); /* En rouge pour attirer l'œil doucement */
    font-weight: 600;
    margin-top: 5px;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* ================= PAGE COMMANDE / PANIER ================= */
.cart-page { padding-bottom: 60px; }
.cart-page-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin: 28px 0 8px;
}
.cart-page-title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--primary);
    margin: 0;
    letter-spacing: 0.5px;
}
.cart-continue {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.cart-continue:hover { text-decoration: underline; }
.cart-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: 28px;
    margin-top: 24px;
    align-items: start;
}
.cart-list {
    background: #fff;
    padding: 8px 24px;
    border-radius: 12px;
    border: 1px solid #eee;
    min-width: 0;
}
.cart-summary {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #eee;
    position: sticky;
    top: 90px;
}
.cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    padding: 18px 0;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-details { min-width: 0; }
.cart-item-details h4 {
    color: var(--primary);
    font-size: 15px;
    margin: 0 0 4px;
    line-height: 1.3;
    font-weight: 700;
}
.cart-item-meta { margin: 0; color: #888; font-size: 13px; }
.cart-item-qty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.cart-item-qty form { display: inline; margin: 0; }
.cart-qty-value {
    min-width: 22px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}
.cart-remove-form { margin-left: 4px; }
.qty-btn-remove { color: #999; }
.qty-btn-remove:hover { background: #ffebeb; color: var(--secondary); border-color: #f5c2c0; }
.cart-item-price {
    font-size: 15px;
    color: var(--primary);
    min-width: 72px;
    text-align: right;
    font-weight: 700;
    white-space: nowrap;
}
.cart-shipping-note {
    font-size: 12px;
    color: var(--gray);
    margin: 0 0 12px;
    line-height: 1.5;
}
.cart-shipping-note a { color: var(--secondary); font-weight: 600; }
.item-details { flex: 1; min-width: 120px; }
.item-details h4 { color: var(--primary); font-size: 16px; margin-bottom: 5px; }
.item-price { color: var(--gray); font-size: 13px; }
.item-qty { display: flex; align-items: center; gap: 6px; }
.qty-btn {
    width: 30px; height: 30px;
    border: 1px solid #ddd; background: #fff; border-radius: 6px;
    cursor: pointer; font-size: 16px; color: var(--primary); line-height: 1;
}
.qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.qty-btn:disabled { opacity: 0.35; cursor: not-allowed; background: #f5f5f5; color: #999; }
.qty-btn:disabled:hover { background: #f5f5f5; color: #999; border-color: #ddd; }
.qty-value { min-width: 22px; text-align: center; font-weight: 600; font-size: 14px; }
.item-total {
    font-size: 15px; color: var(--primary); min-width: 72px;
    text-align: right; font-weight: 700;
}
.item-delete {
    background: transparent; color: #999; border: none;
    width: 32px; height: 32px; border-radius: 50%;
    font-size: 22px; cursor: pointer; line-height: 1;
}
.item-delete:hover { background: #ffebeb; color: var(--secondary); }
.cart-empty { text-align: center; padding: 48px 20px; }
.cart-empty p { color: var(--gray); margin-bottom: 20px; font-size: 15px; }
.summary-title {
    font-size: 15px; color: var(--primary); margin: 0 0 18px;
    text-transform: uppercase; letter-spacing: 1px;
    border-bottom: 1px solid #eee; padding-bottom: 10px;
}
.summary-line {
    display: flex; justify-content: space-between; gap: 12px;
    margin-bottom: 12px; color: #666; font-size: 14px;
}
.summary-line strong { color: var(--primary); font-weight: 600; }
.summary-line.total {
    border-top: 1px solid #eee; padding-top: 14px; margin-top: 8px; margin-bottom: 20px;
    font-size: 17px; color: var(--primary); font-weight: 700;
}
.summary-line.total strong { font-size: 18px; }
.footer-brand-mark {
    display: flex;
    align-items: center;
    margin: 0 0 12px;
    min-height: 0;
}
.footer-brand-logo {
    display: block;
    width: clamp(72px, 8vw, 110px);
    height: auto;
    max-width: 110px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: transparent;
    margin: 0;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.25));
}
.footer-col.brand-col .footer-logo {
    margin-bottom: 12px;
    line-height: 1.1;
}
.contact-list li {
    align-items: flex-start;
    line-height: 1.45;
}
.contact-list a {
    color: #aaa;
    text-decoration: none;
    word-break: break-word;
    transition: color .3s;
}
.contact-list a:hover { color: var(--secondary); }
.contact-list .icon-inline i,
.contact-list [data-lucide] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    color: var(--secondary);
}
.footer-col.brand-col .footer-brand-mark {
    margin-bottom: 14px;
}
.contact-list a[data-site-whatsapp] {
    color: #c8d4cb;
    text-decoration: none;
    font-weight: 600;
}
.contact-list a[data-site-whatsapp]:hover {
    color: #25D366;
}
.topbar-wa {
    color: inherit;
    text-decoration: none;
}
.topbar-wa:hover { color: #25D366; }

/* WhatsApp FAB — isolé, ne perturbe pas la mise en page */
#wa-float.wa-fab {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 1100;
    width: 56px;
    height: 56px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(16, 40, 28, .28);
    transition: transform .18s ease, box-shadow .18s ease;
    line-height: 0;
    box-sizing: border-box;
}
#wa-float.wa-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 40, 28, .34);
    color: #fff;
}
#wa-float.wa-fab svg {
    width: 28px;
    height: 28px;
    display: block;
    flex: none;
}
#wa-float.wa-fab span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
@media (max-width: 600px) {
    #wa-float.wa-fab {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
    }
    #wa-float.wa-fab svg {
        width: 26px;
        height: 26px;
    }
}
.summary-form { margin-top: 4px; }
.cart-checkout-form { margin-top: 16px; }
.cart-clear-form { margin-top: 12px; }
.cart-devis-link { margin-top: 12px; font-size: 13px; }
.cart-alert { max-width: none; margin-bottom: 18px; }
.btn-block { width: 100%; }
.summary-form input:not([type="radio"]):not([type="checkbox"]),
.summary-form textarea {
    width: 100%; padding: 11px 12px; margin-bottom: 10px;
    border: 1px solid #e2e2e2; border-radius: 8px; font-family: inherit; font-size: 14px;
    background: #fafafa;
}
.summary-form input:not([type="radio"]):not([type="checkbox"]):focus,
.summary-form textarea:focus {
    outline: none; border-color: var(--primary); background: #fff;
}
.summary-form textarea { resize: vertical; min-height: 56px; }
.cart-submit-btn { width: 100%; margin-top: 4px; justify-content: center; }
.order-type-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
    padding: 3px;
    background: #f3f4f3;
    border-radius: 8px;
}
.order-type-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8px 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: #666;
    text-align: center;
    transition: background .15s, color .15s, box-shadow .15s;
}
.order-type-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
}
.order-type-option:has(input:checked) {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.order-type-option:hover { color: var(--primary); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1.3fr; gap: 10px; }
.form-row-2 input { margin-bottom: 10px; }
@media (max-width: 900px) {
    .cart-wrapper { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
}
@media (max-width: 600px) {
    .cart-list { padding: 8px 14px 14px; }
    .cart-item {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "details price"
            "qty qty";
        gap: 10px 12px;
        padding: 16px 0;
        align-items: start;
    }
    .cart-item-details { grid-area: details; }
    .cart-item-qty {
        grid-area: qty;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
    }
    .cart-item-price {
        grid-area: price;
        justify-self: end;
        align-self: start;
        font-size: 16px;
        min-width: 0;
    }
    .form-row-2 { grid-template-columns: 1fr; }
    .cart-page-head {
        margin-top: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .cart-page-title { font-size: 1.45rem; }
    .cart-summary {
        padding: 18px 16px 20px;
        border-radius: 14px;
    }
    .summary-form input:not([type="radio"]):not([type="checkbox"]),
    .summary-form textarea {
        font-size: 16px;
        padding: 13px 14px;
        border-radius: 10px;
    }
}

/* ===== Comptes clients ===== */
.auth-page {
    max-width: 560px;
    margin: 40px auto 80px;
    padding: 0 16px;
}
.auth-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 28px 26px 32px;
    box-shadow: 0 8px 28px rgba(27, 67, 50, 0.06);
}
.auth-card-sm { max-width: 420px; margin: 0 auto; }
.auth-card h1 {
    font-size: 1.55rem;
    margin: 0 0 8px;
    color: var(--primary);
}
.auth-lead {
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.45;
}
.auth-hint {
    margin: -4px 0 14px;
    color: #888;
    font-size: 12px;
    line-height: 1.4;
}
.auth-code-input {
    font-size: 1.35rem !important;
    letter-spacing: 0.35em;
    text-align: center;
    font-weight: 700;
}
.auth-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin: 0 0 5px;
}
.auth-form input,
.auth-form select,
.auth-form textarea {
    width: 100%;
    padding: 11px 12px;
    margin-bottom: 12px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: #fafafa;
}
.auth-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}
.auth-form input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.auth-submit { width: 100%; justify-content: center; margin-top: 6px; }
.auth-footer,
.auth-switch {
    margin: 18px 0 0;
    text-align: center;
    font-size: 14px;
    color: #666;
}
.auth-footer a,
.auth-switch a { color: var(--primary); font-weight: 600; }
.auth-alert {
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.4;
}
.auth-alert-ok { background: #eef8f1; color: #1b4332; border: 1px solid #c8e6d0; }
.auth-alert-error { background: #fdf0f0; color: #8b1e1e; border: 1px solid #f0c4c4; }

.account-page { max-width: 980px; margin: 36px auto 80px; padding: 0 16px; }
.account-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.account-head h1 { margin: 0 0 6px; color: var(--primary); font-size: 1.7rem; }
.account-hello { margin: 0; color: #666; font-size: 14px; }
.account-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.account-logout-form { display: inline; }
.btn-copy-track { padding: 4px 10px; font-size: 12px; }
.input-disabled { opacity: .7; }
.btn-outline-account {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    color: #444;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    background: #fff;
}
.btn-outline-account:hover { border-color: var(--primary); color: var(--primary); }
.account-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 20px;
}
.account-panel {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 22px 20px 24px;
}
.account-panel h2 {
    margin: 0 0 16px;
    font-size: 1.05rem;
    color: var(--primary);
}
.account-empty { color: #777; font-size: 14px; margin: 0 0 12px; }
.account-orders { display: grid; gap: 10px; }
.account-order {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fafafa;
    align-items: center;
}
.account-order-meta {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 3px;
}
.account-order-track {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}
.account-order-track code {
    background: rgba(211,47,47,.08);
    color: var(--secondary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}
.account-order-track a {
    margin-left: 8px;
    color: var(--secondary);
    font-weight: 700;
    text-decoration: underline;
}
.account-tracking {
    margin-bottom: 28px;
}
.account-tracking h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.account-tracking h2 svg {
    width: 22px;
    height: 22px;
    color: var(--secondary);
}
.account-tracking-list {
    display: grid;
    gap: 14px;
}
.account-tracking-card {
    border: 1px solid #dfe8df;
    border-radius: 12px;
    padding: 18px 18px 16px;
    background: linear-gradient(180deg, #fff 0%, #f7faf7 100%);
    box-shadow: 0 8px 24px rgba(27,67,50,.06);
}
.account-tracking-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    font-size: 14px;
}
.account-tracking-top span { color: #777; font-size: 12px; }
.account-tracking-number {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.account-tracking-label {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #7a8a7e;
    font-weight: 600;
}
.account-tracking-number code {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(27,67,50,.06);
    padding: 8px 12px;
    border-radius: 8px;
    letter-spacing: .04em;
}
.account-tracking-carrier {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
}
.account-tracking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.account-tracking-actions .btn-main {
    padding: 10px 18px;
    font-size: 13px;
}
.account-order-right {
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
}
.account-order-track-link {
    margin-left: 6px;
    font-size: 12px;
    color: var(--secondary);
    font-weight: 600;
}
.account-pay-btn {
    padding: 8px 14px;
    font-size: 13px;
}
.account-pdf {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid rgba(27,67,50,0.25);
    padding: 4px 10px;
    border-radius: 6px;
}
.account-pdf:hover { background: rgba(27,67,50,0.06); }
.account-cart-tip {
    margin: 0 0 12px;
    padding: 10px 12px;
    background: rgba(27,67,50,0.06);
    border-radius: 8px;
    font-size: 13px;
    color: #1b4332;
}
.account-cart-tip a { color: var(--primary); font-weight: 700; }
@media (max-width: 800px) {
    .account-grid { grid-template-columns: 1fr; }
}

/* ===== Devis (page dédiée) ===== */
.order-facture-note {
    font-size: 12px;
    line-height: 1.4;
    color: #666;
    margin: 0 0 12px;
    padding: 10px 12px;
    background: #f7f7f7;
    border-radius: 8px;
}
.order-facture-note a { color: var(--primary); font-weight: 700; }
.quote-page { max-width: 1280px; margin: 28px auto 80px; padding: 0 16px; width: 100%; box-sizing: border-box; }
.quote-page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    min-width: 0;
}
.quote-title { margin: 0 0 8px; color: var(--primary); font-size: 1.8rem; overflow-wrap: anywhere; }
.quote-lead { margin: 0; max-width: 640px; color: #666; font-size: 14px; line-height: 1.5; }
.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 360px);
    gap: 22px;
    align-items: start;
    width: 100%;
    min-width: 0;
}
.quote-products,
.quote-summary,
.quote-card,
.quote-card-body {
    min-width: 0;
    max-width: 100%;
}
.quote-products { display: grid; gap: 14px; width: 100%; }
.quote-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 14px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 12px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}
.quote-card-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.quote-card-img-ph {
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
}
.quote-card-body .card-title {
    font-size: 1.05rem;
    margin-bottom: 4px;
    text-align: left;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.quote-card-desc {
    font-size: 12px;
    color: #888;
    margin: 0 0 10px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.quote-formats { margin: 0 0 10px; }
.quote-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.quote-qty {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f2f2f2;
    border-radius: 8px;
    padding: 3px;
}
.quote-qty-input {
    width: 48px;
    border: none;
    background: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 4px;
}
.quote-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    margin-right: auto;
}
.quote-price small { font-size: 0.5em; color: #aaa; }
.quote-card-actions .btn-add {
    width: auto;
    padding: 9px 14px;
    white-space: nowrap;
}
.quote-summary { position: sticky; top: calc(var(--chrome-h) + 16px); }
.quote-summary-note {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 600;
    margin: -4px 0 12px;
}
.quote-items { margin-bottom: 12px; max-height: 280px; overflow: auto; }
.quote-items-empty { font-size: 13px; color: #888; margin: 0 0 8px; }
.quote-item-row {
    display: flex; justify-content: space-between; gap: 12px; align-items: flex-start;
    padding: 10px 0; border-bottom: 1px solid rgba(27,67,50,.08); font-size: 13px;
}
.quote-item-row button {
    border: 0; background: transparent; color: var(--secondary); cursor: pointer; font-size: 1.1rem; line-height: 1;
}
.quote-line {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}
.quote-line-info { min-width: 0; }
.quote-line-info strong { display: block; font-size: 13px; color: var(--primary); }
.quote-line-info span { font-size: 11px; color: #888; }
.quote-line-qty {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.quote-line-qty span { font-size: 13px; font-weight: 700; min-width: 18px; text-align: center; }
.quote-line-remove {
    border: none;
    background: transparent;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}
.quote-footnote {
    margin: 12px 0 0;
    font-size: 11px;
    color: #999;
    line-height: 1.4;
}
.quote-nego-box {
    margin: 0 0 14px;
    padding: 12px;
    background: #fff8e8;
    border: 1px solid #e8c96a;
    border-radius: 8px;
}
.quote-nego-title {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    color: #8a6500;
}
.quote-nego-text {
    margin: 0 0 8px;
    font-size: 12px;
    color: #6b5200;
    line-height: 1.4;
}
.quote-nego-box textarea {
    width: 100%;
    padding: 10px 11px;
    border: 1px solid #e2d4a8;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    background: #fff;
    resize: vertical;
    min-height: 64px;
}
@media (max-width: 900px) {
    .quote-layout { grid-template-columns: minmax(0, 1fr); }
    .quote-summary { position: static; width: 100%; }
    .quote-products { width: 100%; }
}
@media (max-width: 560px) {
    .quote-card { grid-template-columns: 72px minmax(0, 1fr); }
    .quote-card-img, .quote-card-img-ph { width: 72px; height: 72px; max-width: 72px; }
    .quote-card-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .quote-card-actions .btn-add {
        width: 100%;
        white-space: normal;
        justify-content: center;
    }
    .quote-price { margin-right: 0; }
}

/* ===== Avis clients ===== */
.avis-hero {
    padding: 88px 5% 72px;
    background:
        linear-gradient(155deg, rgba(14,36,26,.92), rgba(27,67,50,.78)),
        url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: #fff;
    text-align: center;
}
.avis-hero-inner { max-width: 720px; margin: 0 auto; }
.avis-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .85;
    margin: 0 0 14px;
}
.avis-hero h1 {
    font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
    font-size: clamp(2rem, 4vw, 3.1rem);
    margin: 0 0 14px;
    line-height: 1.15;
}
.avis-lead {
    margin: 0 auto 28px;
    max-width: 540px;
    font-size: 1.05rem;
    line-height: 1.55;
    opacity: .92;
}
.avis-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.avis-hero-stats {
    display: inline-flex;
    gap: 28px;
    padding: 14px 22px;
    border-radius: 12px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
}
.avis-hero-stats div { display: flex; flex-direction: column; gap: 2px; }
.avis-hero-stats strong { font-size: 1.35rem; }
.avis-hero-stats span { font-size: 12px; opacity: .8; }

.avis-invite {
    padding: 48px 5%;
    background: var(--bg-light, #f7f9f7);
    border-bottom: 1px solid #e8eee9;
}
.avis-invite-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.avis-invite-inner .section-title { margin-bottom: 8px; }
.avis-invite-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.avis-list-section { padding: 70px 5% 40px; }
.avis-list-head { text-align: center; margin-bottom: 36px; }
.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}
.avis-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    padding: 28px;
    background: #f7f9f7;
    border-radius: 12px;
    border: 1px dashed #d5ddd8;
}
.avis-card {
    background: #fff;
    border: 1px solid #e8eee9;
    border-radius: 14px;
    padding: 22px 20px 18px;
    box-shadow: 0 6px 20px rgba(27,67,50,.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.avis-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.avis-stars {
    color: #c9a227;
    letter-spacing: 1px;
    font-size: 15px;
}
.avis-card-top time { font-size: 12px; color: #888; }
.avis-card-msg {
    margin: 0;
    color: #333;
    font-size: 14.5px;
    line-height: 1.55;
    flex: 1;
}
.avis-card-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 10px;
    border-top: 1px solid #f0f3f1;
    font-size: 13px;
}
.avis-card-meta strong { color: var(--primary); }
.avis-card-meta span { color: #777; }

.avis-form-section {
    padding: 50px 5% 90px;
    background: linear-gradient(180deg, #f7f9f7 0%, #fff 40%);
}
.avis-form-wrap {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}
.avis-form-points {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.avis-form-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
}
.avis-form-points svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.avis-form {
    background: #fff;
    border: 1px solid #e8eee9;
    border-radius: 14px;
    padding: 26px 24px 28px;
    box-shadow: 0 10px 28px rgba(27,67,50,.06);
}
.avis-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.avis-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    margin: 0 0 14px;
}
.avis-rating input { position: absolute; opacity: 0; pointer-events: none; }
.avis-rating label {
    font-size: 28px;
    color: #d5d5d5;
    cursor: pointer;
    line-height: 1;
    margin: 0 !important;
    transition: color .15s, transform .15s;
}
.avis-rating label:hover,
.avis-rating label:hover ~ label,
.avis-rating input:checked ~ label {
    color: #c9a227;
}
.avis-rating label:hover { transform: scale(1.08); }

.avis-home {
    padding: 80px 5%;
    background: #fff;
}
.avis-home-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}
.avis-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 32px;
}
.avis-home-cta {
    text-align: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .avis-form-wrap { grid-template-columns: 1fr; gap: 28px; }
    .avis-home-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 600px) {
    .avis-hero { padding: 64px 5% 52px; }
    .avis-form-row { grid-template-columns: 1fr; }
    .avis-invite-inner { flex-direction: column; align-items: flex-start; }
}

/* ===== Page article = même mise en page que Notre Histoire (docu-*) ===== */
.article-missing {
    max-width: 560px;
    margin: 60px auto 80px;
    padding: 0 5%;
    text-align: center;
}
.article-missing h1 { color: var(--primary); margin: 10px 0 12px; }
.article-missing p { color: #666; margin-bottom: 22px; }

.docu-kicker a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* Chapitre sans image : même typo Histoire, colonne unique centrée */
.docu-chapter--solo {
    grid-template-columns: 1fr;
    max-width: 720px;
    direction: ltr;
}

/* Encadré rencontre — même famille visuelle que les chapitres Histoire */
.docu-rencontre {
    padding: 28px 5%;
    background: #f7f9f7;
    border-top: 1px solid #eef2ef;
    border-bottom: 1px solid #eef2ef;
}
.docu-rencontre-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e8eee9;
    border-left: 4px solid var(--secondary);
    border-radius: 10px;
    padding: 36px 40px;
    box-shadow: 0 10px 28px rgba(16,40,28,.06);
}
.docu-rencontre-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 10px;
}
.docu-rencontre-label svg { width: 15px; height: 15px; }
.docu-rencontre h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    margin: 0 0 14px;
    line-height: 1.2;
}
.docu-rencontre p {
    color: #555;
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0 0 14px;
}
.docu-rencontre p:last-child { margin-bottom: 0; }

.article-related {
    padding: 70px 5% 80px;
    background: #fff;
    text-align: center;
}
.article-related-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}
.article-related-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e8eee9;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: transform .2s, box-shadow .2s;
}
.article-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(27,67,50,.1);
}
.article-related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.article-related-card > div { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.article-related-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}
.article-related-card p { margin: 0; color: #666; font-size: 14px; line-height: 1.5; flex: 1; }
.article-related-card span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.article-related-card span svg { width: 16px; height: 16px; }

.blog-card-media { display: block; }
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--secondary); }
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 4px 0 12px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.blog-read-more svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
    .docu-chapter--solo { max-width: none; }
    .docu-rencontre-inner { padding: 24px 20px; }
    .article-related-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ===== Pages Service Client (footer) ===== */
.svc-hero {
    background: linear-gradient(160deg, #0f2a20 0%, #1b4332 55%, #234d3a 100%);
    color: #fff;
    padding: 72px 5% 56px;
    text-align: center;
}
.svc-hero-inner { max-width: 720px; margin: 0 auto; }
.svc-kicker {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #f0dfb0;
    font-weight: 700;
    margin: 0 0 12px;
}
.svc-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: #fff8e8;
    margin: 0 0 12px;
    line-height: 1.15;
}
.svc-lead {
    color: #d5e1d7;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 auto 24px;
    max-width: 540px;
}
.svc-updated {
    margin: -8px auto 22px;
    color: #b9c9bc;
    font-size: .88rem;
}
.svc-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 5% 72px;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    width: 100%;
    max-width: min(1100px, 100%);
    box-sizing: border-box;
}
.svc-side,
.svc-main {
    min-width: 0;
    max-width: 100%;
}
.svc-side-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 0 0 12px;
}
.svc-side-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 22px;
}
.svc-side-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #445248;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
}
.svc-side-nav a:hover { background: #f4f7f5; color: var(--primary); }
.svc-side-nav a.active {
    background: #fff;
    border-color: #e4ebe7;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(16,40,28,.06);
}
.svc-side-card {
    background: #f7f9f7;
    border: 1px solid #e8eee9;
    border-radius: 12px;
    padding: 18px;
}
.svc-side-card strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 6px;
}
.svc-side-card p {
    margin: 0 0 14px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}
.svc-side-card .btn-main {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 10px 14px;
}
.svc-block {
    padding: 0 0 28px;
    margin: 0 0 28px;
    border-bottom: 1px solid #eef2ef;
}
.svc-block:last-of-type { border-bottom: none; }
.svc-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    color: var(--primary);
    margin: 0 0 12px;
    line-height: 1.25;
}
.svc-block p {
    color: #555;
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0 0 12px;
}
.svc-main--faq .svc-block h2 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.svc-faq-group {
    margin: 8px 0 22px;
    padding: 18px 0 10px;
    border-top: 2px solid var(--primary);
}
.svc-faq-group:first-child {
    border-top: 0;
    padding-top: 0;
}
.svc-faq-group h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    color: var(--primary);
    line-height: 1.25;
}
.svc-faq { display: flex; flex-direction: column; gap: 10px; }
.svc-faq-item {
    background: #fff;
    border: 1px solid #e8eee9;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}
.svc-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 42px 16px 18px;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    position: relative;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.35;
}
.svc-faq-item summary::-webkit-details-marker { display: none; }
.svc-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
}
.svc-faq-item[open] summary::after { content: '–'; }
.svc-faq-answer {
    padding: 0 16px 16px;
}
.svc-faq-item p,
.svc-faq-answer p {
    margin: 0 0 10px;
    padding: 0;
    color: #555;
    line-height: 1.7;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.svc-faq-item p:last-child,
.svc-faq-answer p:last-child { margin-bottom: 0; }
.svc-faq-group h2,
.svc-block h2,
.svc-lead,
.svc-main {
    overflow-wrap: anywhere;
    word-break: break-word;
}
.svc-closing {
    margin-top: 36px;
    padding: 32px 28px;
    background: #123526;
    border-radius: 14px;
    text-align: center;
    color: #e5eee7;
}
.svc-closing h2 {
    font-family: var(--font-heading);
    color: #fff8e8;
    margin: 0 0 8px;
    font-size: 1.6rem;
}
.svc-closing p {
    margin: 0 auto 20px;
    max-width: 42ch;
    color: #c9d6cb;
    line-height: 1.6;
}
.svc-closing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.svc-closing-actions .btn-outline-dark {
    border-color: rgba(255,255,255,.45);
    color: #fff;
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0 auto 28px;
    max-width: 800px;
}
.shop-filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #dce5df;
    background: #fff;
    color: #445248;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.shop-filter-chip:hover { border-color: var(--secondary); color: var(--primary); }
.shop-filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

@media (max-width: 900px) {
    .svc-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        padding: 28px 4% 56px;
        width: 100%;
    }
    .svc-side {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .svc-side-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        max-width: 100%;
        width: 100%;
        padding: 2px 2px 10px;
        margin: 0 0 12px;
        scrollbar-width: thin;
    }
    .svc-side-nav a {
        flex: 0 0 auto;
        white-space: nowrap;
        text-align: center;
        border: 1px solid #e5ebe6;
        border-radius: 999px;
        padding: 9px 14px;
        font-size: 13px;
        background: #fff;
        max-width: none;
    }
    .svc-side-nav a.active {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }
    .svc-side-card { width: 100%; box-sizing: border-box; }
    .svc-hero { padding: 48px 4% 36px; }
    .svc-hero-inner { max-width: 100%; padding: 0; }
    .svc-hero-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    .svc-hero-actions .btn-main,
    .svc-hero-actions .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
    .svc-main--faq { display: flex; flex-direction: column; gap: 10px; }
    .svc-faq-group { margin: 12px 0 4px; padding-top: 8px; }
    .svc-faq-group h2 { font-size: 1.2rem; }
    .svc-closing { padding: 24px 16px; }
    .svc-closing-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .svc-closing-actions .btn-main,
    .svc-closing-actions .btn-outline-dark {
        width: 100%;
        justify-content: center;
    }
}

/* Traduction en cours */
html.i18n-translating body::after {
    content: 'EN…';
    position: fixed;
    right: 16px;
    bottom: 88px;
    z-index: 10050;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 8px 12px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    pointer-events: none;
}

/* ===== SEO pillar (accueil) — commercial ===== */
.seo-pillar {
    position: relative;
    padding: 88px 5% 96px;
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(27,67,50,.07), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(211,47,47,.05), transparent 50%),
        linear-gradient(180deg, #f3f6f4 0%, #eef2ef 100%);
    overflow: hidden;
}
.seo-pillar::before {
    content: '';
    position: absolute;
    inset: 24px 4% auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27,67,50,.18), transparent);
    pointer-events: none;
}
.seo-pillar-inner {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}
.seo-pillar-head {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}
.seo-pillar-head .section-label {
    display: inline-block;
    margin-bottom: 14px;
}
.seo-pillar-head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    color: var(--primary);
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -.02em;
    max-width: none;
}
.seo-pillar-lead {
    margin: 0 auto 28px;
    max-width: 54ch;
    color: #4a5a52;
    font-size: 1.05rem;
    line-height: 1.7;
}
.seo-proofs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    padding: 0;
    margin: 0;
}
.seo-proofs li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 12px 16px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(27,67,50,.1);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(18,40,30,.04);
}
.seo-proofs strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    color: var(--primary);
    line-height: 1;
    font-weight: 700;
}
.seo-proofs span {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #6b7a72;
}
.seo-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.seo-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 26px 24px 22px;
    background: #fff;
    border: 1px solid rgba(27,67,50,.1);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(18,40,30,.05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    animation: seoRise .7s cubic-bezier(.2,.7,.2,1) both;
    animation-delay: var(--seo-delay, 0ms);
}
@keyframes seoRise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}
.seo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(27,67,50,.22);
    box-shadow: 0 16px 36px rgba(18,40,30,.1);
}
.seo-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}
.seo-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(27,67,50,.08);
    color: var(--primary);
}
.seo-card-icon svg { width: 20px; height: 20px; }
.seo-card-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--secondary);
    background: rgba(211,47,47,.08);
    padding: 5px 9px;
    border-radius: 999px;
}
.seo-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    color: var(--primary);
    margin: 0 0 12px;
    line-height: 1.25;
    font-weight: 700;
}
.seo-card p {
    color: #55645c;
    font-size: .96rem;
    line-height: 1.65;
    margin: 0 0 22px;
    flex: 1;
}
.seo-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 11px 14px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff !important;
    font-weight: 650;
    font-size: .9rem;
    text-decoration: none !important;
    transition: background .2s ease, transform .2s ease;
    width: fit-content;
}
.seo-card-cta svg { width: 16px; height: 16px; }
.seo-card-cta:hover {
    background: #2d6a4f;
    transform: translateX(2px);
}
.seo-card:nth-child(3) .seo-card-cta {
    background: var(--secondary);
}
.seo-card:nth-child(3) .seo-card-cta:hover {
    background: #b71c1c;
}
.seo-pillar-foot {
    margin-top: 36px;
    padding: 22px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #12261e;
    color: #fff;
    border-radius: 16px;
}
.seo-pillar-foot p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: .95rem;
}
.seo-pillar-foot .btn-main {
    background: #fff;
    color: var(--primary);
}
.seo-pillar-foot .btn-main:hover {
    background: #f0f4f2;
    color: var(--primary);
}

@media (max-width: 900px) {
    .seo-pillar { padding: 64px 5% 72px; }
    .seo-pillar-grid { grid-template-columns: 1fr; gap: 16px; }
    .seo-pillar-head { margin-bottom: 32px; text-align: left; }
    .seo-pillar-lead { margin-left: 0; }
    .seo-proofs { justify-content: flex-start; }
    .seo-pillar-foot { align-items: flex-start; }
}
@media (max-width: 560px) {
    .seo-proofs li { min-width: calc(50% - 6px); flex: 1 1 calc(50% - 6px); }
}

.card-title-link {
    color: inherit;
    text-decoration: none;
}
.card-title-link:hover { color: var(--secondary); }

.product-seo-page {
    padding: 24px 5% 72px;
    max-width: 1180px;
    margin: 0 auto;
}
.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    align-items: center;
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.4;
}
.product-breadcrumb a { color: var(--primary); text-decoration: none; }
.product-breadcrumb a:hover { color: var(--secondary); }
.product-seo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 36px 44px;
    align-items: start;
}
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: calc(var(--chrome-h, 100px) + 12px);
}
.product-gallery-stage {
    position: relative;
    background: #f4f6f4;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e4ebe7;
    aspect-ratio: 1;
    width: 100%;
    display: grid;
    place-items: stretch;
}
.product-gallery-media,
.product-gallery-fallback {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
}
.product-gallery-media {
    object-fit: cover;
    display: block;
}
.product-gallery-media[hidden] {
    display: none !important;
}
.product-gallery-iframe,
.product-gallery-video {
    width: 100%;
    height: 100%;
    border: 0;
    background: #111;
    object-fit: contain;
}
.product-gallery-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #9aa89f;
    background: linear-gradient(160deg, #eef3ef, #f7f9f7);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 16px;
}
/* Critique : display:flex ne doit PAS écraser l'attribut HTML hidden */
.product-gallery-fallback[hidden] {
    display: none !important;
}
.product-gallery-fallback svg { width: 36px; height: 36px; opacity: .55; }
.product-gallery-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    scrollbar-width: none;
}
.product-gallery-thumbs::-webkit-scrollbar { display: none; }
.product-gallery-thumb {
    position: relative;
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid #e5e1d8;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #f7f5f0;
    flex: 0 0 auto;
    transition: border-color .15s;
}
.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-gallery-thumb:hover { border-color: var(--primary); }
.product-gallery-thumb.active {
    border-color: var(--secondary);
    box-shadow: 0 0 0 1px var(--secondary);
}
.product-gallery-thumb--video {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1b4332, #0f281c);
    color: #fff;
}
.product-gallery-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
}
.product-gallery-play svg { width: 14px; height: 14px; }

.product-seo-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    text-align: left;
}
.product-seo-heading { min-width: 0; }
.product-badge {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: var(--font-body);
}
.product-seo-kicker {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 11px;
    color: var(--secondary);
    font-weight: 700;
    margin: 0 0 8px;
}
.product-seo-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    margin: 0 0 10px;
    line-height: 1.2;
    color: var(--primary);
    font-weight: 600;
}
.product-seo-desc {
    color: #445048;
    line-height: 1.65;
    margin: 0;
    font-size: 15px;
}

.product-buy {
    margin: 0;
    padding: 18px 16px;
    border: 1px solid #e4ebe7;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(27, 67, 50, 0.05);
}
.product-buy-label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #6a7a6e;
}
.product-formats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}
.product-format-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 64px;
    padding: 10px 8px;
    border: 1.5px solid #dce5df;
    border-radius: 10px;
    background: #f7faf8;
    cursor: pointer;
    font-family: var(--font-body);
    transition: border-color .15s, background .15s, color .15s;
}
.product-format-btn:hover {
    border-color: var(--primary);
}
.product-format-btn.active {
    border-color: var(--primary);
    background: #eef5f1;
    box-shadow: inset 0 0 0 1px var(--primary);
}
.product-format-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}
.product-format-price {
    font-size: 12px;
    color: #66786d;
    font-weight: 500;
}
.product-buy-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.product-buy-price strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.1;
}
.product-buy-price strong small {
    font-family: var(--font-body);
    font-size: 0.55em;
    font-weight: 600;
    color: #7a8a7e;
}
.product-buy-ship {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--secondary);
    font-weight: 600;
}
.product-buy-cta {
    flex: 1 1 180px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    border: 0;
    font-size: 13px;
}
.product-buy-cta:hover {
    background: var(--secondary);
    color: #fff;
}
.product-buy-note {
    margin: 12px 0 0;
    font-size: 12px;
    color: #7a877f;
    line-height: 1.45;
}
.product-buy-note a { color: var(--secondary); }

.product-specs-block {
    padding-top: 4px;
}
.product-specs-block h2,
.product-docs-box h2 {
    font-size: 1.05rem;
    color: var(--primary);
    margin: 0 0 12px;
}
.product-specs-list {
    margin: 0;
    border-top: 1px solid #e8eee9;
}
.product-specs-row {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 10px 16px;
    padding: 11px 0;
    border-bottom: 1px solid #eef2ef;
}
.product-specs-row dt {
    margin: 0;
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #8a968e;
    font-weight: 600;
}
.product-specs-row dd {
    margin: 0;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.4;
}
.product-docs-box {
    padding: 16px;
    border-radius: 10px;
    background: #f6f9f7;
    border: 1px solid #e4ebe7;
}
.product-docs-box ul {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}
.product-docs-box li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    color: #445048;
}
.product-docs-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
}
.product-docs-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 900px) {
    .product-seo-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }
    .product-gallery {
        position: static;
        width: 100%;
        max-width: 100%;
    }
    .product-gallery-stage {
        aspect-ratio: 1 / 1;
        width: 100%;
        max-width: 100%;
        max-height: none;
        margin: 0;
    }
    .product-gallery-media {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .product-gallery-thumb { width: 64px; height: 64px; }
    .product-formats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }
    .product-format-btn {
        min-height: 58px;
        padding: 8px 4px;
    }
    .product-format-label { font-size: 14px; }
    .product-format-price { font-size: 11px; }
    .product-buy-footer {
        flex-direction: column;
        align-items: stretch;
    }
    .product-buy-cta { width: 100%; flex: none; }
    .product-specs-row {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}

/* —— Front polish: shop / blog / errors / legal —— */
.shop-empty {
    text-align: center;
    width: 100%;
    color: var(--gray);
    padding: 40px;
}
.shop-empty a { color: var(--secondary); }
.blog-article {
    max-width: 860px;
    padding-top: 48px;
    padding-bottom: 80px;
}
.blog-breadcrumb { margin-bottom: 18px; }
.blog-article-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 8px 0 20px;
}
.blog-chapo { margin-bottom: 24px; }
.blog-article-cover {
    width: 100%;
    margin: 0 0 28px;
    border-radius: 8px;
}
.blog-article-body {
    line-height: 1.75;
    color: #333;
    font-size: 1.05rem;
}
.error-page {
    padding: 80px 5% 100px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.error-page-title { margin-top: 8px; }
.error-page-desc { margin-bottom: 28px; }
.error-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.legal-contact { margin-top: 28px; }
.legal-body .legal-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    color: var(--primary);
    margin: 1.6em 0 .55em;
    line-height: 1.25;
}
.legal-body .legal-heading:first-child { margin-top: 0; }
.legal-body .legal-p {
    margin: 0 0 1em;
    line-height: 1.7;
    color: #444;
    font-size: 1rem;
}
.legal-body .legal-list {
    margin: 0 0 1.25em;
    padding-left: 1.25em;
    color: #444;
    line-height: 1.65;
}
.legal-body .legal-list li { margin-bottom: .35em; }
.legal-body .legal-list li::marker { color: var(--secondary); }
.avis-empty-span { grid-column: 1 / -1; }

/* ===== Le Mag — index & article ===== */
.mag-index-hero {
    background:
        linear-gradient(135deg, rgba(14,36,26,.92) 0%, rgba(27,67,50,.88) 55%, rgba(211,47,47,.35) 100%),
        url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1920&q=80') center/cover;
    color: #fff;
    padding: 88px 5% 72px;
    margin-bottom: 40px;
    text-align: center;
}
.mag-index-hero .section-label { color: rgba(255,255,255,.75); }
.mag-index-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin: 8px 0 14px;
    line-height: 1.15;
    color: #fff;
}
.mag-index-hero p { max-width: 560px; margin: 0 auto; color: rgba(255,255,255,.82); font-size: 1.05rem; line-height: 1.6; }

.mag-index { padding-bottom: 80px; }
.mag-index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mag-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8eee9;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}
.mag-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(27,67,50,.12);
}
.mag-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef3ef;
    position: relative;
}
.mag-card-media--empty {
    background: linear-gradient(145deg, #e8eee9, #d5e0d8);
}
.mag-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.mag-card:hover .mag-card-media img { transform: scale(1.04); }
.mag-card-ph {
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--primary);
    opacity: .35;
}
.mag-card-ph svg { width: 42px; height: 42px; }
.mag-card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}
.mag-card-meta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--secondary);
}
.mag-card-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.3;
    color: var(--primary);
}
.mag-card-title a { color: inherit; text-decoration: none; }
.mag-card-title a:hover { color: var(--secondary); }
.mag-card-excerpt {
    margin: 0;
    color: #667;
    font-size: .95rem;
    line-height: 1.6;
    flex: 1;
}
.mag-card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none;
}
.mag-card-more svg { width: 16px; height: 16px; }
.mag-index-empty { color: #777; padding: 40px 0; text-align: center; grid-column: 1 / -1; }
.mag-index-pager { margin-top: 36px; }

/* Pagination Vanilla MG (remplace Tailwind) */
.vmg-pager {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 28px 0 8px;
}
.vmg-pager-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.vmg-pager-item a,
.vmg-pager-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #d8e2db;
    border-radius: 10px;
    background: #fff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
}
.vmg-pager-item a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}
.vmg-pager-item.is-active span {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.vmg-pager-item.is-disabled span {
    opacity: .4;
    cursor: default;
}
.vmg-pager-meta {
    margin: 0;
    font-size: 13px;
    color: #6b7a70;
}

/* Sécurité : si ancienne pagination Tailwind reste en cache */
.mag-index-pager svg,
nav[aria-label="Pagination Navigation"] svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
}

/* ===== Article éditorial (Le Mag) ===== */
/* ===== Article editorial v2 ===== */
.edito { background: #1a2f26; }
.edito-hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    place-items: center;
    color: #fff;
    overflow: hidden;
    background: #0c1c16;
}
.edito-hero-bg { position: absolute; inset: 0; z-index: 0; }
.edito-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.04);
    animation: editoKen 22s ease-out forwards;
}
@keyframes editoKen {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}
.edito-hero-shade {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(100deg, rgba(8,20,15,.78) 0%, rgba(8,20,15,.35) 48%, rgba(8,20,15,.15) 100%),
        linear-gradient(180deg, rgba(8,20,15,.15) 0%, rgba(8,20,15,.55) 100%);
}
.edito-hero-content {
    position: relative; z-index: 2;
    width: min(780px, 90%);
    margin: 0 auto;
    padding: 120px 0 100px;
    text-align: left;
    animation: editoRise 1s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes editoRise {
    from { opacity: 0; transform: translateY(36px); }
    to { opacity: 1; transform: none; }
}
.edito-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255,255,255,.9);
    margin: 0 0 28px;
    letter-spacing: .02em;
}
.edito-brand em {
    font-style: normal;
    color: var(--secondary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .72em;
    letter-spacing: .14em;
    margin-left: 4px;
    vertical-align: .15em;
}
.edito-kicker {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
    color: rgba(255,255,255,.7); margin-bottom: 22px;
}
.edito-kicker:hover { color: #fff; }
.edito-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.6rem, 7vw, 4.8rem);
    font-weight: 700; line-height: 1.02; letter-spacing: -.03em;
    margin: 0 0 22px; color: #fff;
    max-width: 11em;
}
.edito-dek {
    font-size: clamp(1.05rem, 2.1vw, 1.28rem);
    line-height: 1.7; color: rgba(255,255,255,.86);
    max-width: 34rem; margin: 0 0 28px; font-weight: 300;
}
.edito-byline {
    display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
    font-size: 11px; font-weight: 600; letter-spacing: .16em;
    text-transform: uppercase; color: rgba(255,255,255,.62);
}
.edito-byline-sep {
    width: 18px; height: 1px; background: var(--secondary);
}
.edito-paper {
    background:
        radial-gradient(ellipse at top, rgba(27,67,50,.04), transparent 50%),
        #f7f4ef;
    padding: 0 0 80px;
}
.edito-toolbar {
    max-width: 720px;
    margin: 0 auto;
    padding: 28px 5% 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(27,67,50,.1);
}
.edito-toolbar-back {
    font-size: 13px; font-weight: 600; color: #5a6b60;
}
.edito-toolbar-back:hover { color: var(--primary); }
.edito-column {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 5% 0;
}
.edito-body {
    font-family: var(--font-body);
    font-size: 1.14rem;
    line-height: 1.9;
    color: #2a322c;
}
.edito-body > p:first-of-type {
    font-size: 1.22rem;
    line-height: 1.8;
    color: #1f2923;
}
.edito-body > p:first-of-type::first-letter {
    float: left;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 5.2rem;
    line-height: .75;
    padding: 10px 12px 0 0;
    color: var(--primary);
    font-weight: 700;
}
.edito-body h2 {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: baseline;
    margin: 3.2em 0 1em;
    padding: 0;
    border: 0;
}
.edito-body h2.edito-h2-plain {
    grid-template-columns: 1fr;
    margin-top: 3.6em;
    padding-top: 1.2em;
    border-top: 1px solid rgba(27,67,50,.12);
}
.edito-chap-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--secondary);
}
.edito-chap-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.55rem, 3vw, 2.05rem);
    line-height: 1.2;
    color: var(--primary);
    font-weight: 700;
}
.edito-body p { margin: 0 0 1.25em; }
.edito-body strong { color: #15241c; font-weight: 650; }
.edito-body ul, .edito-body ol {
    margin: .2em 0 1.6em;
    padding: 18px 22px 18px 2em;
    background: rgba(27,67,50,.04);
    border-left: 3px solid var(--primary);
    list-style: disc;
}
.edito-body ol { list-style: decimal; }
.edito-body li { margin: 0 0 .5em; }
.edito-body li::marker { color: var(--secondary); }
.edito-pull {
    margin: 2.8em 0;
    padding: 28px 8px 28px 28px;
    border-left: 3px solid var(--secondary);
}
.edito-pull p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    line-height: 1.35;
    color: var(--primary);
    font-style: italic;
    margin: 0 !important;
    max-width: 22em;
}
.edito-figure { margin: 2.8em 0; position: relative; }
.edito-figure img {
    display: block; width: 100%;
    height: clamp(260px, 48vw, 420px);
    object-fit: cover;
}
.edito-figure--wide {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.edito-figure--wide img { height: clamp(280px, 52vw, 480px); }
.edito-figure figcaption {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #7a877e;
    padding: 14px 4px 0;
    font-weight: 600;
}
.edito-footer { margin-top: 56px; }
.edito-share-block {
    border-top: 1px solid rgba(27,67,50,.12);
    padding: 36px 0 28px;
}
.edito-share-eyebrow {
    font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--secondary); font-weight: 700; margin: 0 0 8px;
}
.edito-share-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem; color: var(--primary); margin: 0 0 18px; font-weight: 700;
}
.edito-next {
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 24px;
    align-items: end;
    background: #12261e;
    color: #fff;
    padding: 36px 32px;
}
.edito-next-label {
    font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    color: rgba(255,255,255,.5); margin: 0 0 10px;
}
.edito-next h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0 0 10px; color: #fff; line-height: 1.15;
    display: block; border: 0; grid-template-columns: none;
}
.edito-next-copy p:last-child {
    margin: 0; color: rgba(255,255,255,.72); font-size: .95rem; max-width: 28rem;
}
.edito-next-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.edito-next .btn-outline-dark {
    border-color: rgba(255,255,255,.4); color: #fff; background: transparent;
}
.edito-next .btn-outline-dark:hover {
    border-color: #fff; background: rgba(255,255,255,.08);
}
.edito-share-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.edito-share-btn {
    appearance: none;
    border: 1px solid rgba(27,67,50,.18);
    background: #fff;
    color: var(--primary);
    font-family: inherit; font-size: 12px; font-weight: 600;
    padding: 10px 14px; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: .2s ease;
}
.edito-share-btn svg { width: 15px; height: 15px; }
.edito-share-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}
.edito-share-btn.is-copied {
    background: var(--primary); border-color: var(--primary); color: #fff;
}
.edito-share--inline .edito-share-btn {
    width: 40px; height: 40px; padding: 0; justify-content: center;
    background: transparent; border-color: rgba(27,67,50,.15);
}
.edito-share--inline .edito-share-btn:hover {
    background: var(--primary); border-color: var(--primary); color: #fff;
}
.edito-related {
    background: #0f221a;
    color: #fff;
    padding: 80px 5% 96px;
}
.edito-related-inner { max-width: 1100px; margin: 0 auto; }
.edito-related-eyebrow {
    text-align: center;
    font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
    color: rgba(255,255,255,.45); margin: 0 0 10px; font-weight: 700;
}
.edito-related-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: #fff; margin: 0 0 36px; text-align: center; font-weight: 700;
}
.edito-related-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.edito-related-item { display: flex; flex-direction: column; transition: transform .25s ease; }
.edito-related-item:hover { transform: translateY(-4px); }
.edito-related-media { aspect-ratio: 5 / 4; overflow: hidden; background: #1a3228; }
.edito-related-media img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease;
}
.edito-related-item:hover .edito-related-media img { transform: scale(1.05); }
.edito-related-copy { padding: 18px 2px 0; display: flex; flex-direction: column; gap: 8px; }
.edito-related-copy time {
    font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
    color: #e07a7a; font-weight: 700;
}
.edito-related-copy h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem; line-height: 1.25; color: #fff; margin: 0; font-weight: 600;
}
.edito-related-copy span {
    font-size: 12px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.55);
}
@media (max-width: 980px) {
    .mag-index-grid { grid-template-columns: 1fr 1fr; }
    .edito-next { grid-template-columns: 1fr; padding: 28px 22px; }
    .edito-related-grid { grid-template-columns: 1fr 1fr; }
    .edito-figure--wide {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}
@media (max-width: 640px) {
    .mag-index-grid { grid-template-columns: 1fr; }
    .mag-index-hero { padding: 64px 5% 52px; }
    .edito-hero { min-height: min(85vh, 720px); }
    .edito-hero-content { padding: 88px 0 56px; width: min(100%, 92%); }
    .edito-title { max-width: none; font-size: clamp(2rem, 9vw, 2.8rem); }
    .edito-dek { font-size: 1.02rem; }
    .edito-toolbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 5% 8px;
        gap: 12px;
    }
    .edito-column { padding: 28px 5% 0; }
    .edito-body { font-size: 1.05rem; line-height: 1.8; }
    .edito-body > p:first-of-type { font-size: 1.1rem; }
    .edito-body > p:first-of-type::first-letter { font-size: 3.4rem; padding-right: 8px; }
    .edito-body h2 { grid-template-columns: 1fr; gap: 6px; margin: 2.4em 0 .8em; }
    .edito-pull { padding: 18px 4px 18px 16px; margin: 2em 0; }
    .edito-figure img,
    .edito-figure--wide img { height: clamp(200px, 55vw, 320px); }
    .edito-next { padding: 24px 18px; gap: 16px; }
    .edito-related { padding: 56px 5% 72px; }
    .edito-related-grid { grid-template-columns: 1fr; }
    .edito-share-btns { gap: 6px; }
    .edito-share--row .edito-share-btn span { display: none; }
    .edito-share--row .edito-share-btn { width: 42px; height: 42px; padding: 0; justify-content: center; }
    .edito-paper { padding-bottom: 48px; }
}

/* ===== Audit Phase 1 — trust / preuve / certificats / expédition ===== */
.proof-strip {
    background: var(--primary);
    color: #fff;
    padding: 28px 5%;
}
.proof-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
}
.proof-item strong {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    line-height: 1.1;
}
.proof-item span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.78);
}
.why-section, .certs-section {
    padding: 72px 5% 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.why-grid, .certs-grid, .ship-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 28px;
}
.why-card, .cert-card, .ship-card {
    background: #f7f9f7;
    border: 1px solid rgba(27,67,50,.08);
    border-radius: 14px;
    padding: 22px 18px;
}
.why-icon, .cert-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(27,67,50,.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.why-card h3, .cert-card h3, .ship-card h3 {
    font-size: 1.05rem;
    margin: 0 0 8px;
    color: var(--primary);
}
.why-card p, .cert-card p, .ship-card p {
    margin: 0;
    font-size: .92rem;
    line-height: 1.55;
    color: #555;
}
.certs-ids {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    padding: 0;
    margin: 28px 0 0;
}
.certs-ids li { font-size: .9rem; color: #444; }
.certs-ids span {
    display: block;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 2px;
}
.ship-section {
    margin: 24px 5% 48px;
    background: linear-gradient(135deg, #1B4332 0%, #2d5a45 100%);
    color: #fff;
    border-radius: 20px;
    padding: 48px 5%;
}
.ship-section-inner { max-width: 1100px; margin: 0 auto; }
.ship-section .section-label { color: #f07171; }
.ship-section .section-title { color: #fff; }
.ship-section .section-desc { color: rgba(255,255,255,.82); }
.ship-section .ship-card {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
}
.ship-section .ship-card h3 { color: #fff; }
.ship-section .ship-card p { color: rgba(255,255,255,.78); }
.ship-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.ship-section .btn-outline-dark {
    border-color: rgba(255,255,255,.45);
    color: #fff;
}
.product-tech-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 8px;
    font-size: .92rem;
}
.product-tech-table th,
.product-tech-table td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}
.product-tech-table th {
    width: 42%;
    color: #666;
    font-weight: 600;
    background: #f7f9f7;
}
.product-tech-table td { color: var(--primary); font-weight: 600; }
/* —— Contact page —— */
.contact-hero {
    background: linear-gradient(145deg, #143528 0%, var(--primary) 55%, #245c44 100%);
    color: #fff;
    padding: 56px 5% 48px;
}
.contact-hero-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.contact-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #c5d8cc;
}
.contact-hero h1 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.15;
    color: #fff;
}
.contact-hero p {
    margin: 0 auto;
    max-width: 560px;
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    line-height: 1.6;
}
.contact-page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px 5% 80px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: clip;
}
.contact-alert {
    border-radius: 10px;
    padding: 12px 14px;
    margin: 0 0 18px;
    font-size: .95rem;
}
.contact-alert--ok {
    background: #e8f3ec;
    color: #1b4332;
    border: 1px solid #c5dccb;
}
.contact-alert--err {
    background: #fdecea;
    color: #8a1c1c;
    border: 1px solid #f3c4c4;
}
.contact-channels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 0 0 28px;
}
.contact-channel {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #e5ebe6;
    border-radius: 12px;
    padding: 14px 14px 12px;
    transition: border-color .15s, transform .15s, box-shadow .15s;
}
a.contact-channel:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27,67,50,.08);
}
.contact-channel--static { cursor: default; }
.contact-channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eef5f1;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-channel-icon--wa {
    background: #e8f8ef;
    color: #128c7e;
}
.contact-channel-icon i,
.contact-channel-icon svg {
    width: 18px;
    height: 18px;
}
.contact-channel-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.contact-channel-body strong {
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--primary);
}
.contact-channel-body span {
    font-size: .9rem;
    color: #555;
    line-height: 1.35;
    word-break: break-word;
}
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr);
    gap: 22px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.contact-panel {
    background: #fff;
    border: 1px solid #e5ebe6;
    border-radius: 14px;
    padding: 26px 24px 24px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: anywhere;
}
.contact-panel-head {
    margin-bottom: 18px;
}
.contact-panel-head h2 {
    margin: 0 0 6px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary);
}
.contact-panel-head p {
    margin: 0;
    color: #666;
    font-size: .95rem;
    line-height: 1.5;
}
.contact-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0 14px;
    width: 100%;
    min-width: 0;
}
.contact-form,
.contact-form .form-group {
    min-width: 0;
    max-width: 100%;
}
.contact-form .form-group { margin-bottom: 14px; }
.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    margin-bottom: 6px;
    color: var(--primary);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d5ddd7;
    border-radius: 10px;
    padding: 12px 14px;
    font: inherit;
    background: #fbfcfb;
    transition: border-color .15s, background .15s, box-shadow .15s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27,67,50,.12);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
}
.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}
.contact-info-block {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}
.contact-info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.contact-info-row > i,
.contact-info-row > svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info-row strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #888;
    margin-bottom: 2px;
}
.contact-info-row p {
    margin: 0;
    color: #333;
    font-size: .95rem;
    line-height: 1.45;
}
.contact-side-actions {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}
.contact-side-actions .btn-main,
.contact-side-actions .btn-outline-dark {
    justify-content: center;
}
.contact-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e7e2;
    min-height: 220px;
    background: #e8eee9;
}
.contact-map iframe {
    width: 100%;
    height: 240px;
    border: 0;
    display: block;
}
@media (max-width: 980px) {
    .contact-channels { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 560px) {
    .contact-channels { grid-template-columns: minmax(0, 1fr); }
    .contact-form-grid { grid-template-columns: minmax(0, 1fr); }
    .contact-hero { padding: 40px 5% 36px; }
    .contact-page { padding: 20px 4% 56px; }
    .contact-panel {
        padding: 18px 14px 16px;
        border-radius: 12px;
    }
    .contact-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-form-actions .btn-main,
    .contact-form-actions .btn-outline-dark {
        width: 100%;
        justify-content: center;
    }
}
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1200;
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    color: #333;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
    padding: 18px 18px 16px;
    display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p {
    margin: 0 0 12px;
    font-size: .9rem;
    line-height: 1.5;
}
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
@media (max-width: 900px) {
    .proof-strip-inner,
    .why-grid,
    .certs-grid,
    .ship-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 560px) {
    .proof-strip-inner { grid-template-columns: 1fr 1fr; gap: 14px; }
    .why-grid,
    .certs-grid,
    .ship-grid { grid-template-columns: 1fr; }
}
.footer-carriers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    justify-content: center;
    padding: 14px 5% 4px;
    color: #9aa89e;
    font-size: .85rem;
}
.footer-carriers strong {
    color: #d7e2da;
    font-weight: 600;
    letter-spacing: .04em;
}

/* Accueil allégé — docs + expédition en 2 colonnes */
.home-trust-lite {
    padding: 56px 5% 20px;
    background: #f7f5f0;
}
.home-trust-lite-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.home-trust-col .section-title {
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    margin-bottom: 8px;
}
.home-trust-col .section-desc { margin-bottom: 14px; }
.home-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.home-trust-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #444;
    font-size: .95rem;
    line-height: 1.5;
}
.home-trust-list li i,
.home-trust-list li svg {
    width: 18px;
    height: 18px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}
.home-trust-list strong { color: var(--primary); }
@media (max-width: 800px) {
    .home-trust-lite-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* —— Support / messages client —— */
.support-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: start;
}
.support-thread-list { display: grid; gap: 10px; }
.support-thread-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e5e1d8;
    border-radius: 10px;
    padding: 12px 14px;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.support-thread-card:hover { border-color: var(--primary); }
.support-thread-card.is-unread {
    border-color: var(--secondary);
    background: #fff8f7;
}
.support-thread-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 6px;
}
.support-thread-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: #777;
}
.support-unread {
    color: var(--secondary);
    font-weight: 700;
}
.support-status {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 3px 8px;
    border-radius: 999px;
}
.support-status--ouvert { background: #e8f3ec; color: var(--primary); }
.support-status--ferme { background: #eee; color: #666; }
.support-form .form-label {
    display: block;
    margin: 10px 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}
.support-form .form-control {
    width: 100%;
    border: 1px solid #d8d3c9;
    border-radius: 8px;
    padding: 10px 12px;
    font: inherit;
    margin-bottom: 4px;
}
.support-form .btn-main { margin-top: 12px; }
.support-chat { display: grid; gap: 16px; }
.support-messages {
    display: grid;
    gap: 10px;
    max-height: 480px;
    overflow: auto;
    padding-right: 4px;
}
.support-bubble {
    max-width: min(520px, 92%);
    border-radius: 12px;
    padding: 10px 12px;
    border: 1px solid #e8e4dc;
}
.support-bubble--client {
    justify-self: end;
    background: #eef5f1;
    border-color: #cfe0d6;
}
.support-bubble--admin {
    justify-self: start;
    background: #fff;
}
.support-bubble-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
}
.support-bubble-body {
    white-space: pre-wrap;
    line-height: 1.55;
    color: #222;
    font-size: 14px;
}
@media (max-width: 900px) {
    .support-layout { grid-template-columns: 1fr; }
}

/* =========================================================
   GLOBAL UI + RESPONSIVE POLISH
   ========================================================= */
html, body {
    overflow-x: clip;
    max-width: 100%;
}
main, .container, .quote-page, .shop-page, .cart-page,
.account-page, .blog-container, .svc-layout, .contact-page {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}
img, video, iframe { max-width: 100%; height: auto; }
p, h1, h2, h3, h4, li, td, th, label, .card-title, .section-title {
    overflow-wrap: anywhere;
    word-break: break-word;
}
.btn-main, .btn-outline-dark, .btn-outline-light, .btn-premium, .btn-add, .btn-outline-account,
.cart-submit-btn, .hero-actions a, .contact-form-actions .btn-main {
    min-height: 44px;
}
.qty-btn, .weight-btn, .lang-btn, .nav-toggle, .shop-filters a, .product-gallery-thumb {
    min-height: 0;
}
input, select, textarea { max-width: 100%; font-size: 16px; } /* évite zoom iOS */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Backdrop menu mobile */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--chrome-h);
    z-index: 1175;
    background: rgba(14, 36, 26, 0.42);
    opacity: 0;
    transition: opacity .2s ease;
}
.nav-backdrop.is-visible {
    display: block;
    opacity: 1;
}

@media (max-width: 1100px) {
    .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-trust-lite-inner { gap: 28px; }
}

@media (max-width: 900px) {
    .section-label, .section-title, .section-desc {
        padding-left: 0;
        padding-right: 0;
    }
    .why-section, .categories-section, .avis-home, .discovery-section,
    .home-trust-lite, .story-section {
        padding-left: 4%;
        padding-right: 4%;
    }
    .story-section {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .story-image, .story-content { width: 100%; max-width: none; }
    .story-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 8px;
    }
    .why-grid { gap: 14px; }
    .why-card { padding: 18px 16px; }
    .account-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .account-actions {
        width: 100%;
    }
    .account-actions .btn-main,
    .account-actions .btn-outline-account,
    .account-actions button {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
        text-align: center;
    }
    .product-seo-page { padding: 20px 4% 48px; }
    .product-breadcrumb {
        font-size: 12px;
        gap: 6px;
        margin-bottom: 18px;
    }
    .product-gallery-thumbs { gap: 8px; }
    .product-gallery-thumb { width: 64px; height: 64px; }
    .card-purchase .weight-selector {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .weight-btn { min-height: 40px; }
    .btn-add { width: 100%; justify-content: center; }
    .svc-side-card { margin-top: 4px; }
    .shop-page, .cart-page, .account-page, .blog-container {
        padding-left: 4%;
        padding-right: 4%;
    }
    .footer-newsletter { padding-left: 4%; padding-right: 4%; }
    #wa-float.wa-fab {
        bottom: 18px;
        right: 14px;
        z-index: 1100;
    }
    .cookie-banner {
        bottom: 78px;
        left: 12px;
        right: 12px;
    }
    .legal-body, .svc-main { min-width: 0; }
}

@media (max-width: 640px) {
    .hero-home {
        padding: 44px 5% 36px;
        text-align: center;
        min-height: auto;
        justify-content: flex-start;
        padding-top: 40px;
    }
    .hero-home-inner { align-items: center; }
    .hero-eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: 0.12em;
        justify-content: center;
        text-align: center;
        max-width: 100%;
        flex-wrap: wrap;
    }
    .hero-home h1 {
        font-size: clamp(1.55rem, 7.2vw, 1.95rem);
        letter-spacing: 0;
        max-width: 14ch;
        margin-bottom: 12px;
    }
    .hero-home .hero-lead {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 22px;
        max-width: 34rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
        max-width: 100%;
    }
    .hero-actions .btn-main,
    .hero-actions .btn-outline-light {
        flex: 1 1 auto;
        width: 100%;
        min-height: 46px;
        padding: 12px 18px;
    }
    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 4px;
        padding: 14px 8px;
        width: 100%;
    }
    .hero-stat {
        display: block;
        text-align: center;
    }
    .hero-stat strong { font-size: 1.35rem; }
    .hero-stat span {
        font-size: 9px;
        letter-spacing: 0.04em;
        margin-top: 5px;
    }
    .why-grid { grid-template-columns: 1fr; }
    .home-trust-lite-inner { grid-template-columns: 1fr; }
    .avis-home-cta {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .avis-home-cta .btn-main,
    .avis-home-cta .btn-outline-dark {
        width: 100%;
        justify-content: center;
    }
    .account-actions .btn-main,
    .account-actions .btn-outline-account,
    .account-actions button {
        flex: 1 1 100%;
    }
    .support-form .btn-main,
    .contact-form-actions .btn-main,
    .contact-form-actions .btn-outline-dark {
        width: 100%;
        justify-content: center;
    }
    .footer-carriers {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .grid-container { gap: 10px; }
    .card-info .price { font-size: 1rem; }
    .shop-filters {
        margin: 0 -4% 16px;
        padding: 0 4% 8px;
    }
}

@media (max-width: 380px) {
    .brand-logo--header .brand-logo-img {
        height: 36px;
        max-width: 42vw;
    }
    .cart-icon {
        padding: 8px 10px;
        font-size: 12px;
    }
    .hero-actions { max-width: none; }
}

/* =========================================================
   MOBILE-FIRST POLISH (téléphones — majorité des clients)
   ========================================================= */
@media (max-width: 900px) {
    .container {
        padding-left: 4%;
        padding-right: 4%;
        padding-bottom: 56px;
    }

    /* Topbar allégée */
    .topbar {
        justify-content: space-between;
        font-size: 11px;
    }
    .topbar-left > .icon-inline:has([data-site-phone]) {
        max-width: 42vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Menu mobile plus confortable */
    header.site-header nav a,
    body > header nav a {
        padding: 16px 5.5%;
        font-size: 15px;
        min-height: 52px;
        display: flex;
        align-items: center;
    }
    .nav-toggle {
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: #f4f7f5;
    }
    .cart-icon span[data-i18n="nav_cart"] { display: none; }
    .cart-icon {
        gap: 4px;
        min-height: 42px;
        align-items: center;
    }

    /* Hero / CTA — composition centrée professionnelle */
    .hero-home {
        text-align: center;
        align-items: center;
    }
    .hero-home-inner { align-items: center; }

    /* Boutique filtres */
    .shop-filters {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
        margin-bottom: 18px;
    }
    .shop-filters::-webkit-scrollbar { display: none; }
    .shop-filters a {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 14px;
        border-radius: 999px;
        font-size: 13px;
        background: #f4f7f5;
        border: 1px solid #e4ebe7;
    }

    .product-seo-page { padding: 16px 4% 48px; }
    .card-purchase {
        padding: 12px;
        border-radius: 12px;
    }
    .qty-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
        border-radius: 8px;
    }

    /* Contact */
    .contact-hero { padding: 36px 4% 28px; }
    .contact-hero h1 { font-size: clamp(1.6rem, 7vw, 2rem); }
    .contact-page { padding-bottom: 40px; }
    .contact-channels {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 10px;
    }
    .contact-channel {
        padding: 14px;
        border-radius: 12px;
        min-width: 0;
        max-width: 100%;
    }
    .contact-layout,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 18px;
        width: 100%;
        min-width: 0;
    }
    .contact-form-card,
    .contact-form,
    .contact-panel {
        padding: 16px 14px;
        border-radius: 14px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    /* Compte / auth */
    .auth-page {
        margin: 24px auto 48px;
        padding: 0 4%;
    }
    .auth-card {
        padding: 22px 18px 26px;
        border-radius: 14px;
    }
    .account-page { padding-bottom: 48px; }
    .account-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    /* FAQ / services */
    .svc-hero h1 { font-size: clamp(1.55rem, 7vw, 2rem); }
    .svc-lead { font-size: 0.95rem; margin-bottom: 18px; }
    .svc-main,
    .legal-body {
        font-size: 15px;
        line-height: 1.65;
        width: 100%;
    }
    .svc-block h2 {
        font-size: 1.15rem;
        margin-top: 0;
    }
    .cookie-banner {
        left: 10px;
        right: 10px;
        width: auto;
        max-width: calc(100vw - 20px);
        box-sizing: border-box;
    }

    /* Devis / quote — empêcher débordement (texte coupé) */
    .quote-layout,
    .quote-page-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100%;
    }
    .quote-products,
    .quote-summary,
    .quote-card,
    .quote-card-body {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .quote-summary {
        position: static;
        margin-top: 8px;
    }
    .quote-card {
        grid-template-columns: 72px minmax(0, 1fr) !important;
        gap: 12px;
        padding: 12px;
    }
    .quote-card-img,
    .quote-card-img-ph {
        width: 72px !important;
        height: 72px !important;
        max-width: 72px;
    }
    .quote-card-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .quote-card-actions .btn-add {
        width: 100%;
        white-space: normal;
    }
    .quote-formats .weight-selector,
    .quote-card .weight-selector {
        flex-wrap: wrap;
    }

    /* Avis / mag */
    .avis-grid,
    .mag-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    /* Support messages */
    .support-messages { max-height: 58vh; }
    .support-bubble { max-width: 94%; }

    /* Footer */
    .footer-newsletter {
        padding-top: 28px;
        padding-bottom: 28px;
        gap: 16px;
    }
    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        min-height: 46px;
    }

    /* FAB + cookie : zone pouce */
    #wa-float.wa-fab {
        bottom: max(16px, env(safe-area-inset-bottom, 0px));
        right: max(12px, env(safe-area-inset-right, 0px));
    }
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: calc(72px + env(safe-area-inset-bottom, 0px));
        padding: 12px 12px 10px;
        border-radius: 14px;
        font-size: 12px;
        max-height: 42vh;
        overflow: auto;
    }
    .cookie-banner-actions {
        gap: 8px;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: clamp(1.35rem, 6.5vw, 1.7rem);
        line-height: 1.25;
    }
    .section-desc {
        font-size: 0.95rem;
        line-height: 1.55;
    }
    .categories-section .cat-box,
    .cat-box {
        border-radius: 12px;
    }
    .why-card {
        border-radius: 12px;
        padding: 18px 16px;
    }
    .home-trust-list li { font-size: 0.95rem; }
    .flash-success,
    .flash-error,
    .mada-toast {
        left: 12px;
        right: 12px;
        max-width: none;
        border-radius: 12px;
    }

    /* Cartes boutique plus lisibles en 2 colonnes */
    .badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    .weight-selector {
        gap: 6px;
    }
    .weight-btn {
        font-size: 12px;
        padding: 8px 10px;
    }

    /* Page panier */
    .cart-page { padding-bottom: 40px; }
    .cart-list {
        border-radius: 14px;
        border: 1px solid #eee;
        background: #fff;
        padding: 4px 14px 8px;
    }
    .summary-title { font-size: 1.15rem; }
    .summary-line { font-size: 14px; }
    .summary-line.total { font-size: 16px; }
    .cart-submit-btn {
        min-height: 50px;
        font-size: 15px;
        border-radius: 10px;
    }

    /* Auth buttons full width */
    .auth-card .btn-main,
    .auth-card button[type="submit"] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --topbar-h: 32px;
        --header-h: 54px;
    }
    .topbar-left > .icon-inline:has([data-site-phone]) span[data-site-phone] {
        max-width: 28vw;
    }
    .hero-home {
        padding: 36px 5.5% 32px;
    }
    .hero-home h1 {
        font-size: 1.55rem;
        max-width: 16ch;
    }
    .hero-stat span {
        font-size: 8.5px;
    }
    .product-gallery-stage,
    .product-seo-main {
        border-radius: 12px;
        overflow: hidden;
    }
    .product-gallery-thumb {
        width: 58px;
        height: 58px;
        border-radius: 8px;
    }
    /* Garder image + texte côte à côte (évite largeur min-content ~470px) */
    .quote-card {
        grid-template-columns: 64px minmax(0, 1fr) !important;
        gap: 10px;
        padding: 10px;
    }
    .quote-card img,
    .quote-card .quote-card-img,
    .quote-card .quote-card-img-ph {
        width: 64px !important;
        height: 64px !important;
        max-width: 64px;
        object-fit: cover;
        border-radius: 8px;
    }
    .cookie-banner p { font-size: 12px; line-height: 1.45; margin-bottom: 8px; }
    .cookie-banner-actions .btn-main,
    .cookie-banner-actions a,
    .cookie-banner-actions .btn-outline-dark {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 12px;
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
    }
}

/* Téléphone international (drapeaux + indicatifs) */
.phone-intl {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-bottom: 10px;
    border: 1px solid #d8e2db;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
}
.phone-intl:focus-within {
    border-color: var(--primary, #1B4332);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.12);
}
.phone-intl-select {
    flex: 0 1 6.75rem;
    width: 6.75rem;
    max-width: 38%;
    min-width: 0;
    border: 0;
    border-right: 1px solid #e5ebe6;
    background: #f7f9f7;
    padding: 10px 6px 10px 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1a2e24;
    cursor: pointer;
    appearance: auto;
    text-overflow: ellipsis;
}
.phone-intl-input,
.phone-intl input.phone-intl-input,
.summary-form .phone-intl input,
.auth-form .phone-intl input,
.contact-form .phone-intl input {
    flex: 1 1 0;
    min-width: 0;
    border: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 10px 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    background: transparent !important;
}
.phone-intl-select:focus,
.phone-intl-input:focus {
    outline: none;
}
@media (max-width: 640px) {
    .phone-intl {
        flex-direction: column;
    }
    .phone-intl-select {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        border-right: 0;
        border-bottom: 1px solid #e5ebe6;
        font-size: 13px;
        padding: 10px 12px;
    }
}

/* =========================================================
   MOBILE SAFETY NET — textes / pages visibles
   ========================================================= */
@media (max-width: 900px) {
    .cart-wrapper {
        grid-template-columns: minmax(0, 1fr) !important;
    }
    .cart-list,
    .cart-summary,
    .item-details,
    .cart-item-details {
        min-width: 0;
        max-width: 100%;
    }
    .bulk-promo-banner,
    .discovery-shell,
    .discovery-grid,
    .home-trust-lite-inner {
        max-width: 100%;
        min-width: 0;
    }
    .svc-block h2,
    .svc-faq-item summary,
    .legal-body,
    .svc-main,
    .blog-card h2,
    .article-body {
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
    }
    .article-body img,
    .blog-content img,
    .legal-body img {
        max-width: 100%;
        height: auto;
    }
}
@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr !important;
    }
}
