/* ═══════════════════════════════════════════════════════
   Maison Guillemot — Preview v3
   Esprit Pierre Hermé : crème, serif Garamond, sobriété
═══════════════════════════════════════════════════════ */

:root {
    /* ── Palette « quiet luxury » ── */
    --bg:         #FAF7F2;   /* fond crème dominant */
    --bg-2:       #F3EEE5;   /* crème un peu plus saturé (cards, sections alternées) */
    --bg-warm:    #ECE4D6;   /* crème chaud (hovers, fonds doux) */
    --ink:        #1A1410;   /* noir charbon */
    --ink-2:      #6B5F52;   /* gris brun texte secondaire */
    --ink-3:      #A89C8E;   /* gris doré pour métadonnées */
    --line:       rgba(26,20,16,.08);
    --line-2:     rgba(26,20,16,.16);

    /* ── 1 seul accent or — + accents secondaires terre uniquement pour boucherie ── */
    --gold:       #8B6914;
    --gold-l:     #B5933A;
    --gold-d:     #6B5010;
    --terra:      #A0522D;   /* terre brûlée discrète, réservée section boucherie */
    --terra-d:    #82391C;
    --olive:      #6B7F4A;   /* utilisé très rarement, badge "Nouveau" cat olive */
    --brown-deep: #2E1F14;   /* fond section boucherie */

    /* ── Typo ── */
    --f-serif:    'EB Garamond', 'Garamond', 'Times New Roman', serif;
    --f-sans:     'Inter', system-ui, -apple-system, sans-serif;

    /* ── Radius ── */
    --r-xs:       4px;
    --r-sm:       6px;
    --r-md:       12px;
    --r-lg:       20px;

    /* ── Spacing (généreux comme PH/Lenôtre) ── */
    --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
    --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
    --s-9: 96px; --s-10: 128px;

    /* ── Container ── */
    --max-w:      1280px;
    --max-w-narrow: 960px;

    /* ── Nav ── */
    --promo-h:    36px;
    --nav-h:      88px;
    --nav-h-s:    64px;

    /* ── Transitions ── */
    --tr:         220ms cubic-bezier(0.22, 1, 0.36, 1);
    --tr-slow:    600ms cubic-bezier(0.22, 1, 0.36, 1);

    /* ── Shadows (très discrètes) ── */
    --sh-1:       0 1px 2px rgba(26,20,16,.04);
    --sh-2:       0 6px 24px -8px rgba(26,20,16,.10);
    --sh-3:       0 24px 60px -16px rgba(26,20,16,.20);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--f-sans);
    font-weight: 400;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ── Container ── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--s-5);
}
@media (min-width: 768px) { .container { padding: 0 var(--s-6); } }
@media (min-width: 1100px) { .container { padding: 0 var(--s-7); } }

/* ── Skip + focus ── */
.skip { position: absolute; top: -100px; left: 8px; background: var(--ink); color: white; padding: 8px 14px; border-radius: var(--r-sm); z-index: 9999; transition: top var(--tr); }
.skip:focus { top: 8px; }
*:focus { outline: none; }
*:focus-visible { outline: 1.5px solid var(--gold); outline-offset: 3px; border-radius: var(--r-xs); }

/* ── Icon ── */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   PROMO BAR (au-dessus de la nav, style Pierre Hermé)
══════════════════════════════════════════════════════ */
.promo-bar {
    background: var(--ink);
    color: rgba(255,255,255,.85);
    font-size: .76rem;
    letter-spacing: .04em;
}
.promo-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 10px var(--s-5);
    height: var(--promo-h);
    display: flex; align-items: center; justify-content: center;
    gap: var(--s-3);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.promo-inner em { color: var(--gold-l); font-style: italic; font-family: var(--f-serif); font-size: .92rem; }
.promo-sep { color: rgba(255,255,255,.32); }
@media (max-width: 767px) {
    .promo-inner > span:not(:first-child) { display: none; }
    .promo-sep { display: none; }
}

/* ══════════════════════════════════════════════════════
   NAVIGATION (logo centré façon Pierre Hermé)
══════════════════════════════════════════════════════ */
.nav {
    position: sticky; top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid transparent;
    transition: background var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.nav.is-scrolled {
    background: rgba(250,247,242,.96);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom-color: var(--line);
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--s-5);
    height: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--s-4);
    transition: height var(--tr);
}
.nav.is-scrolled .nav-inner { height: var(--nav-h-s); }

.nav-left, .nav-right { display: flex; align-items: center; gap: 4px; }
.nav-right { justify-content: flex-end; }

