/* =============================================================
   HotZeg — Home (Maison editorial). Layered on top of catalog.css.
============================================================= */

/* HERO --------------------------------------------------------- */
.m-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: clamp(16px, 3vw, 36px) var(--gutter) clamp(40px, 6vw, 72px);
    max-width: var(--max-w);
    margin: 0 auto;
    align-items: center;
    isolation: isolate;
}
/* Artisanal paper grain — extremely subtle, sits above the bg layer and
   below the content. Inline SVG fractal noise = no extra HTTP request.
   Opacity kept very low so it reads as material, not as a visible effect. */
.m-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='6' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.09  0 0 0 0 0.07  0 0 0 0 0.06  0 0 0 0.55 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    background-size: 220px 220px;
    opacity: 0.05;
    mix-blend-mode: multiply;
}
/* Magenta accent on the city name in the hero kicker — a quiet identity tag. */
.m-hero-kicker-accent {
    color: var(--magenta);
    font-weight: 700;
}
@media (min-width: 920px) {
    .m-hero {
        grid-template-columns: 1.15fr 0.85fr;
        gap: clamp(40px, 6vw, 88px);
    }
}
.m-hero-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(48px, 9vw, 112px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 16px 0 24px;
    color: var(--ink);
}
.m-hero-title em {
    font-style: normal;
    color: var(--magenta);
    font-weight: 700;
}

/* New: HotZeg composite logo (chili-in-circle + wordmark image, real assets).
   v3 per client feedback: higher-contrast border (ink at 85%) for premium feel,
   no longer washed-out. Tagline is rendered BELOW the [chili+wordmark] row and
   centered to the logo block — treated as one logical unit. */
.m-hero-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 18px;
}
/* Wordmark-only variant: signature "Enable Your Taste Buds" sits centered
   directly under the HotZeg wordmark, treated as a single visual unit. */
.m-hero-brand--wordmark-only {
    align-items: center;
}
.m-hero-brand--wordmark-only .hz-signature--hero {
    margin: 0;
    text-align: center;
    align-self: center;
}
.m-hero-brand-row {
    display: inline-flex;
    align-items: center;
    gap: clamp(16px, 1.8vw, 24px);
}
.m-hero-logo {
    width: clamp(72px, 7vw, 96px);
    height: clamp(72px, 7vw, 96px);
    border-radius: 999px;
    background: transparent;
    border: 1.5px solid rgba(23, 18, 15, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.m-hero-logo-chili {
    /* Source 1062×1484 (vertical). Lock height, auto width: aspect ratio preserved. */
    width: auto;
    height: 76%;
    max-height: 76%;
    object-fit: contain;
    display: block;
}
.m-hero-wordmark {
    height: clamp(52px, 7.5vw, 92px);
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
}
/* Tagline as part of the composite logo: below the row, no left-border, no
   pipe separator, no margin offset. */
.m-hero-tagline {
    margin: 0;
    padding: 0;
    align-self: flex-start;
}
.m-hero-lede {
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 540px;
    margin: 0 0 32px;
}
.m-hero-lede em { font-family: var(--serif); font-style: italic; color: var(--ink); }
.m-hero-lede strong { color: var(--ink); font-weight: 600; letter-spacing: 0.02em; }
.m-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}
/* Mobile (≤ 559px): keep both hero CTAs side-by-side on a single line.
   We use !important on flex-wrap + flex-basis to defeat any cached / older
   stylesheet that still ships the wrap-friendly default (Nginx static cache,
   service worker, browser cache). The buttons share the row 50/50 with tighter
   padding so the labels still fit on a single line on 360–414px phones. */
@media (max-width: 559px) {
    section.m-hero .m-hero-cta,
    .m-hero .m-hero-cta {
        flex-wrap: nowrap !important;
        gap: 8px;
        width: 100%;
    }
    section.m-hero .m-hero-cta .cat-btn,
    .m-hero .m-hero-cta .cat-btn {
        flex: 1 1 0 !important;
        min-width: 0;
        width: auto;
        padding: 11px 8px;
        font-size: 12.5px;
        align-self: stretch !important;
        text-align: center;
        white-space: nowrap;
    }
}
.m-hero-cta-link {
    margin: 4px 0 0;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.m-hero-cta-link a {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 1px;
    transition: color 180ms ease, border-color 180ms ease;
}
.m-hero-cta-link a:hover { color: var(--magenta); border-bottom-color: var(--magenta); }
.m-hero-right {
    margin: 0;
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 560px;
    justify-self: end;
    width: 100%;
}
/* Polaroid-style 3-bottle stack (replaces single hero image) */
.m-hero-stack {
    position: absolute;
    inset: 0;
    display: block;
}
.m-hero-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58%;
    aspect-ratio: 3 / 4;
    margin: 0;
    background: #fdfaf2;
    padding: 14px 14px 38px;
    border-radius: 6px;
    box-shadow: 0 18px 40px -16px rgba(23, 18, 15, 0.35),
                0 4px 10px -2px rgba(23, 18, 15, 0.18);
    transition: transform 320ms cubic-bezier(.22, 1, .36, 1),
                box-shadow 320ms ease;
}
.m-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}
.m-hero-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    text-align: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--ink);
    text-transform: uppercase;
}
/* Left card — tilt left, slightly behind */
.m-hero-card--1 {
    transform: translate(-92%, -52%) rotate(-9deg);
    z-index: 1;
}
/* Center card — front and tallest */
.m-hero-card--2 {
    transform: translate(-50%, -50%) rotate(2deg);
    z-index: 3;
    width: 60%;
}
/* Right card — tilt right, slightly behind */
.m-hero-card--3 {
    transform: translate(-8%, -48%) rotate(8deg);
    z-index: 2;
}
.m-hero-card:hover {
    transform: translate(var(--tx, -50%), -54%) rotate(var(--rot, 0deg)) scale(1.03);
    z-index: 10;
}
.m-hero-card--1:hover { --tx: -92%; --rot: -9deg; }
.m-hero-card--2:hover { --tx: -50%; --rot: 2deg; }
.m-hero-card--3:hover { --tx: -8%;  --rot: 8deg; }