.nav-icon {
    position: relative;
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--ink);
    transition: background var(--tr), color var(--tr);
}
.nav-icon:hover { background: var(--bg-warm); color: var(--gold); }
.nav-cart-count {
    position: absolute; top: 4px; right: 2px;
    min-width: 16px; height: 16px; padding: 0 4px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 999px;
    font-size: .62rem; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid var(--bg);
}

.nav-logo {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    line-height: 1;
}
.nav-logo-mark {
    font-family: var(--f-serif);
    font-size: 1.6rem; font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    transition: font-size var(--tr);
}
.nav.is-scrolled .nav-logo-mark { font-size: 1.3rem; }
.nav-logo-amp {
    color: var(--gold);
    font-style: italic;
    margin: 0 2px;
}
.nav-logo-name {
    font-family: var(--f-serif);
    font-size: 1.65rem; font-weight: 500;
    margin-top: -4px;
    letter-spacing: 0;
    color: var(--ink);
    display: none; /* Le mark M·G suffit en mobile, on garde le name pour desktop */
}
.nav-logo-tag {
    font-size: .62rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-top: 4px;
    font-weight: 500;
    transition: opacity var(--tr);
}
.nav.is-scrolled .nav-logo-tag { opacity: 0; height: 0; margin-top: 0; }

@media (min-width: 768px) {
    .nav-logo-mark { font-size: 1.8rem; }
    .nav-logo-name { display: block; font-size: 1.6rem; margin-top: -8px; }
    .nav-logo-mark { display: none; } /* desktop : seul le name complet, pas le M·G */
}

.nav-links {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--s-5) var(--s-3);
    display: none;
    justify-content: center;
    gap: var(--s-6);
    border-top: 1px solid var(--line);
    padding-top: var(--s-3);
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink-2);
    padding: 4px 0;
    position: relative;
    transition: color var(--tr);
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--tr);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Mobile menu */
@media (max-width: 767px) {
    .nav-links {
        position: fixed; inset: var(--nav-h) 0 0 0;
        background: var(--bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: var(--s-6) var(--s-5);
        gap: 0;
        border-top: 1px solid var(--line);
        opacity: 0; visibility: hidden; pointer-events: none;
        transition: opacity var(--tr), visibility var(--tr);
        z-index: 90;
    }
    .nav-links.is-open { display: flex; opacity: 1; visibility: visible; pointer-events: auto; }
    .nav-links a {
        padding: var(--s-4) 0;
        font-size: 1rem;
        letter-spacing: .1em;
        border-bottom: 1px solid var(--line);
    }
}

/* ══════════════════════════════════════════════════════
   HERO Pierre Hermé style (centré, calme)
══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: var(--s-9) var(--s-5);
}
.hero-img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: hero-zoom 18s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes hero-zoom { to { transform: scale(1); } }
.hero-veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,20,16,.10) 0%, rgba(26,20,16,.40) 60%, rgba(26,20,16,.60) 100%);
}
.hero-content {
    position: relative; z-index: 1;
    color: white;
    max-width: 720px;
}
.hero-collection {
    font-size: .72rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255,255,255,.78);
    margin-bottom: var(--s-5);
    font-weight: 500;
}
.hero-title {
    font-family: var(--f-serif);
    font-size: clamp(3rem, 7vw, 5.6rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: white;
    margin-bottom: var(--s-5);
}
.hero-title em {
    font-style: italic;
    color: #F2D9B8;
    font-weight: 400;
}
.hero-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto var(--s-6);
}

/* ══════════════════════════════════════════════════════
   LINKS / CTA Pierre Hermé : tout en lien-texte, pas de gros bouton
══════════════════════════════════════════════════════ */
.link-discover {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: inherit;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    transition: gap var(--tr), color var(--tr);
}
.link-discover:hover { gap: 14px; color: var(--gold-l); }

.hero .link-discover {
    color: white;
    border-color: rgba(255,255,255,.6);
}
.hero .link-discover:hover { color: #F2D9B8; border-color: #F2D9B8; }

.link-cta {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--gold);
    transition: gap var(--tr), color var(--tr);
}
.link-cta:hover { gap: 8px; color: var(--gold-d); }

.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%;
    padding: var(--s-4) var(--s-5);
    background: var(--ink);
    color: white;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: var(--r-xs);
    transition: background var(--tr);
}
.btn-primary:hover { background: var(--gold); }

/* ══════════════════════════════════════════════════════
   SECTION HEADS
══════════════════════════════════════════════════════ */
.sec-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--s-8);
    opacity: 0; transform: translateY(16px);
    transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.sec-head.is-in { opacity: 1; transform: none; }