@media (max-width: 720px) {
    .m-hero-right { max-width: 100%; aspect-ratio: 1 / 0.85; }
    .m-hero-card { padding: 10px 10px 30px; }
    .m-hero-card figcaption { font-size: 10px; bottom: 8px; }
}

/* ---------------------------------------------------------------
   Mobile collage cadrage — keep the lively desktop composition
   (3 tilted bottle cards) but pull the rightmost card back inside
   the viewport. Before this fix, .m-hero-card--3 reached
   right ≈ viewport + 12px on 390px-wide screens, producing a
   subtle horizontal scroll on the homepage only.
   We:
     - tighten the lateral offsets so cards 1 and 3 sit inside the
       hero box,
     - soften the rotations by ~35% (preserves the dynamic feel
       without crowding the small width),
     - apply a very slight overall scale (0.92) — barely perceptible,
       keeps the collage alive.
   Branding/composition kept intact, just cadré mobile.
--------------------------------------------------------------- */
@media (max-width: 480px) {
    .m-hero-card--1 {
        transform: translate(-78%, -52%) rotate(-6deg) scale(0.92);
    }
    .m-hero-card--2 {
        transform: translate(-50%, -50%) rotate(1.5deg) scale(0.92);
    }
    .m-hero-card--3 {
        transform: translate(-22%, -48%) rotate(5deg) scale(0.92);
    }
    /* Match hover targets so they don't snap back to desktop offsets. */
    .m-hero-card--1:hover { --tx: -78%; --rot: -6deg; }
    .m-hero-card--2:hover { --tx: -50%; --rot: 1.5deg; }
    .m-hero-card--3:hover { --tx: -22%; --rot: 5deg; }
    .m-hero-card:hover {
        transform: translate(var(--tx, -50%), -54%) rotate(var(--rot, 0deg)) scale(0.95);
    }
}

/* TRUST BAND --------------------------------------------------- */
.m-trust {
    background: var(--paper);
    color: var(--ink);
    padding: 28px var(--gutter);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.m-trust-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: var(--max-w);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 32px;
    align-items: center;
}
@media (min-width: 760px) {
    .m-trust-list { grid-template-columns: repeat(4, 1fr); gap: 20px 28px; }
}
.m-trust-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-left: 14px;
    border-left: 2px solid var(--magenta);
    min-width: 0;
}
.m-trust-list strong {
    /* Small bold uppercase label sitting ABOVE the descriptive text
       (per client QA: line 1 = small strong title, line 2 = body text). */
    font-family: var(--sans);
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
}
.m-trust-list span {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink-soft);
    line-height: 1.45;
}
@media (max-width: 559px) {
    .m-trust-list li { padding-left: 12px; }
}

/* FEATURED PRODUCT --------------------------------------------- */
.m-feat {
    padding: clamp(56px, 8vw, 120px) var(--gutter);
    background: var(--paper);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.m-feat-wrap {
    max-width: var(--max-w);
    margin: 0 auto 64px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    --feat-accent: var(--magenta);
}
@media (min-width: 880px) {
    .m-feat-wrap {
        grid-template-columns: 1.1fr 1fr;
        gap: clamp(40px, 6vw, 80px);
        align-items: center;
    }
}
.m-feat-fig {
    margin: 0;
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(23, 18, 15, 0.32);
}
.m-feat-fig img { width: 100%; height: 100%; object-fit: cover; }
.m-feat-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
}
.m-feat-body { display: flex; flex-direction: column; gap: 0; }
.m-feat-name {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(56px, 9vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 12px 0 0;
}
.m-feat-name em { font-style: italic; color: var(--feat-accent); }
.m-feat-sub { color: var(--ink-soft); font-size: 16px; margin: 6px 0 18px; font-family: var(--mono); letter-spacing: 0.04em; }
.m-feat-headline {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.35;
    color: var(--ink);
    margin: 0 0 24px;
    max-width: 520px;
}
.m-feat-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 24px;
}
.m-feat-heat { display: inline-flex; gap: 6px; }
.m-feat-heat i {
    width: 10px; height: 10px; border-radius: 999px;
    background: var(--rule); display: inline-block;
}
.m-feat-heat i.is-on { background: var(--feat-accent); }
.m-feat-price {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: 26px;
}
.m-feat-cta { display: flex; flex-direction: column; gap: 12px; }
.m-feat-stepper .qty-stepper-cta {
    background: var(--feat-accent);
    color: var(--paper);
}
.m-feat-stepper .qty-stepper-cta:hover { background: var(--ink); }
.m-feat-link {
    margin: 6px 0 0;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.m-feat-link a {
    color: var(--ink);
    border-bottom: 1px solid var(--feat-accent);
    padding-bottom: 2px;
}
.m-feat-link a:hover { color: var(--feat-accent); }

/* MODERN CAROUSEL ---------------------------------------------- */
.m-carousel {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
}
.m-carousel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 0 0 24px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--rule);
}
.m-carousel-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1;
    letter-spacing: -0.015em;
    margin: 8px 0 0;
}
.m-carousel-nav {
    display: inline-flex;
    gap: 8px;
}
.m-carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--rule);
    background: var(--bg);
    color: var(--ink);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.m-carousel-arrow:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }

.m-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0 28px;
    margin: 0 calc(var(--gutter) * -1);
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.m-carousel-track::-webkit-scrollbar { display: none; }
@media (min-width: 720px) { .m-carousel-track { grid-auto-columns: 45%; gap: 20px; } }
@media (min-width: 1000px) { .m-carousel-track { grid-auto-columns: 31%; gap: 24px; } }
@media (min-width: 1280px) { .m-carousel-track { grid-auto-columns: 23%; gap: 24px; } }

.m-carousel-card {
    --strip-accent: var(--magenta);
    scroll-snap-align: start;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}
.m-carousel-card:hover {
    transform: translateY(-6px);
    border-color: var(--strip-accent);
    box-shadow: 0 20px 40px -16px rgba(23, 18, 15, 0.25);
}
.m-carousel-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--paper);
}
.m-carousel-media figure { margin: 0; width: 100%; height: 100%; }
.m-carousel-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.m-carousel-card:hover .m-carousel-media img { transform: scale(1.05); }
.m-carousel-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--paper);
    color: var(--strip-accent);
    border: 1px solid var(--strip-accent);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}
.m-carousel-body {
    padding: 18px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
}
.m-carousel-link { color: inherit; }
.m-carousel-link:hover { color: inherit; }
.m-carousel-name {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0;
}
.m-carousel-sub { color: var(--ink-soft); font-size: 13px; margin: 6px 0 0; }
.m-carousel-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin: 6px 0 4px;
}
.m-carousel-heat { display: inline-flex; gap: 4px; }
.m-carousel-heat i {
    width: 7px; height: 7px; border-radius: 999px;
    background: var(--rule); display: inline-block;
}
.m-carousel-heat i.is-on { background: var(--strip-accent); }
.m-carousel-price {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
}
.m-carousel-cta-soon {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--strip-accent);
    text-align: center;
    padding: 12px 0;
    border: 1px dashed var(--rule);
    border-radius: var(--radius);
}
.m-carousel-cta-soon:hover { color: var(--ink); border-color: var(--ink); }

.m-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px 0 0;
}
.m-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: var(--rule);
    cursor: pointer;
    padding: 0;
    transition: all 0.15s;
}
.m-carousel-dot.is-active { background: var(--magenta); transform: scale(1.4); }
.m-carousel-dot:hover { background: var(--ink); }
@media (max-width: 480px) {
    .m-carousel-head { flex-wrap: wrap; }
    .m-carousel-arrow { width: 38px; height: 38px; }
}

/* DEPRECATED — kept only for backward compatibility with archived V1 */
.m-strip, .m-strip-card, .m-strip-link, .m-strip-foot, .m-strip-head { display: none !important; }

@media (max-width: 480px) {
    .m-feat-name { font-size: 56px; }
    .m-feat-headline { font-size: 18px; }
}

/* BRAND -------------------------------------------------------- */
.m-brand {
    padding: clamp(64px, 7vw, 104px) var(--gutter) clamp(56px, 6vw, 88px);
}
.m-brand-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 920px) {
    .m-brand-grid { grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; }
}

/* --- Editorial variant: pull-quotes, breathing space, magenta accents.
   v3 per client feedback: widened from ~980px to var(--max-w) (~1280px) so the
   section visually aligns with all other sections of the site. Inner content
   blocks remain centered with comfortable reading widths. */
.m-brand-grid--editorial {
    display: block;
    max-width: var(--max-w);
}
.m-brand-head {
    max-width: 880px;
    margin: 0 auto clamp(40px, 5vw, 72px);
    text-align: center;
    position: relative;
}
.m-brand-head::after {
    content: "";
    display: block;
    width: 56px;
    height: 2px;
    background: var(--magenta);
    margin: clamp(28px, 3vw, 40px) auto 0;
}
.m-brand-head .cat-kicker {
    color: var(--magenta);
    font-weight: 600;
}
.m-brand-title {
    font-family: var(--serif);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(40px, 5.5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.015em;
    margin: 14px 0 22px;
    color: var(--ink);
}
.m-brand-intro {
    font-family: var(--sans);
    font-size: clamp(17px, 1.4vw, 19px);
    line-height: 1.65;
    color: var(--ink);
    max-width: 640px;
    margin: 0 auto;
}

.m-brand-flow {
    max-width: 720px;
    margin: 0 auto;
}
.m-brand-flow > * + * { margin-top: clamp(22px, 2.4vw, 32px); }

.m-brand-body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.72;
    color: var(--ink-soft);
    margin: 0 auto;
    max-width: 720px;
}
.m-brand-body--accent {
    color: var(--ink);
    font-weight: 500;
}
.m-brand-body--closing {
    font-family: var(--serif);
    font-size: clamp(18px, 1.6vw, 21px);
    font-style: italic;
    line-height: 1.55;
    color: var(--ink);
    text-align: center;
    padding: clamp(24px, 3vw, 36px) 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-left: auto;
    margin-right: auto;
    max-width: 880px;
}