.sec-over {
    font-size: .72rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--s-4);
    font-weight: 500;
}
.sec-over--light { color: var(--gold-l); }
.sec-title {
    font-family: var(--f-serif);
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.sec-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.sec-title--light { color: white; }
.sec-title--light em { color: #F2D9B8; }
.sec-title--left { text-align: left; }
.sec-lead {
    margin-top: var(--s-3);
    color: var(--ink-2);
    font-size: 1rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* ══════════════════════════════════════════════════════
   CETTE SEMAINE (Lenôtre-style)
══════════════════════════════════════════════════════ */
.week { padding: var(--s-10) 0 var(--s-9); background: var(--bg); }
.week-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
}
@media (max-width: 900px) { .week-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); } }
@media (max-width: 480px) { .week-grid { grid-template-columns: 1fr; } }

.week-card {
    text-align: left;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 80ms);
}
.week-card.is-in { opacity: 1; transform: none; }

.week-img {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--bg-2);
    border-radius: var(--r-sm);
    overflow: hidden;
    margin-bottom: var(--s-4);
}
.week-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--tr-slow);
}
.week-card:hover .week-img img { transform: scale(1.04); }

.week-cat {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 6px;
}
.week-name {
    font-family: var(--f-serif);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 4px;
}
.week-detail {
    font-size: .85rem;
    color: var(--ink-2);
    margin-bottom: var(--s-3);
    line-height: 1.5;
}
.week-foot {
    display: flex; align-items: baseline; justify-content: space-between;
    padding-top: var(--s-3);
    border-top: 1px solid var(--line);
}
.week-price {
    font-family: var(--f-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink);
}

/* ══════════════════════════════════════════════════════
   CARTE (15 cards carrées Pierre Hermé)
══════════════════════════════════════════════════════ */
.carte { padding: var(--s-9) 0 var(--s-10); background: var(--bg-2); }

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6) var(--s-5);
}
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); gap: var(--s-5) var(--s-4); } }
@media (max-width: 480px) { .cards { grid-template-columns: 1fr; gap: var(--s-6); } }

.card {
    text-align: left;
    display: flex; flex-direction: column;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 50ms);
}
.card.is-in { opacity: 1; transform: none; }

.card-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--bg);
    overflow: hidden;
    margin-bottom: var(--s-4);
    border-radius: var(--r-sm);
}
.card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--tr-slow), filter var(--tr-slow);
}
.card:hover .card-img-wrap img {
    transform: scale(1.05);
    filter: brightness(1.04);
}

.card-badge {
    position: absolute;
    top: 12px; right: 12px;
    padding: 4px 12px;
    background: var(--ink);
    color: white;
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 999px;
}

.card-body { padding: 0 var(--s-1); }
.card-name {
    font-family: var(--f-serif);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.005em;
}
.card-accroche {
    font-size: .88rem;
    color: var(--ink-2);
    line-height: 1.55;
    margin-bottom: var(--s-4);
    min-height: 2.6em;
}
.card-foot {
    display: flex; align-items: baseline; justify-content: space-between;
    padding-top: var(--s-3);
    border-top: 1px solid var(--line);
}
.card-price {
    font-family: var(--f-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
}
.card-cta {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    transition: gap var(--tr), color var(--tr);
}
.card:hover .card-cta { gap: 8px; color: var(--gold-d); }

/* Accent colors (utilisés discrètement) */
.card--gold  .card-cta, .card--gold  .card-price { color: var(--gold); }
.card--terra .card-cta { color: var(--terra); }
.card--terra:hover .card-cta { color: var(--terra-d); }
.card--olive .card-cta { color: var(--olive); }

.carte-foot { text-align: center; margin-top: var(--s-9); }

/* ══════════════════════════════════════════════════════
   STORY (chef / atelier — split image + texte)
══════════════════════════════════════════════════════ */
.story { padding: var(--s-10) 0; background: var(--bg); }
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-10);
    align-items: center;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: var(--s-7); } }

.story-img {
    position: relative;
    opacity: 0; transform: translateX(-20px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.story-img.is-in { opacity: 1; transform: none; }
.story-img img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--r-sm);
}
.story-quote {
    position: absolute;
    bottom: -28px; right: -20px;
    max-width: 320px;
    background: var(--bg);
    border-left: 2px solid var(--gold);
    padding: var(--s-4) var(--s-5);
    box-shadow: var(--sh-2);
}
.story-quote p {
    font-family: var(--f-serif);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: var(--s-2);
}
.story-quote span {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-3);
}
@media (max-width: 600px) {
    .story-quote { position: static; max-width: 100%; margin-top: var(--s-3); }
}