/* Pull-quotes: editorial moments that break the text flow with rhythm + magenta */
.m-brand-pull {
    margin: clamp(28px, 3.5vw, 44px) 0;
    padding: 0;
    text-align: center;
}
.m-brand-pull blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(26px, 3.4vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0;
    padding: 0;
    quotes: none;
    position: relative;
    display: inline-block;
    max-width: 640px;
}
.m-brand-pull--first blockquote::before,
.m-brand-pull--experience blockquote::before {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: var(--magenta);
    margin: 0 auto 18px;
}
.m-brand-pull--naissance blockquote {
    color: var(--magenta);
    font-size: clamp(32px, 4.2vw, 48px);
    font-weight: 600;
}
.m-brand-pull--experience blockquote {
    background: linear-gradient(0deg, rgba(255, 0, 170, 0.08) 0%, rgba(255, 0, 170, 0.08) 38%, transparent 38%);
    padding: 0 6px;
}

.m-brand-values {
    background: rgba(0, 0, 0, 0.025);
    border-left: 3px solid var(--magenta);
    padding: clamp(22px, 2.4vw, 32px) clamp(24px, 2.8vw, 36px);
    border-radius: 4px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.m-brand-values .m-brand-body {
    max-width: none;
}
.m-brand-values .m-brand-body + .m-brand-body { margin-top: 14px; }

.m-brand-sign {
    text-align: center;
    margin: clamp(28px, 3vw, 40px) 0 0;
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-soft);
    font-size: 15px;
}

@media (max-width: 559px) {
    .m-brand-pull blockquote { font-size: 24px; }
    .m-brand-pull--naissance blockquote { font-size: 28px; }
    .m-brand-body--closing { font-size: 17px; }
}

/* Legacy --solo grid kept for any leftover use */
.m-brand-text .cat-h1 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(36px, 5.5vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.015em;
    margin: 12px 0 24px;
}
.m-brand-text .cat-h1 em { font-style: italic; color: var(--magenta); }
.m-brand-text p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0 0 18px;
    max-width: 620px;
}
.m-brand-text p em { font-family: var(--serif); font-style: italic; color: var(--ink); }
.m-brand-text p strong { color: var(--ink); font-weight: 600; }
.m-brand-sign {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink);
    margin-top: 24px;
}
.m-brand-pillars ul {
    list-style: none;
    padding: 28px;
    margin: 0;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.m-brand-pillars li { display: flex; flex-direction: column; gap: 4px; }
.m-brand-pillars strong {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 20px;
}
.m-brand-pillars span {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

/* PAIRINGS ----------------------------------------------------- */
.m-pairings {
    padding: clamp(64px, 9vw, 120px) var(--gutter);
    background: var(--paper);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.m-pairings > .m-pairings-head {
    max-width: var(--max-w);
    margin: 0 auto 40px;
}
.m-pairings-lede {
    font-size: 17px;
    color: var(--ink-soft);
    margin: 12px 0 0;
    max-width: 640px;
}
.m-pairings .cat-h1 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.02;
    margin: 12px 0 0;
    letter-spacing: -0.015em;
}
.m-pairings .cat-h1 em { font-style: italic; color: var(--magenta); }
.m-pairings-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 720px) { .m-pairings-grid { grid-template-columns: repeat(2, 1fr); } }
.m-pairings-grid article {
    --pair-accent: var(--magenta);
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    transition: border-color var(--t-fast), transform var(--t-fast);
    position: relative;
    overflow: hidden;
}
.m-pairings-grid article::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: var(--pair-accent);
    transform: scaleX(0.16);
    transform-origin: left;
    transition: transform var(--t-med);
}
.m-pairings-grid article:hover { border-color: var(--pair-accent); transform: translateY(-2px); }
.m-pairings-grid article:hover::before { transform: scaleX(1); }
.m-pair-illu {
    position: absolute;
    right: -24px;
    top: -24px;
    width: 140px;
    height: 140px;
    opacity: 0.12;
    pointer-events: none;
    user-select: none;
    object-fit: contain;
    transition: opacity var(--t-med), transform var(--t-med);
}
.m-pairings-grid article:hover .m-pair-illu { opacity: 0.22; transform: rotate(-8deg) scale(1.05); }
.m-pairings-grid h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.1;
    margin: 10px 0 12px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}
.m-pairings-grid p { margin: 0 0 18px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; position: relative; z-index: 1; }
.m-pairings-grid article > a {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--pair-accent);
    padding-bottom: 2px;
    position: relative;
    z-index: 1;
}
.m-pairings-grid article > a:hover { color: var(--pair-accent); }

/* CONTACT ------------------------------------------------------ */
.m-contact { padding: clamp(64px, 9vw, 120px) var(--gutter); }
.m-contact-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 920px) {
    .m-contact-grid { grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
}
.m-contact .cat-h1 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(36px, 5.5vw, 60px);
    line-height: 1.02;
    margin: 12px 0 20px;
    letter-spacing: -0.015em;
}
.m-contact .cat-h1 em { font-style: italic; color: var(--magenta); }
.m-contact p { font-size: 17px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 16px; }
.m-contact-links {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.8;
}
.m-contact-links a { color: var(--ink); border-bottom: 1px solid var(--rule); }
.m-contact-links a:hover { color: var(--magenta); border-color: var(--magenta); }
.m-contact-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 32px;
}
.m-contact-card h3 {
    font-family: var(--serif);
    font-style: italic;
    font-size: 24px;
    margin: 0 0 18px;
}
.m-contact-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
    color: var(--ink-soft);
}
.m-contact-card strong { color: var(--ink); font-weight: 600; }
.m-contact-card .cat-btn { white-space: normal; width: 100%; padding: 14px 18px; }

/* --- 390px polish --- */
@media (max-width: 480px) {
    .m-hero-title { font-size: 52px; line-height: 0.95; }
    .m-hero-right figcaption { position: static; margin-top: 12px; text-align: right; }
    .m-bottle-name { font-size: 26px; }
    .m-brand-pillars ul { padding: 22px; gap: 18px; }
}