.story-text {
    opacity: 0; transform: translateX(20px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.story-text.is-in { opacity: 1; transform: none; }
.story-text .sec-over { display: inline-block; margin-bottom: var(--s-3); }
.story-text .sec-title { text-align: left; margin-bottom: var(--s-4); }
.story-text p {
    color: var(--ink-2);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: var(--s-3);
}
.story-text p strong { color: var(--ink); font-weight: 500; }
.story-text .link-discover { color: var(--ink); border-color: var(--ink); margin-top: var(--s-3); }
.story-text .link-discover:hover { color: var(--gold); border-color: var(--gold); }

/* ══════════════════════════════════════════════════════
   BOUCHERIE (palette terre — la seule entorse à la sobriété)
══════════════════════════════════════════════════════ */
.boucherie {
    padding: var(--s-10) 0;
    background:
        radial-gradient(ellipse at top right, rgba(242,217,184,.05), transparent 70%),
        linear-gradient(180deg, var(--brown-deep) 0%, #1a0e08 100%);
    color: white;
}
.boucherie .sec-head--light { color: white; }
.boucherie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
}
@media (max-width: 900px) { .boucherie-grid { grid-template-columns: 1fr; } }

.boucherie-card {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.boucherie-card.is-in { opacity: 1; transform: none; }
.boucherie-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--r-sm);
    margin-bottom: var(--s-4);
}
.boucherie-card h3 {
    font-family: var(--f-serif);
    font-size: 1.45rem;
    font-weight: 500;
    color: #F2D9B8;
    margin-bottom: var(--s-2);
}
.boucherie-card p {
    color: rgba(255,255,255,.72);
    font-size: .92rem;
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   BOUTIQUES (3 cards)
══════════════════════════════════════════════════════ */
.boutiques { padding: var(--s-10) 0; background: var(--bg); }
.boutiques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
}
@media (max-width: 900px) { .boutiques-grid { grid-template-columns: 1fr; } }

.boutique-card {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.boutique-card.is-in { opacity: 1; transform: none; }
.boutique-img {
    aspect-ratio: 4 / 3;
    background-size: cover; background-position: center;
    border-radius: var(--r-sm);
    margin-bottom: var(--s-4);
    background-color: var(--bg-2);
}
.boutique-card h3 {
    font-family: var(--f-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
}
.boutique-card p {
    color: var(--ink-2);
    font-size: .92rem;
    line-height: 1.55;
    margin-bottom: var(--s-3);
}
.boutique-card .link-cta {
    font-family: var(--f-serif);
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    color: var(--ink);
}
.boutique-card .link-cta:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   FOOTER (sobriété + newsletter)
══════════════════════════════════════════════════════ */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,.72);
    padding: var(--s-9) 0 var(--s-5);
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--s-7);
    padding-bottom: var(--s-7);
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: var(--s-7);
}
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: var(--s-5); } }

.footer-brand .nav-logo-mark {
    color: white;
    font-size: 2.2rem;
    margin-bottom: var(--s-3);
}
.footer-brand .nav-logo-amp { color: var(--gold-l); }
.footer-baseline {
    font-family: var(--f-serif);
    font-size: 1.15rem; font-weight: 500;
    color: white;
    line-height: 1.5;
}
.footer-baseline em { color: #F2D9B8; font-weight: 400; }

.footer-newsletter h4 {
    font-family: var(--f-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: var(--s-2);
}
.footer-newsletter p {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    margin-bottom: var(--s-4);
}
.footer-form {
    display: flex; gap: 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--r-xs);
    overflow: hidden;
    max-width: 480px;
}
.footer-form input {
    flex: 1;
    background: transparent;
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: .88rem;
    outline: none;
}
.footer-form input::placeholder { color: rgba(255,255,255,.4); }
.footer-form button {
    background: white;
    color: var(--ink);
    padding: 12px 18px;
    font-size: .76rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background var(--tr), color var(--tr);
}
.footer-form button:hover { background: var(--gold); color: white; }

.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-6);
    padding-bottom: var(--s-6);
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: var(--s-5);
}
@media (max-width: 900px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }

.footer-cols h5 {
    font-family: var(--f-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold-l);
    margin-bottom: var(--s-3);
    letter-spacing: 0;
}
.footer-cols ul { display: flex; flex-direction: column; gap: 8px; }
.footer-cols li, .footer-cols a {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    transition: color var(--tr);
}
.footer-cols a:hover { color: #F2D9B8; }
.footer-cols strong { color: rgba(255,255,255,.85); font-weight: 500; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: var(--s-3);
}
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,.4); }
.preview-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--gold);
    color: white;
    border-radius: var(--r-xs);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: var(--s-2);
}