/* =============================================================
   Landing v2 — Featured Sauce / Featured Pack (compact)
   ============================================================= */
.m-feat2 {
    padding: clamp(48px, 6vw, 96px) var(--gutter);
}
.m-feat2-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
@media (min-width: 880px) {
    .m-feat2-grid { grid-template-columns: minmax(280px, 360px) 1fr; gap: 56px; }
    .m-feat2-grid--reverse {
        grid-template-columns: 1fr minmax(280px, 360px);
    }
}
.m-feat2-card { max-width: 360px; margin: 0 auto; }
@media (min-width: 880px) {
    .m-feat2-card { margin: 0; }
    .m-feat2-grid--reverse .m-feat2-card { margin-left: auto; }
}
.m-feat2-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 4px 10px;
    background: var(--ink);
    color: var(--paper);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border-radius: 999px;
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px -4px rgba(0,0,0,0.25);
}
.m-feat2--pack .m-feat2-pill {
    background: var(--feat-accent, var(--magenta));
}
.m-feat2-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}
.m-feat2-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(34px, 4.4vw, 52px);
    line-height: 1.05;
    margin: 4px 0 6px;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.m-feat2-title em {
    font-style: italic;
    color: var(--feat-accent, var(--magenta));
}
.m-feat2-lede {
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.5;
    color: var(--ink);
    margin: 0;
    font-weight: 500;
}
.m-feat2-story {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0;
}
.m-feat2-meta {
    list-style: none;
    padding: 0;
    margin: 4px 0 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    font-size: 14px;
    color: var(--ink-soft);
}
.m-feat2-meta strong {
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.m-feat2-link {
    margin: 6px 0 0;
    font-size: 14px;
    font-weight: 600;
}
.m-feat2-link a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--feat-accent, var(--magenta));
    padding-bottom: 1px;
    transition: color 160ms ease;
}
.m-feat2-link a:hover { color: var(--feat-accent, var(--magenta)); }

/* =============================================================
   CTA catalogs — twin buttons
   ============================================================= */
.m-cta-cats {
    padding: clamp(24px, 4vw, 48px) var(--gutter);
}
.m-cta-cats-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 720px) {
    .m-cta-cats-inner { grid-template-columns: 1fr 1fr; gap: 18px; }
}
.m-cta-cats-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 22px 24px;
    background: var(--paper);
    border: 1.5px solid var(--ink);
    border-radius: 18px;
    color: var(--ink);
    text-decoration: none;
    transition: background 200ms ease, transform 220ms cubic-bezier(.22,1,.36,1), box-shadow 220ms ease;
    overflow: hidden;
}
.m-cta-cats-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--magenta);
    transform: translateY(100%);
    transition: transform 260ms cubic-bezier(.22,1,.36,1);
    z-index: 0;
}
.m-cta-cats-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -16px rgba(0,0,0,0.25); }
.m-cta-cats-btn:hover::before { transform: translateY(0); }
.m-cta-cats-btn:hover .m-cta-cats-kicker,
.m-cta-cats-btn:hover .m-cta-cats-label,
.m-cta-cats-btn:hover .m-cta-cats-arrow { color: var(--paper); }
.m-cta-cats-kicker,
.m-cta-cats-label,
.m-cta-cats-arrow {
    position: relative;
    z-index: 1;
    transition: color 200ms ease;
}
.m-cta-cats-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.m-cta-cats-label {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.1;
}
.m-cta-cats-arrow {
    position: absolute;
    top: 24px;
    right: 22px;
    z-index: 1;
    font-size: 20px;
    color: var(--ink-soft);
    transition: transform 220ms cubic-bezier(.22,1,.36,1), color 200ms ease;
}
.m-cta-cats-btn:hover .m-cta-cats-arrow { transform: translateX(4px); color: var(--paper); }

/* =============================================================
   Contact — compact variant
   ============================================================= */