/* ══════════════════════════════════════════════════════
   DRAWER PANIER (cohérence v3)
══════════════════════════════════════════════════════ */
.drawer-backdrop {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(26,20,16,.4);
    backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity var(--tr), visibility var(--tr);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

.drawer {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
    width: min(420px, 100vw);
    background: var(--bg);
    box-shadow: var(--sh-3);
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }

.drawer-head {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: space-between;
    padding: var(--s-5);
    border-bottom: 1px solid var(--line);
}
.drawer-head h2 {
    font-family: var(--f-serif);
    font-size: 1.4rem; font-weight: 500;
    color: var(--ink);
    display: flex; align-items: center; gap: 10px;
}
.drawer-count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 24px; height: 24px; padding: 0 8px;
    background: var(--ink); color: white;
    border-radius: 999px;
    font-size: .76rem; font-weight: 600;
    font-family: var(--f-sans);
}
.drawer-close {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--ink);
    transition: background var(--tr);
}
.drawer-close:hover { background: var(--bg-warm); }

.drawer-body { flex: 1; overflow-y: auto; padding: var(--s-4) var(--s-5); }
.drawer-empty { text-align: center; padding: var(--s-9) var(--s-4); }
.drawer-empty p { color: var(--ink-2); margin-bottom: var(--s-4); }
.drawer-empty .link-discover { color: var(--ink); border-color: var(--ink); }

.drawer-line {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: var(--s-3);
    align-items: center;
    padding: var(--s-3) 0;
    border-bottom: 1px solid var(--line);
}
.drawer-line:last-child { border-bottom: none; }
.drawer-line-img {
    width: 56px; height: 56px;
    border-radius: var(--r-sm);
    background: var(--bg-2) center/cover;
}
.drawer-line-info { min-width: 0; }
.drawer-line-name {
    font-family: var(--f-serif);
    font-size: 1rem; font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 2px;
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.drawer-line-meta { font-size: .76rem; color: var(--ink-2); }
.drawer-line-price {
    text-align: right;
    font-family: var(--f-serif);
    font-weight: 500; font-size: 1rem; color: var(--ink);
}
.drawer-line-remove {
    color: var(--ink-3); font-size: .72rem;
    text-decoration: underline; cursor: pointer;
}
.drawer-line-remove:hover { color: var(--terra); }

.drawer-foot {
    flex-shrink: 0;
    padding: var(--s-5);
    border-top: 1px solid var(--line);
    background: var(--bg-2);
}
.drawer-total {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: var(--s-4);
}
.drawer-total span { color: var(--ink-2); font-size: .88rem; }
.drawer-total strong {
    font-family: var(--f-serif);
    font-size: 1.6rem; font-weight: 500;
    color: var(--ink);
}
.drawer-continue {
    width: 100%;
    margin-top: var(--s-3);
    padding: 10px;
    font-size: .78rem;
    color: var(--ink-2);
    text-decoration: underline;
    letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════════ */
.toast-stack {
    position: fixed;
    bottom: var(--s-5);
    right: var(--s-5);
    z-index: 250;
    display: flex; flex-direction: column; gap: 8px;
    pointer-events: none;
}
.toast {
    pointer-events: auto;
    display: flex; align-items: center; gap: var(--s-3);
    padding: var(--s-3) var(--s-4);
    background: var(--ink); color: white;
    border-radius: var(--r-sm);
    box-shadow: var(--sh-3);
    min-width: 280px; max-width: 380px;
    animation: toast-in 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.toast.is-leaving { animation: toast-out 200ms ease forwards; }
.toast--success { background: var(--gold); }
.toast-text { flex: 1; font-size: .88rem; font-weight: 400; }
.toast-action {
    background: rgba(255,255,255,.18);
    color: white;
    padding: 6px 12px;
    border-radius: var(--r-xs);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.toast-action:hover { background: rgba(255,255,255,.28); }
@keyframes toast-in  { from { transform: translateY(20px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes toast-out { to   { transform: translateY(20px); opacity: 0 } }

/* ══════════════════════════════════════════════════════
   CATEGORY PAGES (preview-v3 vague 2)
══════════════════════════════════════════════════════ */

/* Hero catégorie */
.cat-hero-v3 {
    position: relative;
    min-height: 48vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: var(--s-9) var(--s-5) var(--s-8);
}
.cat-hero-img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    /* Dézoom plus ample et un peu plus rapide :
       amplitude 0.14 (1.14 -> 1.00) sur 24s
       (vitesse ~0.0058/s contre 0.0029/s à l'origine). */
    transform: scale(1.14);
    animation: hero-zoom 24s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.cat-hero-veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,20,16,.20) 0%, rgba(26,20,16,.55) 100%);
}
.cat-hero-content {
    position: relative; z-index: 1;
    color: white;
    max-width: 720px;
}
.cat-hero-title {
    font-family: var(--f-serif);
    font-size: clamp(2.5rem, 5.5vw, 4.4rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: white;
    margin: var(--s-3) 0 var(--s-3);
}
.cat-hero-sub {
    font-size: 1.02rem;
    color: rgba(255,255,255,.85);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.55;
}

/* Breadcrumb + intro */
.cat-intro-v3 {
    padding: var(--s-6) 0 var(--s-7);
    background: var(--bg);
}
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: .82rem;
    color: var(--ink-3);
    margin-bottom: var(--s-4);
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--ink-2);
    transition: color var(--tr);
}
.breadcrumb a:hover { color: var(--gold); }
.cat-intro-text {
    max-width: 720px;
    font-family: var(--f-serif);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--ink-2);
}

/* Produits */
.prod-section { padding: var(--s-7) 0 var(--s-10); background: var(--bg-2); }
.prod-group { margin-bottom: var(--s-9); }
.prod-group:last-child { margin-bottom: 0; }
.prod-group-title {
    font-family: var(--f-serif);
    font-size: 1.8rem; font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--s-6);
    padding-bottom: var(--s-3);
    border-bottom: 1px solid var(--line-2);
    position: relative;
}
.prod-group-title::after {
    content: '';
    position: absolute; bottom: -1px; left: 0;
    width: 80px; height: 2px;
    background: var(--gold);
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6) var(--s-5);
}
@media (max-width: 900px) { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); } }
@media (max-width: 540px) { .prod-grid { grid-template-columns: 1fr; gap: var(--s-5); } }