.m-contact--compact {
    padding: clamp(40px, 5vw, 64px) var(--gutter);
}
.m-contact-grid--compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}
@media (min-width: 760px) {
    .m-contact-grid--compact { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.m-contact-title {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 500;
    line-height: 1.05;
    margin: 4px 0 12px;
    color: var(--ink);
}
.m-contact-title em { font-style: italic; color: var(--magenta); }
.m-contact-col { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.m-contact-links--list {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15.5px;
}
.m-contact-links--list a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 1px;
    transition: color 160ms ease, border-color 160ms ease;
    align-self: flex-start;
}
.m-contact-links--list a:hover { color: var(--magenta); border-color: var(--magenta); }
.m-contact-recap-list {
    list-style: none;
    padding: 16px 18px;
    margin: 0;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14.5px;
}
.m-contact-recap-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    color: var(--ink-soft);
    line-height: 1.4;
}
.m-contact-recap-list li strong {
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
}

/* =============================================================
   Footer — slightly reduced vertical padding
   ============================================================= */
.cat-footer { padding-top: clamp(36px, 4vw, 56px); padding-bottom: clamp(28px, 3vw, 40px); }

/* =============================================================
   Landing v4 — Featured picks (editorial premium, mobile-first)
   ============================================================= */
.m-feat-row {
    padding: clamp(36px, 4vw, 64px) var(--gutter);
}
.m-feat-row-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}
@media (min-width: 840px) {
    .m-feat-row-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
/* 3-column variant for "Continuez la découverte" on detail pages */
.m-feat-row-inner--related {
    grid-template-columns: 1fr;
}
@media (min-width: 720px) {
    .m-feat-row-inner--related { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
    .m-feat-row-inner--related { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ============ Editorial pick card ============ */
.m-pick {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--rule);
    /* Accent micro-line at the top — discrete identity */
    box-shadow: 0 1px 0 0 var(--pick-accent, var(--ink)) inset, 0 2px 10px -8px rgba(0,0,0,0.10);
    transition: transform 360ms cubic-bezier(.22,1,.36,1), box-shadow 360ms ease;
    isolation: isolate;
    height: 100%;
}
.m-pick:hover {
    transform: translateY(-4px);
    box-shadow:
        0 1px 0 0 var(--pick-accent, var(--ink)) inset,
        0 22px 40px -22px rgba(0,0,0,0.22),
        0 2px 10px -8px rgba(0,0,0,0.12);
}

/* Image area — dominant, fixed aspect, blur-fill underneath. Both cards
   share the SAME aspect so heights match perfectly on desktop. */
.m-pick-media {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-accent, #1B1816);
    /* Guarantee no layout shift: explicit min-height fallback for old engines */
    min-height: 0;
}
@media (min-width: 720px) {
    .m-pick-media { aspect-ratio: 6 / 5; }
}
.m-pick-media .img-bg-fill { height: 100%; width: 100%; }
/* IMAGE INTEGRITY RULE — never crop the bottle.
   - .img-bg-fill__main keeps its full source (object-fit:contain, no filter).
   - .img-bg-fill__bg is the blurred extension that fills the surrounding
     space so the card still reads as edge-to-edge immersive colour. */
.m-pick-media .img-bg-fill__main { object-fit: contain !important; }
.m-pick:hover .img-bg-fill__main { transform: scale(1.03); }

/* Badge — micro pill top-left, accent-colored */
.m-pick-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 12px;
    background: var(--paper);
    color: var(--ink);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    box-shadow: 0 4px 14px -4px rgba(0,0,0,0.25);
    border: 1px solid var(--pick-accent, var(--ink));
}
.m-pick--pack .m-pick-badge {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

/* ============ Body — flex column, push CTAs to bottom ============ */
.m-pick-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 22px 22px;
    flex: 1 1 auto;
    min-height: 0;
}
@media (min-width: 720px) {
    .m-pick-body { padding: 22px 26px 24px; gap: 12px; }
}

.m-pick-headrow {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}
.m-pick-name {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--ink);
    min-width: 0;
}
.m-pick-price {
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    flex-shrink: 0;
    padding: 4px 10px;
    background: var(--paper-warm, #FAF5EC);
    border-radius: 8px;
    border: 1px solid var(--rule);
}
.m-pick-sub {
    font-size: 14px;
    line-height: 1.4;
    color: var(--ink-soft);
    margin: 0;
    font-style: italic;
    /* 1 line max */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 1.4em;
}
.m-pick-headline {
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--ink);
    margin: 0;
    font-weight: 500;
    /* clamp 2 lines, reserve space so cards stay aligned */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(2 * 1.5em);
}

/* Meta row — heat micro-section + inline editorial cue on the right.
   Single horizontal baseline: chilis left, "Découvrir ↗" right.
   No min-height — natural sizing tightens the card vertically. */
.m-pick-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 8px 0;
    border-top: 1px dashed var(--rule);
    border-bottom: 1px dashed var(--rule);
    margin: 6px 0 0;
}
/* Inline CTA now lives inside .m-pick-meta — kill its standalone padding */
.m-pick-meta .m-pick-cue {
    padding: 0;
    margin: 0;
    min-height: 0;
    flex: 0 0 auto;
}
.m-pick-heat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.m-pick-heat i {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--rule);
    transition: background 200ms ease;
}
.m-pick-heat i.is-on { background: var(--pick-accent, var(--magenta)); }
.m-pick-heat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* Pack composition — multi-row mini-block: label + list of sauces */
.m-pick-compo {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    line-height: 1.35;
    min-width: 0;
    width: 100%;
}
.m-pick-compo-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.m-pick-compo-list {
    font-size: 12.5px;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
    /* clamp 1 line on desktop, 2 lines on mobile for readability */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
.m-pick-compo-list strong {
    color: var(--ink);
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Editorial shortcut — sits BELOW the clickable card area as a discreet
   secondary link ("Découvrir toute la gamme →"). Lives outside the
   wrapping <a> so it remains a valid, independent link. */
.m-pick-shortcut {
    display: flex;
    justify-content: center;
    padding: 0 22px 22px;
    margin-top: -4px;
}
.m-pick-shortcut-link {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 8px 4px;
    border-bottom: 1px solid transparent;
    transition: color var(--t-fast), border-color var(--t-fast);
}
.m-pick-shortcut-link:hover {
    color: var(--ink);
    border-bottom-color: var(--ink);
}

/* Legacy classes — kept as no-op so any cached HTML doesn't break layout */
.m-pick-ctas { display: none; }
.m-pick-cta--primary, .m-pick-cta--secondary, .m-pick-cta--ghost { display: none; }

/* Mobile : keep tighter */
@media (max-width: 559px) {
    .m-pick-name { font-size: 22px; }
    .m-pick-body { padding: 18px 18px 20px; gap: 10px; }
    .m-pick-meta { min-height: auto; }
}

/* Brand grid — solo variant (no aside pillars, full width text). Aligned on
   the global --max-w so the section sits in the same editorial grid as the
   hero / featured row / catalog. Paragraphs keep their 620px reading width
   internally (set on .m-brand-text p above). */
.m-brand-grid--solo {
    grid-template-columns: 1fr !important;
    max-width: var(--max-w);
}
.m-brand-grid--solo .m-brand-text p { max-width: none; }

/* =============================================================
   Unified product card additions — kicker, format badge,
   compact buy module, "Bientôt disponible" disabled state.
============================================================= */
.m-pick-kicker {
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 2px;
}
.m-pick-fmt {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    min-width: 60px;
    max-width: calc(100% - 28px);
    padding: 6px 12px;
    background: var(--paper, #FAF5EC);
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    color: var(--ink);
    box-shadow: 0 4px 14px -4px rgba(0,0,0,0.18);
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
}

/* =============================================================
   Editorial discreet nav cue — "Découvrir ↗" indicator.
   Sits inline at the bottom-right of the body. Compact pill,
   never full-width, never a real button. The whole card link
   handles the navigation; this is purely a visual cue.
============================================================= */
.m-pick-cue {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
    /* Match the dashed meta row's vertical rhythm above: same padding-block
       so the CTA sits in a coherent grid with the heat line. */
    padding-top: 18px;
    padding-bottom: 4px;
    min-height: 52px;
}
.m-pick-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 600;
    /* Slight densification — feels more typeset, less HTML-default */
    letter-spacing: -0.005em;
    line-height: 1;
    color: var(--ink);
    background: var(--paper);
    border: 1.25px solid var(--ink);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 1px 0 0 rgba(23,18,15,0.04);
    transition: background-color var(--t-med, 280ms ease),
                color var(--t-med, 280ms ease),
                box-shadow var(--t-med, 280ms ease);
    pointer-events: none; /* the whole card link handles clicks */
}
.m-pick-cta-arrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: transform var(--t-med, 280ms cubic-bezier(.22,1,.36,1));
}
/* Hover on the whole card — paper-warm fill (NOT solid ink, which would steal
   the visual hierarchy from the product itself). Border stays ink, text stays ink. */
.m-pick:hover .m-pick-cta--discover {
    background: var(--paper-warm, #F4EBDB);
    box-shadow: 0 6px 14px -10px rgba(23,18,15,0.22);
}
.m-pick:hover .m-pick-cta-arrow {
    transform: translate(3px, -3px);
}

/* "Bientôt dispo" — same compact shape, faded + dashed, no shadow */
.m-pick-cta--soon {
    color: var(--ink-soft);
    background: transparent;
    border: 1.25px dashed rgba(23,18,15,0.28);
    box-shadow: none;
    cursor: default;
}

/* Legacy classes — kept as no-op so any cached HTML doesn't break layout */
.m-pick-actions { display: none; }
.m-pick-cart-pill { display: none; }
.m-pick-buy { display: none; }

/* Catalog grid: 3 cols desktop, 2 cols ≥720px, 1 col tiny screens */
.m-feat-row-inner--catalog {
    grid-template-columns: 1fr;
}
@media (min-width: 540px) {
    .m-feat-row-inner--catalog { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
    .m-feat-row-inner--catalog { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
/* Edge case — exactly 2 cards (e.g. /packs with 2 packs): keep the 2-col
   layout on large screens to avoid an empty 3rd grid track. Constrain max
   width so 2 cards don't stretch into huge tiles, and center the row. */
@media (min-width: 1040px) {
    .m-feat-row-inner--catalog:has(> :nth-child(2):last-child) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile compact tweaks for the unified product_card */
@media (max-width: 559px) {
    .m-pick-fmt { bottom: 10px; right: 10px; padding: 4px 9px; font-size: 9.5px; }
    .m-pick-kicker { font-size: 10px; }
    .m-pick-cue { padding-top: 12px; }
    .m-pick-cta { font-size: 11px; padding: 6px 12px; }
    /* Mini-card header on mobile narrow: stack name + price pill so the pill
       never overlaps a wrapping title. Keep the gap tight to preserve the
       compact, premium density of the card header. Desktop layout unchanged. */
    .m-pick-headrow {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* =============================================================
   Unified product_card — final layout rules.
   - .m-pick (article) : container, position:relative, anchor for absolute pill.
   - .m-pick-link (<a>) : the clickable region (image + text); flex column.
   - .m-pick-media (<figure>) : stable image wrapper with fixed aspect-ratio.
   - .m-pick-cart-pill : attached to the CARD (not the image), top-right,
                         pointer-events:none so clicks fall through to <a>.
   - .m-pick-actions (stepper / disabled CTA) : OUTSIDE the link, never
                         triggers navigation when clicked.
============================================================= */

.m-pick { position: relative; }
.m-pick:focus-within {
    /* Neutral, subtle focus — ink/paper aesthetic, never colored by accent */
    outline: 1.5px solid rgba(23, 18, 15, 0.28);
    outline-offset: 3px;
}

/* Anchor that wraps image + body — fills the card so figure & body stack
   exactly like before, and the whole region is clickable. */
.m-pick-link {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    color: inherit;
    text-decoration: none;
    min-width: 0;
}
.m-pick-link:hover .m-pick-name { color: var(--pick-accent, var(--magenta)); }
/* Neutral focus — never inherit accent color. Override base.css. */
.m-pick-link:focus-visible {
    outline: 1.5px solid rgba(23, 18, 15, 0.28);
    outline-offset: 3px;
    border-radius: 6px;
}
.m-pick-media { display: block; }

/* Cart pill removed — quick-add is no longer available from cards.
   Add-to-cart now lives only on the product detail page. */

/* =============================================================
   Heat micro-section — HotZeg signature.
   Stands as a small autonomous visual block, not a meta line.
   - Chilis are the only thing in the meta row (no text label).
   - Generous gap, vertical breathing room, optical centering.
   - Inactive state: muted but readable (no flashy gray).
============================================================= */
.m-pick-heat {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}
/* Img source already coloured. Hide the legacy label if any old cache renders it. */
.m-pick-heat-label { display: none; }

.m-pick-heat-icon,
.hz-heat__icon {
    flex-shrink: 0;
    display: inline-block;
    /* Source PNG is 1064×1494 (vertical chili). Lock height, auto width. */
    width: auto;
    height: 24px;
    object-fit: contain;
    transition: opacity 220ms ease, transform 220ms cubic-bezier(.22,1,.36,1);
    user-select: none;
    -webkit-user-drag: none;
}
.hz-heat__icon--off,
.m-pick-heat-icon:not(.is-on) {
    /* PNG is the black-filled chili silhouette: naturally readable on
       warm cream backgrounds, no opacity / sepia trick needed. We keep
       it at full opacity so the 5-slot rating reads as a deliberate
       editorial signature, not a faded placeholder. */
    opacity: 1;
    filter: none;
}
.hz-heat__icon--on,
.m-pick-heat-icon.is-on {
    opacity: 1;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.10));
}

/* Mobile: keep a strong visual signature even on smaller cards */
@media (max-width: 559px) {
    .m-pick-heat-icon, .hz-heat__icon { width: auto !important; height: 22px !important; }
    .m-pick-heat { gap: 7px; }
}


/* =============================================================
   Editorial variant — HOMEPAGE featured cards only.
   Detected via parent grid `.m-feat-row-inner` WITHOUT the
   `--related` (detail page) or `--catalog` (listing) modifiers.
   These cards must keep more breathing room than catalog cards
   so the homepage stays editorial, not e-commerce.
============================================================= */
.m-feat-row-inner:not(.m-feat-row-inner--related):not(.m-feat-row-inner--catalog) .m-pick {
    border-radius: 26px;
}
.m-feat-row-inner:not(.m-feat-row-inner--related):not(.m-feat-row-inner--catalog) .m-pick-media {
    aspect-ratio: 5 / 4;
}
@media (min-width: 720px) {
    .m-feat-row-inner:not(.m-feat-row-inner--related):not(.m-feat-row-inner--catalog) .m-pick-media {
        aspect-ratio: 7 / 5;
    }
}
.m-feat-row-inner:not(.m-feat-row-inner--related):not(.m-feat-row-inner--catalog) .m-pick-body {
    padding: 24px 26px 22px;
    gap: 12px;
}
@media (min-width: 720px) {
    .m-feat-row-inner:not(.m-feat-row-inner--related):not(.m-feat-row-inner--catalog) .m-pick-body {
        padding: 30px 34px 26px;
        gap: 14px;
    }
}
.m-feat-row-inner:not(.m-feat-row-inner--related):not(.m-feat-row-inner--catalog) .m-pick-name {
    font-size: clamp(26px, 2.8vw, 34px);
    line-height: 1.02;
}
.m-feat-row-inner:not(.m-feat-row-inner--related):not(.m-feat-row-inner--catalog) .m-pick-sub {
    font-size: 15px;
    line-height: 1.45;
}
.m-feat-row-inner:not(.m-feat-row-inner--related):not(.m-feat-row-inner--catalog) .m-pick-headline {
    font-size: 15.5px;
    line-height: 1.55;
}
.m-feat-row-inner:not(.m-feat-row-inner--related):not(.m-feat-row-inner--catalog) .m-pick-meta {
    padding: 10px 0;
    min-height: 0;
}
.m-feat-row-inner:not(.m-feat-row-inner--related):not(.m-feat-row-inner--catalog) .m-pick-cue {
    padding-top: 0;
}

/* =============================================================
   Compact detail-page suggestions slightly on DESKTOP (≥920px).
   Mobile rules in sauce-detail.css already handle smaller screens.
============================================================= */
@media (min-width: 920px) {
    .sd-related .m-pick-body { padding: 18px 20px 20px; gap: 9px; }
    .sd-related .m-pick-name { font-size: 20px; }
    .sd-related .m-pick-meta { padding: 8px 0; min-height: 0; }
    .sd-related .m-pick-cue { padding-top: 0; }
    .sd-related .m-pick-headline { font-size: 13.5px; line-height: 1.45; min-height: calc(2 * 1.45em); }
    .sd-related .m-pick-sub { font-size: 13px; }
    .sd-related .m-pick-heat-icon { width: auto !important; height: 20px !important; }
    .sd-related .m-pick-heat { gap: 7px; }
}


/* =============================================================
   POPPINS = HotZeg brand typography.
   `var(--serif)` now points to Poppins (see catalog.css).
   Poppins ships in upright weights only → neutralise the
   synthetic obliques on H1/H2-scale titles where it looks fake.
   Body inline `em` (small, narrative) keeps the synthetic
   italic — Poppins renders it cleanly enough at small sizes.
============================================================= */
.m-hero-title em,
.m-feat-name em,
.m-feat2-title em,
.m-feat-headline,
.m-contact-title em,
.m-brand-text .cat-h1 em,
.m-pairings .cat-h1 em,
.m-contact .cat-h1 em,
.m-carousel-name,
.m-carousel-price,
.m-feat-price,
.m-brand-pillars strong,
.m-pairings-grid h3,
.m-contact-card h3,
.m-trust-list strong {
    font-style: normal;
    font-weight: 600;
}
.m-feat-name em,
.m-feat2-title em,
.m-contact-title em,
.m-brand-text .cat-h1 em,
.m-pairings .cat-h1 em,
.m-contact .cat-h1 em { font-weight: 700; }