.prod-card {
    background: var(--bg);
    border-radius: var(--r-sm);
    overflow: hidden;
    box-shadow: var(--sh-1);
    display: flex; flex-direction: column;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow var(--tr);
    transition-delay: calc(var(--i, 0) * 50ms);
}
.prod-card.is-in { opacity: 1; transform: none; }
.prod-card:hover { box-shadow: var(--sh-2); }

.prod-img-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-warm);
}
.prod-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--tr-slow);
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.04); }

.prod-body {
    padding: var(--s-4) var(--s-5) var(--s-5);
    display: flex; flex-direction: column; flex: 1;
}
.prod-name {
    font-family: var(--f-serif);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--s-2);
}
.prod-desc {
    font-size: .88rem;
    line-height: 1.55;
    color: var(--ink-2);
    margin-bottom: var(--s-4);
    flex: 1;
}
.prod-desc p { margin: 0 0 6px; }
.prod-desc p:last-child { margin-bottom: 0; }
.prod-desc ul, .prod-desc ol { margin: 6px 0 6px 16px; }
.prod-desc strong { color: inherit; font-weight: 500; }

/* Sélecteur de format (variantes par nombre de parts) */
.prod-variants {
    display: flex; flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--s-4);
}
.prod-variant {
    padding: 5px 13px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 500;
    color: var(--ink-2);
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color var(--tr), color var(--tr), background var(--tr);
}
.prod-variant:hover { border-color: var(--gold-l); color: var(--ink); }
.prod-variant.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.prod-foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--s-3);
    padding-top: var(--s-3);
    border-top: 1px solid var(--line);
    margin-bottom: var(--s-3);
}
.prod-price-wrap { display: flex; align-items: baseline; gap: 4px; }
.prod-price {
    font-family: var(--f-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
}
.prod-unite {
    font-size: .76rem;
    color: var(--ink-3);
}

.prod-qty {
    display: inline-flex; align-items: center;
    border: 1px solid var(--line-2);
    border-radius: var(--r-xs);
    overflow: hidden;
}
.prod-qty-btn {
    width: 30px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-2);
    transition: background var(--tr), color var(--tr);
}
.prod-qty-btn:hover { background: var(--bg-warm); color: var(--ink); }
.prod-qty-input {
    width: 48px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--line-2);
    border-right: 1px solid var(--line-2);
    height: 32px;
    font-size: .88rem;
    font-weight: 500;
    background: transparent;
    -moz-appearance: textfield;
    outline: none;
}
.prod-qty-input::-webkit-outer-spin-button,
.prod-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.prod-add {
    width: 100%;
    padding: 10px;
    background: var(--ink);
    color: white;
    border-radius: var(--r-xs);
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    transition: background var(--tr), gap var(--tr);
}
.prod-add:hover { background: var(--gold); gap: 12px; }

.prod-empty {
    text-align: center;
    padding: var(--s-9) var(--s-5);
    max-width: 600px;
    margin: 0 auto;
}
.prod-empty .sec-eyebrow { display: inline-block; margin-bottom: var(--s-3); }
.prod-empty .sec-title { margin-bottom: var(--s-4); }
.prod-empty p { color: var(--ink-2); margin-bottom: var(--s-5); }

/* ══════════════════════════════════════════════════════
   NAVIGATION ENTRE CATÉGORIES (bottom)
══════════════════════════════════════════════════════ */
.cat-nav-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--s-4);
    align-items: center;
    margin-top: var(--s-9);
    padding-top: var(--s-6);
    border-top: 1px solid var(--line);
}
@media (max-width: 700px) {
    .cat-nav-bottom { grid-template-columns: 1fr; gap: var(--s-3); }
    .cat-nav-bottom > span { display: none; }
}

.cat-nav-btn {
    display: inline-flex; align-items: center; gap: 14px;
    padding: var(--s-4) var(--s-5);
    background: var(--bg);
    border: 1px solid var(--line-2);
    border-radius: var(--r-sm);
    color: var(--ink);
    text-decoration: none;
    transition: background var(--tr), border-color var(--tr), transform var(--tr), color var(--tr);
}
.cat-nav-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.cat-nav-btn--prev { justify-content: flex-start; }
.cat-nav-btn--next { justify-content: flex-end; }
.cat-nav-btn--all  {
    justify-content: center;
    font-size: .76rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    background: transparent;
    color: var(--ink-2);
    border-color: var(--line);
    padding: var(--s-3) var(--s-5);
}
.cat-nav-btn--all:hover { color: var(--ink); border-color: var(--ink); transform: none; }

.cat-nav-label {
    display: block;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 4px;
    font-weight: 500;
}
.cat-nav-name {
    display: block;
    font-family: var(--f-serif);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.2;
}
.cat-nav-btn--next .cat-nav-label,
.cat-nav-btn--next .cat-nav-name { text-align: right; }

/* ══════════════════════════════════════════════════════
   OKI — CHATBOT WIDGET (adapté palette v3)
══════════════════════════════════════════════════════ */
.oki-widget {
    position: fixed;
    bottom: var(--s-5);
    right: var(--s-5);
    z-index: 95;
}

.oki-bubble {
    position: relative;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--ink);
    box-shadow: 0 6px 22px rgba(26,20,16,.32);
    display: inline-flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: transform var(--tr), background var(--tr);
}
.oki-bubble:hover { transform: scale(1.06); background: var(--gold); }
.oki-avatar { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.oki-avatar-fallback {
    width: 100%; height: 100%; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-l), var(--gold));
    display: none; align-items: center; justify-content: center;
    color: white;
}
.oki-notif {
    position: absolute; top: 2px; right: 2px;
    min-width: 18px; height: 18px;
    background: var(--gold);
    color: white;
    border-radius: 999px;
    font-size: .64rem; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid var(--bg);
}

.oki-panel {
    position: absolute;
    bottom: 76px; right: 0;
    width: min(360px, calc(100vw - 24px));
    background: var(--bg);
    border-radius: var(--r-md);
    box-shadow: var(--sh-3);
    overflow: hidden;
    display: none; flex-direction: column;
    animation: oki-rise 280ms cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid var(--line);
}
.oki-panel.open { display: flex; }
@keyframes oki-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.oki-header {
    background: var(--ink);
    padding: 14px 16px;
    display: flex; align-items: center; gap: 12px;
}
.oki-header-avatar {
    width: 38px; height: 38px;
    border-radius: 50%; object-fit: cover;
    border: 2px solid rgba(255,255,255,.18);
}
.oki-header-info { flex: 1; min-width: 0; }
.oki-header-info strong {
    display: block;
    color: white; font-size: .98rem;
    font-family: var(--f-serif); font-weight: 500;
}
.oki-header-info span {
    display: block;
    color: rgba(255,255,255,.6); font-size: .72rem;
}
.oki-close {
    color: rgba(255,255,255,.7);
    font-size: 1.4rem; line-height: 1;
    padding: 4px 8px;
    transition: color var(--tr);
}
.oki-close:hover { color: white; }

.oki-messages {
    flex: 1; overflow-y: auto;
    padding: 14px 16px;
    display: flex; flex-direction: column; gap: 10px;
    max-height: 320px;
    background: var(--bg);
}
.oki-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: var(--r-md);
    font-size: .88rem; line-height: 1.5;
}
.oki-msg.bot {
    background: var(--bg-2);
    color: var(--ink);
    border-bottom-left-radius: 6px;
    align-self: flex-start;
}
.oki-msg.user {
    background: var(--ink);
    color: white;
    border-bottom-right-radius: 6px;
    align-self: flex-end;
}
.oki-msg-typing { display: flex; align-items: center; gap: 4px; padding: 10px 14px; }
.oki-dot {
    width: 6px; height: 6px;
    background: var(--ink-3);
    border-radius: 999px;
    animation: oki-typing 1.2s ease-in-out infinite;
}
.oki-dot:nth-child(2) { animation-delay: .2s; }
.oki-dot:nth-child(3) { animation-delay: .4s; }
@keyframes oki-typing { 0%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-6px); } }

.oki-suggestions {
    padding: 8px 14px 10px;
    display: flex; flex-wrap: wrap; gap: 6px;
    border-top: 1px solid var(--line);
    background: var(--bg);
}
.oki-sugg {
    background: var(--bg-2);
    color: var(--ink);
    border: 1px solid var(--line-2);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .76rem; font-weight: 500;
    transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.oki-sugg:hover {
    background: var(--ink); color: white; border-color: var(--ink);
}

.oki-input-row {
    padding: 10px 14px;
    display: flex; gap: 8px;
    border-top: 1px solid var(--line);
    background: var(--bg);
}
.oki-input {
    flex: 1;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: .88rem; font-family: var(--f-sans);
    outline: none;
    transition: border-color var(--tr);
    background: var(--bg);
}
.oki-input:focus { border-color: var(--gold); }
.oki-send {
    flex-shrink: 0;
    width: 38px; height: 38px;
    background: var(--ink); color: white;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background var(--tr);
}
.oki-send:hover { background: var(--gold); }

body:has(.drawer.is-open) .oki-widget { opacity: 0; pointer-events: none; transition: opacity var(--tr); }

/* ══════════════════════════════════════════════════════
   PREFERS-REDUCED-MOTION
══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .sec-head, .card, .week-card, .boucherie-card, .boutique-card, .story-img, .story-text, .prod-card { opacity: 1 !important; transform: none !important; }
}

/* ═══════════ HORAIRES BOUTIQUES ═══════════ */
.boutique-hours {
    margin-top: var(--s-3, 12px);
    padding-top: var(--s-3, 12px);
    border-top: 1px solid var(--line, rgba(26,20,16,.08));
    list-style: none;
    padding-left: 0;
}
.boutique-hours li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 4px 0;
    font-size: .82rem;
    color: var(--ink-2, #6B5F52);
}
.boutique-hours li strong {
    color: var(--ink, #1A1410);
    font-weight: 500;
    flex-shrink: 0;
}
.boutique-hours li span {
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.boutique-hours li em {
    font-style: italic;
    color: var(--ink-3, #A89C8E);
    font-size: .76rem;
}

/* ═══════════ CARTE BOUTIQUES (Leaflet) ═══════════ */
.boutiques-map {
    height: 420px;
    margin-bottom: var(--s-6, 32px);
    border-radius: var(--r-md, 12px);
    overflow: hidden;
    border: 1px solid var(--line-2, rgba(26,20,16,.16));
    box-shadow: var(--sh-2, 0 6px 24px -8px rgba(26,20,16,.10));
    z-index: 0;
}
.leaflet-container { font-family: inherit; }

/* Vignette façade (au-dessus du nom dans chaque card) */
.boutique-thumb {
    aspect-ratio: 16 / 9;
    background: var(--bg-warm, #ECE4D6) center/cover no-repeat;
    border-radius: var(--r-sm, 6px);
    margin-bottom: var(--s-3, 12px);
}

/* Marker custom Maison Guillemot */
.guillemot-marker {
    background: transparent !important;
    border: 0 !important;
}
.gm-pin {
    width: 42px;
    height: 42px;
    background: #A0322B;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 1rem;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.35);
    position: relative;
}
.gm-pin::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 12px solid #A0322B;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,.25));
}
.leaflet-popup-content-wrapper { border-radius: 8px; }
.leaflet-popup-content { font-size: .88rem; line-height: 1.5; margin: 12px 16px; }
.leaflet-popup-content strong { font-family: 'EB Garamond', serif; font-size: 1.05rem; color: #1A1410; }
.leaflet-popup-content a { color: #A0322B; font-weight: 500; }

/* ═══════════ BOUTONS GOOGLE MAPS ═══════════ */
.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--s-3, 12px);
    padding: 10px 18px;
    background: #A0322B;
    color: #fff !important;
    text-decoration: none;
    border-radius: var(--r-sm, 6px);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: background var(--tr, 220ms cubic-bezier(0.22, 1, 0.36, 1));
    width: fit-content;
}
.btn-maps:hover { background: #82391C; }
.btn-maps span { line-height: 1; }

.boutiques-map-cta {
    display: flex;
    justify-content: center;
    margin-top: -16px;
    margin-bottom: var(--s-6, 32px);
}
.btn-maps--lg {
    padding: 12px 24px;
    font-size: .88rem;
    box-shadow: 0 4px 14px rgba(160,50,43,.32);
}
.btn-maps--lg:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(160,50,43,.42);
}
