/* Univers De Jeux — style référence retrogaming (navy / blanc / accent vert) */
:root {
    --navy: #0d2b45;
    --navy-deep: #0a2340;
    --orange: #27bc2e;
    --orange-hover: #1fa828;
    --white: #ffffff;
    --grey-bg: #f4f6f8;
    --grey-text: #5c6b7a;
    --text: #1a2b3c;
    --border: #dde4ea;
    --radius-pill: 999px;
    --radius: 12px;
    --header-max: 1280px;
    --font: 'Montserrat', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--grey-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: 0.5rem 1rem;
    background: var(--orange);
    color: var(--white);
}

.skip-link:focus {
    left: 0.5rem;
    top: 0.5rem;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ——— Header ——— */
.site-header {
    background: var(--navy);
    color: var(--white);
    position: relative;
    z-index: 50;
}

/* Desktop : toute la barre d’en-tête reste visible au scroll */
@media (min-width: 901px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
    }
}

.topbar {
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
    max-width: var(--header-max);
    margin: 0 auto;
    padding: 0.45rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-ico {
    flex-shrink: 0;
    display: block;
}

.header-ico--sm {
    width: 18px;
    height: 18px;
}

.header-search__submit .header-ico--search,
.header-cart .header-ico--cart {
    color: inherit;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.9);
}

.topbar-link:hover {
    color: var(--orange);
}

.topbar-link .header-ico {
    opacity: 0.95;
}

.topbar-link:hover .header-ico {
    color: var(--orange);
}

.btn-menu-mobile {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-menu-mobile .header-ico {
    color: var(--orange);
}

.topbar-links {
    display: flex;
    gap: 1.25rem;
    font-size: 0.85rem;
}

.header-main {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-main-inner {
    max-width: var(--header-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--white);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.site-logo__img {
    display: block;
    height: clamp(3.5rem, 5vw, 2.75rem);
    width: auto;
    max-width: min(100%, 220px);
    object-fit: contain;
}

.site-logo:hover .site-logo__img {
    filter: brightness(1.08);
}

.header-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: flex-end;
    min-width: 200px;
}

.btn-boutique {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    border: 2px solid var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-boutique:hover {
    background: rgba(39, 188, 46, 0.15);
}

.btn-boutique__burger {
    width: 14px;
    height: 2px;
    background: var(--orange);
    box-shadow: 0 -4px 0 var(--orange), 0 4px 0 var(--orange);
    border-radius: 1px;
    flex-shrink: 0;
}

.header-search {
    flex: 1;
    min-width: 180px;
    max-width: 420px;
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius-pill);
    overflow: hidden;
    border: 1px solid var(--border);
}

.header-search input {
    flex: 1;
    border: none;
    padding: 0.65rem 1rem;
    font-family: inherit;
    font-size: 0.9rem;
    min-width: 0;
}

.header-search input:focus {
    outline: none;
}

.header-search__submit {
    border: none;
    background: transparent;
    padding: 0 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-text);
    transition: color 0.15s ease, background 0.15s ease;
}

.header-search__submit:hover {
    color: var(--navy);
    background: rgba(13, 43, 69, 0.06);
}

.header-search__submit:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: -2px;
}

.header-util {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
}

.header-util__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.92);
}

.header-util__link:hover {
    color: var(--orange);
}

.header-util__link:hover .header-ico {
    color: var(--orange);
}

.header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    color: var(--white);
    border-radius: var(--radius);
    transition: color 0.15s ease, background 0.15s ease;
}

.header-cart:hover {
    color: var(--orange);
    background: rgba(255, 255, 255, 0.06);
}

.header-cart__badge {
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: var(--orange);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ——— Layout rail + main ——— */
.site-body {
    display: flex;
    flex: 1;
    min-height: 0;
    overflow: visible;
}

/* Fond gris plein écran derrière le rail (desktop, au survol du menu) */
.sidebar-backdrop {
    display: none;
}

/* ——— Sidebar fly-out (multi-niveaux au survol) ——— */
.sidebar-fly {
    width: 252px;
    flex-shrink: 0;
    background: var(--white);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 40;
    min-height: 200px;
    box-shadow: 2px 0 14px rgba(13, 43, 69, 0.06);
    overflow: visible;
}

.sidebar-fly__header {
    position: relative;
    background: var(--navy);
    color: var(--white);
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.sidebar-fly__burger {
    width: 16px;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
    box-shadow: 0 -5px 0 var(--orange), 0 5px 0 var(--orange);
}

.sidebar-fly__nav {
    flex: 1;
    overflow: visible;
}

.sidebar-fly__l1 {
    list-style: none;
    margin: 0;
    padding: 0.4rem 0 0.75rem;
    overflow: visible;
}

.sidebar-fly__l1-item {
    position: relative;
}

.sidebar-fly__l1-item--nest {
    position: relative;
}

.sidebar-fly__l1-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem 0.65rem 1rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.88rem;
    transition: background 0.15s, color 0.15s;
}

.sidebar-fly__l1-link:hover,
.sidebar-fly__l1-item.is-active > .sidebar-fly__l1-link {
    background: rgba(39, 188, 46, 0.1);
    color: var(--navy);
}

.sidebar-fly__l1-item.is-active > .sidebar-fly__l1-link .sidebar-ico {
    color: var(--orange);
}

.sidebar-ico {
    flex-shrink: 0;
    color: var(--navy);
    opacity: 0.92;
}

.sidebar-fly__label {
    flex: 1;
    text-align: left;
}

.sidebar-fly__chev {
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--grey-text);
    border-bottom: 2px solid var(--grey-text);
    transform: rotate(-45deg);
    margin-left: 0.25rem;
    opacity: 0.65;
    flex-shrink: 0;
}

.sidebar-fly__panel {
    position: absolute;
    left: calc(100% - 1px);
    top: 0;
    min-width: 240px;
    max-width: min(380px, 85vw);
    max-height: none;
    overflow: visible;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 10px 10px 32px rgba(13, 43, 69, 0.15);
    margin: 0;
    padding: 0.4rem 0;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s;
    z-index: 100;
}

.sidebar-fly__panel--l3 {
    z-index: 110;
    top: 0;
    max-height: none;
    overflow: visible;
}

@media (hover: hover) and (pointer: fine) {
    .sidebar-fly__l1-item--nest:hover > .sidebar-fly__panel--l2,
    .sidebar-fly__item--nest:hover > .sidebar-fly__panel--l3 {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
}

.sidebar-fly__l1-item--nest:focus-within > .sidebar-fly__panel--l2,
.sidebar-fly__item--nest:focus-within > .sidebar-fly__panel--l3 {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.sidebar-fly__item {
    position: relative;
    list-style: none;
}

.sidebar-fly__item--nest {
    position: relative;
}

.sidebar-fly__link {
    display: block;
    padding: 0.5rem 1rem 0.5rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    border-left: 3px solid transparent;
}

.sidebar-fly__link:hover {
    background: var(--grey-bg);
    color: var(--orange);
    border-left-color: var(--orange);
}

.sidebar-fly__item--nest > .sidebar-fly__link {
    padding-right: 1.6rem;
    position: relative;
}

.sidebar-fly__item--nest > .sidebar-fly__link::after {
    content: '›';
    position: absolute;
    right: 0.55rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey-text);
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.75;
}

.sidebar-fly__explore {
    display: block;
    margin-top: auto;
    padding: 0.85rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    color: var(--navy);
    border-top: 1px solid var(--border);
    background: var(--grey-bg);
}

.sidebar-fly__explore:hover {
    color: var(--orange);
    background: rgba(39, 188, 46, 0.08);
}

/* Rail replié : icônes seules ; au survol : largeur pleine + fond gris */
@media (min-width: 901px) {
    .sidebar-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(32, 42, 55, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
        z-index: 25;
    }

    .site-body:has(.sidebar-fly:hover) .sidebar-backdrop,
    .site-body:has(.sidebar-fly:focus-within) .sidebar-backdrop {
        opacity: 1;
    }

    .sidebar-fly {
        width: 60px;
        min-width: 60px;
        transition:
            width 0.22s ease,
            min-width 0.22s ease,
            box-shadow 0.22s ease;
    }

    .sidebar-fly:not(:hover):not(:focus-within) {
        overflow: hidden;
    }

    .sidebar-fly:hover,
    .sidebar-fly:focus-within {
        width: 252px;
        min-width: 252px;
        overflow: visible;
        box-shadow: 6px 0 32px rgba(13, 43, 69, 0.2);
    }

    .sidebar-fly:not(:hover):not(:focus-within) .sidebar-fly__menu-title {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .sidebar-fly:not(:hover):not(:focus-within) .sidebar-fly__header {
        justify-content: center;
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }

    .sidebar-fly:hover .sidebar-fly__header,
    .sidebar-fly:focus-within .sidebar-fly__header {
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .sidebar-fly:not(:hover):not(:focus-within) .sidebar-fly__label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .sidebar-fly:not(:hover):not(:focus-within) .sidebar-fly__chev {
        display: none;
    }

    .sidebar-fly:not(:hover):not(:focus-within) .sidebar-fly__l1-link {
        justify-content: center;
        gap: 0;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .sidebar-fly:hover .sidebar-fly__l1-link,
    .sidebar-fly:focus-within .sidebar-fly__l1-link {
        justify-content: flex-start;
        gap: 0.65rem;
        padding-left: 1rem;
        padding-right: 0.85rem;
    }

    .sidebar-fly:not(:hover):not(:focus-within) .sidebar-fly__explore {
        opacity: 0;
        max-height: 0;
        min-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin: 0;
        border-width: 0;
        overflow: hidden;
        pointer-events: none;
    }

    .sidebar-fly:hover .sidebar-fly__explore,
    .sidebar-fly:focus-within .sidebar-fly__explore {
        opacity: 1;
        max-height: 6rem;
        margin-top: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
        border-top-width: 1px;
        pointer-events: auto;
    }
}

.site-main-wrap {
    flex: 1;
    min-width: 0;
    background: var(--grey-bg);
}

.site-main {
    max-width: var(--header-max);
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
}

.content-panel--legal {
    max-width: 720px;
}

/* Page offre cadeau / bonus — /bonus/cadeau-premier-client/ */
.content-panel.gift-welcome {
    max-width: 880px;
}

.gift-welcome__hero {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(15, 35, 60, 0.12);
}

.gift-welcome__badge {
    display: inline-block;
    margin: 0 0 0.75rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--orange, #e85d04);
    background: rgba(232, 93, 4, 0.12);
    border-radius: 999px;
}

.gift-welcome__title {
    margin-bottom: 0.75rem;
}

.gift-welcome__lead {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text);
}

.gift-welcome__grid {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 720px) {
    .gift-welcome__grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

.gift-card {
    padding: 1.35rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(15, 35, 60, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(15, 35, 60, 0.06);
}

.gift-card--accent {
    border-color: rgba(232, 93, 4, 0.35);
    background: linear-gradient(135deg, #fff 0%, rgba(255, 248, 240, 0.95) 100%);
}

.gift-card__title {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    color: var(--navy);
}

.gift-card__text {
    margin: 0 0 0.85rem;
    line-height: 1.6;
    color: var(--text);
    font-size: 0.96rem;
}

.gift-card__text:last-child {
    margin-bottom: 0;
}

.gift-card__list {
    margin: 0;
    padding-left: 1.15rem;
    line-height: 1.55;
    color: var(--text);
    font-size: 0.92rem;
}

.gift-card__list li {
    margin-bottom: 0.45rem;
}

.gift-welcome__note {
    padding: 1.1rem 1.25rem;
    background: #f4f6f9;
    border-radius: 10px;
    border: 1px solid rgba(15, 35, 60, 0.08);
}

.gift-welcome__note-title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--navy);
}

.gift-welcome__note-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text);
}

.gift-welcome__faq {
    margin-top: 2rem;
    margin-bottom: 0;
}

.gift-welcome__faq .home-faq__inner {
    max-width: 100%;
}

.legal-section {
    margin-bottom: 1.75rem;
}

.legal-section__title {
    font-size: 1.15rem;
    margin: 0 0 0.75rem;
    color: var(--navy);
}

.legal-section__p {
    margin: 0 0 0.75rem;
    line-height: 1.6;
    color: var(--text);
}

.plan-site__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plan-site__item {
    margin-bottom: 0.45rem;
}

.plan-site__link {
    font-weight: 600;
    color: var(--navy);
}

.plan-site__link:hover {
    color: var(--orange);
}

@media (min-width: 640px) {
    .plan-site__list {
        columns: 2;
        column-gap: 2rem;
    }

    .plan-site__item {
        break-inside: avoid;
    }
}

.checkout-cgv {
    margin: 1rem 0 0;
    font-size: 0.88rem;
}

.checkout-cgv__label {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    cursor: pointer;
    line-height: 1.5;
}

.checkout-cgv__label input {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.checkout-cgv__label a {
    color: var(--orange);
    text-decoration: underline;
}

/* ——— Flash (retours formulaires / panier) ——— */
.flash {
    margin: 0 0 1rem;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    border: 1px solid transparent;
}

.flash--success {
    background: rgba(39, 188, 46, 0.12);
    border-color: rgba(39, 188, 46, 0.35);
    color: #14661a;
}

.flash--error {
    background: rgba(180, 40, 40, 0.08);
    border-color: rgba(180, 40, 40, 0.28);
    color: #8b1c1c;
}

.flash--info {
    background: rgba(13, 43, 69, 0.06);
    border-color: rgba(13, 43, 69, 0.12);
    color: var(--navy);
}

/* ——— Titres de page (catalogue, panier, etc.) ——— */
.page-title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.45rem, 3.5vw, 1.85rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

/* ——— Panier ——— */
.site-main--cart {
    padding-bottom: 3.5rem;
}

.cart-page-header {
    margin-bottom: 1.5rem;
}

.cart-page-lead {
    margin: 0;
    font-size: 1rem;
    color: var(--grey-text);
    line-height: 1.5;
}

.cart-page-lead__meta {
    margin: 0 0.35rem;
    opacity: 0.5;
}

.cart-page-lead__count {
    font-weight: 600;
    color: var(--text);
}

.cart-page-lead__refs {
    font-weight: 500;
    color: var(--grey-text);
    font-size: 0.92em;
}

.cart-empty {
    text-align: center;
    padding: 2.5rem 1.25rem 3rem;
    max-width: 28rem;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow:
        0 4px 28px rgba(13, 43, 69, 0.08),
        0 1px 3px rgba(13, 43, 69, 0.04);
}

.cart-empty__visual {
    margin-bottom: 1.25rem;
}

.cart-empty__ico {
    color: var(--border);
    opacity: 0.85;
}

.cart-empty__title {
    margin: 0 0 0.65rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
}

.cart-empty__text {
    margin: 0 0 1.5rem;
    line-height: 1.6;
    color: var(--grey-text);
    font-size: 0.98rem;
}

.cart-empty__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cart-empty__secondary {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.cart-empty__secondary:hover {
    color: var(--orange);
}

.cart-layout {
    display: grid;
    gap: 1.75rem;
    align-items: start;
}

@media (min-width: 960px) {
    .cart-layout {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
        gap: 2rem;
    }
}

.cart-toolbar {
    margin: 0 0 1rem;
}

.cart-toolbar__back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    transition: color 0.15s ease, transform 0.15s ease;
}

.cart-toolbar__back:hover {
    color: var(--orange);
}

.cart-toolbar__back svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.cart-lines {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-line {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas:
        'thumb body'
        'thumb qty'
        'thumb sub'
        'thumb remove';
    gap: 0.5rem 1rem;
    padding: 1.1rem 1rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 2px 14px rgba(13, 43, 69, 0.05);
    align-items: start;
}

@media (min-width: 720px) {
    .cart-line {
        grid-template-columns: 96px minmax(0, 1.2fr) auto auto auto;
        grid-template-areas: 'thumb body qty sub remove';
        gap: 1rem 1.25rem;
        align-items: center;
        padding: 1.15rem 1.25rem;
    }
}

.cart-line__thumb {
    grid-area: thumb;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: var(--grey-bg);
    align-self: start;
}

.cart-line__thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.cart-line__body {
    grid-area: body;
    min-width: 0;
}

.cart-line__title {
    display: block;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 0.25rem;
}

.cart-line__title:hover {
    color: var(--orange);
}

.cart-line__meta {
    display: block;
    font-size: 0.82rem;
    color: var(--grey-text);
    margin-bottom: 0.65rem;
}

@media (min-width: 720px) {
    .cart-line__meta {
        margin-bottom: 0;
    }
}

.cart-line__unit {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    font-size: 0.88rem;
    color: var(--grey-text);
}

@media (min-width: 720px) {
    .cart-line__unit {
        margin-top: 0.35rem;
    }
}

.cart-line__unit-label {
    font-weight: 600;
}

.cart-line__unit-value {
    color: var(--text);
    font-weight: 600;
}

.cart-line__qty-block {
    grid-area: qty;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cart-line__qty-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--grey-text);
}

@media (min-width: 720px) {
    .cart-line__qty-label {
        display: none;
    }
}

.cart-line__sub {
    grid-area: sub;
    text-align: left;
}

@media (min-width: 720px) {
    .cart-line__sub {
        text-align: right;
    }
}

.cart-line__sub-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--grey-text);
}

@media (min-width: 720px) {
    .cart-line__sub-label {
        display: none;
    }
}

.cart-line__sub-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
}

.cart-line__remove {
    grid-area: remove;
    justify-self: end;
    align-self: start;
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--radius);
    background: transparent;
    color: var(--grey-text);
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease;
}

.cart-line__remove:hover {
    color: #b42828;
    background: rgba(180, 40, 40, 0.08);
}

.cart-line__remove:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

@media (min-width: 720px) {
    .cart-line__remove {
        justify-self: center;
        align-self: center;
    }
}

.qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.qty-stepper__btn {
    width: 38px;
    height: 38px;
    border: none;
    background: var(--grey-bg);
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.qty-stepper__btn:hover {
    background: rgba(39, 188, 46, 0.15);
    color: var(--orange-hover);
}

.qty-stepper__btn:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: -2px;
    z-index: 1;
}

.qty-stepper__input {
    width: 3rem;
    margin: 0;
    padding: 0.4rem 0.25rem;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    text-align: center;
    color: var(--text);
    background: var(--white);
    -moz-appearance: textfield;
}

.qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-stepper__input:focus {
    outline: none;
    background: rgba(39, 188, 46, 0.06);
}

.cart-actions {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.btn-cart-update {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.35rem;
    border-radius: var(--radius-pill);
    border: 2px solid var(--navy);
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-cart-update:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(39, 188, 46, 0.06);
}

.btn-cart-update:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.cart-remove-form {
    display: none;
}

.cart-summary__box {
    margin: 0;
    padding: 1.35rem 1.25rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow:
        0 4px 24px rgba(13, 43, 69, 0.07),
        0 1px 3px rgba(13, 43, 69, 0.04);
}

.cart-summary__box--sticky {
    position: sticky;
    top: 1rem;
}

.cart-summary__title {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
}

.cart-shipping-progress {
    margin: 0 0 1.15rem;
}

.cart-shipping-progress__bar {
    height: 8px;
    border-radius: var(--radius-pill);
    background: var(--grey-bg);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.cart-shipping-progress__fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--orange-hover), var(--orange));
    transition: width 0.35s ease;
}

.cart-shipping-progress__text {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.45;
    color: var(--grey-text);
}

.cart-shipping-progress--done {
    margin: 0 0 1.15rem;
    padding: 0.75rem 0.9rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #14661a;
    background: rgba(39, 188, 46, 0.1);
    border-radius: var(--radius);
    border: 1px solid rgba(39, 188, 46, 0.25);
}

.cart-shipping-progress__badge {
    display: inline-block;
    margin-right: 0.35rem;
    padding: 0.15rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--radius-pill);
    background: var(--orange);
    color: var(--white);
    vertical-align: middle;
}

.cart-summary__lines {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.35rem 1rem;
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

.cart-summary__lines dt {
    margin: 0;
    color: var(--grey-text);
}

.cart-summary__lines dd {
    margin: 0;
    font-weight: 600;
    text-align: right;
}

.cart-summary__lines > dt.cart-summary__total,
.cart-summary__lines > dd.cart-summary__total {
    padding-top: 0.75rem;
    margin-top: 0.35rem;
    border-top: 1px solid var(--border);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
}

.cart-free {
    font-weight: 700;
    color: #14661a;
}

.cart-hint {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--grey-text);
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 0.95rem 1.25rem;
    text-align: center;
    border-radius: var(--radius-pill);
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s ease, transform 0.1s ease;
    box-shadow: 0 4px 14px rgba(39, 188, 46, 0.35);
}

.btn-checkout:hover {
    background: var(--orange-hover);
    color: var(--white);
}

.btn-checkout:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

.cart-summary__foot {
    margin: 1rem 0 0;
    text-align: center;
}

.cart-summary__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.cart-summary__link:hover {
    color: var(--orange);
}

/* ——— Checkout ——— */
.site-main--checkout {
    padding-bottom: 3.5rem;
}

.checkout-page-header {
    margin-bottom: 1.75rem;
    max-width: 42rem;
}

.checkout-lead {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--grey-text);
}

.checkout-payment-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0 0 1.35rem;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--navy);
    background: rgba(39, 188, 46, 0.06);
    border: 1px solid rgba(39, 188, 46, 0.22);
    border-radius: var(--radius);
}

.checkout-payment-notice__ico {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--orange);
}

.checkout-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--grey-text);
}

.checkout-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.checkout-trust__item svg {
    flex-shrink: 0;
    color: var(--orange);
    opacity: 0.9;
}

.checkout-layout {
    display: grid;
    gap: 1.75rem;
    align-items: start;
}

@media (min-width: 900px) {
    .checkout-layout {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
        gap: 2rem;
    }
}

.checkout-main-col {
    min-width: 0;
}

.checkout-toolbar {
    margin: 0 0 1rem;
}

.checkout-toolbar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    transition: color 0.15s ease;
}

.checkout-toolbar__link:hover {
    color: var(--orange);
}

.checkout-toolbar__link svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.checkout-form {
    margin: 0;
    padding: 1.35rem 1.25rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow:
        0 4px 24px rgba(13, 43, 69, 0.07),
        0 1px 3px rgba(13, 43, 69, 0.04);
}

@media (min-width: 640px) {
    .checkout-form {
        padding: 1.55rem 1.5rem 1.65rem;
    }
}

.checkout-fieldset {
    margin: 0 0 1.35rem;
    padding: 0;
    border: none;
    min-width: 0;
}

.checkout-fieldset:last-of-type {
    margin-bottom: 0;
}

.checkout-fieldset__legend {
    margin: 0 0 0.85rem;
    padding: 0;
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.checkout-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
    flex: 1;
    min-width: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
}

.checkout-label--full {
    width: 100%;
}

.checkout-label__text {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
}

.checkout-label__hint {
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--grey-text);
}

.checkout-label abbr {
    text-decoration: none;
    color: #b42828;
    font-weight: 800;
}

.checkout-input,
.checkout-label > input:not([type="checkbox"]),
.checkout-label > textarea {
    width: 100%;
    margin: 0;
    padding: 0.82rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: var(--grey-bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.checkout-label > textarea {
    min-height: 7rem;
    resize: vertical;
    line-height: 1.5;
}

.checkout-input::placeholder,
.checkout-label > input::placeholder,
.checkout-label > textarea::placeholder {
    color: var(--grey-text);
    opacity: 0.65;
}

.checkout-input:hover,
.checkout-label > input:not([type="checkbox"]):hover,
.checkout-label > textarea:hover {
    border-color: #c5d0dc;
    background: var(--white);
}

.checkout-input:focus,
.checkout-label > input:not([type="checkbox"]):focus,
.checkout-label > textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(39, 188, 46, 0.22);
}

.checkout-row {
    display: grid;
    gap: 1rem;
}
@media (min-width: 520px) {
    .checkout-row {
        grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
    }
}

.checkout-fieldset--payment {
    margin-top: 1.5rem;
    padding-top: 1.35rem;
    border-top: 1px solid var(--border);
}

.checkout-pay-lead {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--grey-text);
}

.checkout-pay-grid {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .checkout-pay-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.checkout-pay-card {
    position: relative;
    display: block;
    cursor: pointer;
    margin: 0;
}

.checkout-pay-card__input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.checkout-pay-card__box {
    display: block;
    padding: 1rem 1rem 1.05rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--grey-bg);
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.checkout-pay-card__title {
    display: block;
    font-weight: 800;
    font-size: 0.98rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.checkout-pay-card__desc {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--grey-text);
}

.checkout-pay-card:hover .checkout-pay-card__box {
    border-color: #c5d0dc;
    background: var(--white);
}

.checkout-pay-card__input:focus {
    outline: none;
}

.checkout-pay-card__input:focus + .checkout-pay-card__box {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(39, 188, 46, 0.22);
    background: var(--white);
}

.checkout-pay-card__input:checked + .checkout-pay-card__box {
    border-color: var(--orange);
    background: rgba(39, 188, 46, 0.06);
    box-shadow: 0 0 0 1px rgba(39, 188, 46, 0.22);
}

.checkout-cgv {
    margin: 1.35rem 0 0;
    padding-top: 1.35rem;
    border-top: 1px solid var(--border);
}

.checkout-submit-wrap {
    margin-top: 1.25rem;
}

.btn-checkout-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.95rem 1.25rem;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    font-size: 1.05rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
    box-shadow: 0 4px 14px rgba(39, 188, 46, 0.35);
}

.btn-checkout-submit:hover {
    background: var(--orange-hover);
}

.btn-checkout-submit:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

.checkout-aside .cart-summary__box {
    position: sticky;
    top: 1rem;
}

.checkout-recap .checkout-recap-lines {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.85rem;
}

.checkout-recap-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 0.65rem 0.75rem;
    align-items: center;
    margin-bottom: 0.85rem;
}

.checkout-recap-item:last-child {
    margin-bottom: 0;
}

.checkout-recap-item__thumb {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: var(--grey-bg);
}

.checkout-recap-item__thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.checkout-recap-item__body {
    min-width: 0;
}

.checkout-recap-item__title {
    display: block;
    font-weight: 700;
    font-size: 0.86rem;
    line-height: 1.35;
    color: var(--navy);
}

.checkout-recap-item__title:hover {
    color: var(--orange);
}

.checkout-recap-item__qty {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.78rem;
    color: var(--grey-text);
}

.checkout-recap-item__price {
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--navy);
    white-space: nowrap;
}

.checkout-recap-dd__price {
    display: block;
}

.checkout-recap-dd__hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--grey-text);
    line-height: 1.4;
}

.checkout-recap__edit {
    margin: 0.85rem 0 0;
    text-align: center;
}

.checkout-promo {
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.checkout-promo__title {
    margin: 0 0 0.35rem;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--navy);
}

.checkout-promo__hint {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--grey-text);
}

.checkout-promo__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: stretch;
}

.checkout-promo__label {
    flex: 1 1 8rem;
    min-width: 0;
    margin: 0;
}

.checkout-promo__input {
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.checkout-promo__actions {
    flex: 0 0 auto;
}

.btn-checkout-promo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 0.65rem 1rem;
    border: 2px solid var(--navy);
    border-radius: var(--radius-pill);
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.88rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.btn-checkout-promo:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-checkout-promo:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.checkout-promo__remove-form {
    margin: 0.55rem 0 0;
}

.checkout-promo__remove {
    padding: 0;
    border: none;
    background: none;
    color: var(--grey-text);
    font-size: 0.8rem;
    font-family: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.checkout-promo__remove:hover {
    color: var(--navy);
}

.checkout-recap-totals__discount {
    color: var(--green-dark, #1a7f37);
}

.checkout-recap-totals dd.checkout-recap-totals__discount {
    font-weight: 700;
}

/* ——— Page confirmation commande ——— */
.order-success {
    max-width: 32rem;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 3rem;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow:
        0 4px 28px rgba(13, 43, 69, 0.08),
        0 1px 3px rgba(13, 43, 69, 0.04);
}

.order-success__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: rgba(39, 188, 46, 0.15);
    color: #14661a;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.order-success .page-title {
    margin-bottom: 1rem;
}

.order-success__id,
.order-success__discount,
.order-success__total,
.order-success__pay,
.order-success__mail {
    margin: 0 0 0.75rem;
    line-height: 1.55;
    color: var(--text);
    font-size: 0.98rem;
}

.order-success__discount {
    color: var(--green-dark, #1a7f37);
}

.order-success__pay {
    color: var(--grey-text);
    font-size: 0.92rem;
}

.order-success__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

@media (min-width: 480px) {
    .order-success__actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Checkout & contacts : récap partagé (layout contact) */
.contact-layout {
    display: grid;
    gap: 1.75rem;
    align-items: start;
}

@media (min-width: 900px) {
    .contact-layout {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
        gap: 2rem;
    }
}

.contact-aside .cart-summary__box {
    position: sticky;
    top: 1rem;
}

/* ——— Newsletter ——— */
.newsletter-layout {
    display: grid;
    gap: 1.75rem;
    align-items: start;
}

@media (min-width: 900px) {
    .newsletter-layout {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
        gap: 2rem;
    }
}

.newsletter-main {
    min-width: 0;
}

.newsletter-lead {
    margin: 0 0 1.35rem;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--grey-text);
    max-width: 42rem;
}

.newsletter-card {
    margin: 0;
    padding: 1.45rem 1.25rem 1.55rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow:
        0 4px 24px rgba(13, 43, 69, 0.07),
        0 1px 3px rgba(13, 43, 69, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

@media (min-width: 640px) {
    .newsletter-card {
        padding: 1.65rem 1.6rem 1.75rem;
    }
}

.newsletter-card__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-card__label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.01em;
}

.newsletter-card__req {
    color: var(--orange);
    text-decoration: none;
    font-weight: 800;
}

.newsletter-card__input {
    width: 100%;
    margin: 0;
    padding: 0.82rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: var(--grey-bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.newsletter-card__input::placeholder {
    color: var(--grey-text);
    opacity: 0.75;
}

.newsletter-card__input:hover {
    border-color: #c5d0dc;
    background: var(--white);
}

.newsletter-card__input:focus {
    outline: none;
    background: var(--white);
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(39, 188, 46, 0.22);
}

.newsletter-card__consent {
    margin: 0;
    padding: 1rem 1rem 1.05rem;
    background: linear-gradient(180deg, rgba(244, 246, 248, 0.95) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.newsletter-card__consent-label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text);
    margin: 0;
}

.newsletter-card__checkbox {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: var(--orange);
    cursor: pointer;
    border-radius: 4px;
}

.newsletter-card__consent-text a {
    color: var(--orange);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.newsletter-card__consent-text a:hover {
    color: var(--orange-hover);
}

.btn-newsletter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 18rem;
    min-height: 48px;
    padding: 0.82rem 1.5rem;
    margin-top: 0.15rem;
    border: none;
    border-radius: var(--radius-pill);
    background: linear-gradient(165deg, #3dd148 0%, var(--orange) 48%, #18a322 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    line-height: 1.2;
    box-shadow:
        0 4px 14px rgba(31, 168, 40, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-newsletter:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow:
        0 7px 20px rgba(31, 168, 40, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-newsletter:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

.btn-newsletter:focus-visible {
    outline: 3px solid var(--navy);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .btn-newsletter {
        transition: filter 0.15s ease;
    }

    .btn-newsletter:hover {
        transform: none;
    }
}

.newsletter-aside__box {
    padding: 1.2rem 1.15rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(13, 43, 69, 0.06);
}

.newsletter-aside__title {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
}

.newsletter-aside__text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--grey-text);
}

/* ——— Hero carousel ——— */
.hero-carousel {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2rem;
    min-height: 280px;
    background: var(--navy);
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 320px;
    align-items: stretch;
}

.hero-slide.is-active {
    display: flex;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
}

.hero-slide__inner {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}

.hero-slide__inner h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-slide__inner .btn-hero {
    align-self: flex-start;
}

.btn-hero {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-pill);
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
}

.btn-hero:hover {
    background: var(--orange-hover);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 0.5rem;
}

.hero-nav button {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.25);
    color: var(--white);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.hero-nav button:hover {
    background: rgba(39, 188, 46, 0.5);
    border-color: var(--orange);
}

/* ——— Intro ——— */
.home-intro {
    text-align: center;
    padding: 1rem 0 2rem;
    max-width: 720px;
    margin: 0 auto;
}

.home-intro h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.home-intro p {
    color: var(--grey-text);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ——— Blocs accueil (includes/home_blocks.php) ——— */
.home-newclient {
    margin: 0 0 2.5rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
    box-shadow: 0 12px 40px rgba(13, 43, 69, 0.2);
    overflow: hidden;
}

.home-newclient__inner {
    display: grid;
    gap: 1.75rem;
    padding: 1.75rem 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .home-newclient__inner {
        grid-template-columns: 1fr auto;
        padding: 2rem 2.25rem;
        gap: 2rem;
    }
}

.home-newclient__badge {
    display: inline-block;
    margin: 0 0 0.65rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    background: rgba(39, 188, 46, 0.2);
    border: 1px solid rgba(39, 188, 46, 0.45);
    color: #b8f0bc;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.home-newclient h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    line-height: 1.25;
}

.home-newclient__lead {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
}

.home-newclient__body {
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.home-newclient__note {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    font-style: italic;
}

.home-newclient__aside {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
}

@media (min-width: 768px) {
    .home-newclient__aside {
        align-items: flex-end;
        min-width: 220px;
    }
}

.home-newclient__code-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.25);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    width: 100%;
}

@media (min-width: 768px) {
    .home-newclient__code-box {
        width: auto;
        min-width: 200px;
    }
}

.home-newclient__code-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
}

.home-newclient__code {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--orange);
}

.home-newclient__cta {
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    .home-newclient__cta {
        width: auto;
    }
}

.home-pillars {
    margin: 0 0 2.5rem;
}

.home-pillars__heading {
    margin: 0 0 1.25rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
}

.home-pillars__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .home-pillars__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.home-pillar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.15rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    .home-pillar-card {
        transition: none;
    }
}

.home-pillar-card:hover {
    box-shadow: 0 8px 28px rgba(13, 43, 69, 0.08);
    border-color: rgba(39, 188, 46, 0.35);
}

.home-pillar-card__icon {
    display: flex;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.home-pillar-card__title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
}

.home-pillar-card__text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--grey-text);
}

.home-categories {
    margin: 0 0 2.5rem;
}

.home-categories__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.85rem;
}

.home-cat-tile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 700;
    color: var(--navy);
    transition: border-color 0.2s ease, background 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    .home-cat-tile {
        transition: none;
    }
}

.home-cat-tile:hover {
    border-color: var(--orange);
    background: rgba(39, 188, 46, 0.06);
}

.home-cat-tile__name {
    font-size: 0.95rem;
}

.home-cat-tile__arrow {
    color: var(--orange);
    font-size: 1.1rem;
}

.home-bottom-cta {
    margin: 0 0 2.5rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
}

.home-bottom-cta__inner {
    padding: 1.75rem 1.5rem;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.home-bottom-cta h2 {
    margin: 0 0 0.65rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
}

.home-bottom-cta p {
    margin: 0 0 1.25rem;
    color: var(--grey-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.home-bottom-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.home-bottom-cta__secondary {
    background: transparent;
}

/* ——— FAQ accueil (imports/home_faq.php) ——— */
.home-faq {
    margin: 0 0 2.5rem;
}

.home-faq__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.75rem 1.35rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 6px 28px rgba(13, 43, 69, 0.06);
}

.home-faq__title {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
}

.home-faq__intro {
    margin: 0 0 1.35rem;
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--grey-text);
}

.home-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--grey-bg);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(39, 188, 46, 0.35);
}

.faq-item[open] {
    background: var(--white);
    border-color: rgba(39, 188, 46, 0.45);
    box-shadow: 0 4px 16px rgba(13, 43, 69, 0.06);
}

.faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.1rem;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--navy);
    list-style: none;
}

.faq-item__summary::-webkit-details-marker {
    display: none;
}

.faq-item__summary::marker {
    content: '';
}

.faq-item__question {
    flex: 1;
    line-height: 1.4;
    text-align: left;
}

.faq-item__chev {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(39, 188, 46, 0.12);
    position: relative;
    transition: transform 0.22s ease, background 0.2s ease;
}

.faq-item__chev::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: translate(-50%, -60%) rotate(45deg);
    transition: transform 0.22s ease;
}

.faq-item[open] .faq-item__chev {
    background: rgba(39, 188, 46, 0.22);
}

.faq-item[open] .faq-item__chev::before {
    transform: translate(-50%, -30%) rotate(-135deg);
}

@media (prefers-reduced-motion: reduce) {
    .faq-item__chev,
    .faq-item__chev::before {
        transition: none;
    }
}

.faq-item__summary:focus-visible {
    outline: 3px solid var(--navy);
    outline-offset: 3px;
    border-radius: 10px;
}

.faq-item__body {
    padding: 0 1.1rem 1.1rem;
    border-top: 1px solid transparent;
}

.faq-item[open] .faq-item__body {
    border-top-color: var(--border);
}

.faq-item__body p {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--grey-text);
}

/* ——— Section nouveautés ——— */
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.section-head h2 {
    margin: 0;
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-head h2 .star {
    color: var(--orange);
    font-size: 1.2rem;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-pill);
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-outline-light:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ——— Product grid ——— */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

@media (min-width: 1100px) {
    .product-grid--dense {
        grid-template-columns: repeat(5, 1fr);
    }
}

.product-card {
    background: var(--white);
    border-radius: calc(var(--radius) + 2px);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

@media (prefers-reduced-motion: reduce) {
    .product-card {
        transition: box-shadow 0.2s ease, border-color 0.2s ease;
    }
}

.product-card:hover {
    box-shadow: 0 14px 36px rgba(13, 43, 69, 0.12);
    border-color: rgba(39, 188, 46, 0.35);
    transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
    .product-card:hover {
        transform: none;
    }
}

.product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4/3;
    background: linear-gradient(160deg, #e8eef3 0%, var(--grey-bg) 100%);
    overflow: hidden;
}

.product-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 55%, rgba(13, 43, 69, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.product-card:hover .product-card__media::after {
    opacity: 1;
}

.product-card__media-inner {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
    .product-card:hover .product-card__media img {
        transform: none;
    }
}

.product-card__ribbon {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 2;
    padding: 0.28rem 0.65rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #e85d04 0%, #c2410c 100%);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 12px rgba(194, 65, 12, 0.4);
}

.product-card__overlay-out {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 43, 69, 0.55);
    color: var(--white);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-card__body {
    padding: 1rem 1rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.4rem;
}

.product-card__cat {
    font-size: 0.72rem;
    color: var(--grey-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.product-card__title {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.35;
    margin: 0;
    min-height: 2.5rem;
}

.product-card__title a {
    color: inherit;
}

.product-card__title a:hover {
    color: var(--orange);
}

.product-card__price-row {
    margin-top: auto;
    padding-top: 0.35rem;
}

.product-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
}

.product-card__price-current {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.product-card__price-old {
    font-size: 0.82rem;
    color: var(--grey-text);
    text-decoration: line-through;
}

.product-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.5rem;
}

.product-card__form {
    margin: 0;
    width: 100%;
}

.product-card__unavail {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--grey-text);
    text-align: center;
    padding: 0.5rem;
}

.product-card__detail {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.product-card__detail:hover {
    color: var(--orange);
}

/* Bouton panier (cartes + fiche produit) */
.btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 44px;
    padding: 0.68rem 1rem;
    touch-action: manipulation;
    border: none;
    border-radius: var(--radius-pill);
    background: linear-gradient(165deg, #3dd148 0%, var(--orange) 48%, #18a322 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 0.82rem;
    font-family: inherit;
    cursor: pointer;
    line-height: 1.2;
    box-shadow:
        0 4px 14px rgba(31, 168, 40, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-cart__ico {
    flex-shrink: 0;
    opacity: 0.95;
}

.btn-cart:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow:
        0 7px 20px rgba(31, 168, 40, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-cart:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

.btn-cart:focus-visible {
    outline: 3px solid var(--navy);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .btn-cart {
        transition: filter 0.15s ease;
    }

    .btn-cart:hover {
        transform: none;
    }
}

.btn-cart--card {
    font-size: 0.78rem;
    padding: 0.62rem 0.85rem;
}

.btn-cart--product {
    width: auto;
    min-width: 220px;
    padding: 0.85rem 1.6rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* ——— Category page + filters ——— */
.category-layout {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.breadcrumbs {
    margin-bottom: 1.5vw;
}

.filters-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.filters-sidebar h3 {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: var(--navy);
}

.filter-group {
    margin-bottom: 1.25rem;
}

.filter-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--grey-text);
}

.filter-group select,
.filter-group input[type="number"] {
    width: 100%;
    padding: 0.45rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
}

.stock-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.stock-toggles label {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.stock-toggles input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.stock-toggles span {
    padding: 0.4rem 0.65rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--grey-bg);
}

.stock-toggles input:checked + span {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.price-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.price-row input {
    flex: 1;
    min-width: 0;
}

.btn-filter {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.btn-filter:hover {
    background: var(--orange-hover);
}

.category-main {
    flex: 1;
    min-width: 0;
}

.category-main h1 {
    margin: 0 0 1rem;
    font-size: 1.75rem;
    color: var(--navy);
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.toolbar label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--grey-text);
}

.toolbar select {
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-family: inherit;
}

.toolbar a {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.85rem;
}

.toolbar a:hover {
    text-decoration: underline;
}

/* ——— Product detail ——— */
.product-detail {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: clamp(1.25rem, 2.5vw, 2rem);
    max-width: 1180px;
}

.product-detail__layout {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: 1fr;
    align-items: start;
}

@media (min-width: 900px) {
    .product-detail__layout {
        grid-template-columns: minmax(0, 1.2fr) minmax(300px, 420px);
        gap: 2rem 2.25rem;
    }

    .product-detail__sidebar {
        position: sticky;
        top: 1rem;
    }
}

/* Galerie / carrousel */
.product-gallery {
    outline: none;
    border-radius: var(--radius);
}

.product-gallery:focus-visible {
    box-shadow: 0 0 0 3px rgba(232, 126, 42, 0.45);
}

.product-gallery__viewport {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(145deg, var(--grey-bg) 0%, #e8ecf0 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.product-gallery__track {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: inherit;
}

.product-gallery__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.38s ease;
}

.product-gallery__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.product-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(13, 43, 69, 0.18);
    transition: background 0.2s ease, transform 0.2s ease;
}

.product-gallery__nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.04);
}

.product-gallery__nav:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

.product-gallery__nav--prev {
    left: 0.65rem;
}

.product-gallery__nav--next {
    right: 0.65rem;
}

.product-gallery__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.65rem;
    flex-wrap: wrap;
}

.product-gallery__counter {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--grey-text);
    letter-spacing: 0.02em;
}

.product-gallery__dots {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.product-gallery__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.product-gallery__dot.is-active {
    background: var(--orange);
    transform: scale(1.25);
}

.product-gallery__dot:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

.product-gallery__thumbs {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
}

.product-gallery__thumb {
    flex: 0 0 auto;
    width: 76px;
    height: 57px;
    padding: 0;
    border: 2px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--grey-bg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-gallery__thumb.is-active {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery__thumb:focus-visible {
    outline: 3px solid var(--navy);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .product-gallery__slide {
        transition: none;
    }
}

/* Encart achat */
.product-detail__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.product-detail__badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    text-decoration: none;
}

.product-detail__badge--cat {
    background: rgba(13, 43, 69, 0.08);
    color: var(--navy);
}

.product-detail__badge--cat:hover {
    background: rgba(232, 126, 42, 0.15);
    color: var(--orange);
}

.product-detail__badge--promo {
    background: linear-gradient(135deg, #e85d2a 0%, #f4a020 100%);
    color: var(--white);
}

.product-detail__badge--stock {
    background: rgba(31, 168, 40, 0.12);
    color: #1a7a22;
}

.product-detail__badge--out {
    background: rgba(180, 50, 50, 0.1);
    color: #a83232;
}

.product-detail__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    line-height: 1.2;
    color: var(--navy);
}

.product-detail__lead {
    margin: 0 0 1rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--grey-text);
}

.product-detail__price-row {
    margin-bottom: 1.1rem;
}

.price-block {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0.5rem 0 1rem;
}

.price-block--product {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.85rem;
    margin: 0;
}

.price-block__current {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--navy);
}

.price-block .old,
.price-block__old {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--grey-text);
    text-decoration: line-through;
}

.product-add-form__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.85rem 1rem;
    margin-bottom: 0.25rem;
}

.product-add-form__row .product-qty-label {
    margin-bottom: 0;
}

.btn-cart--product {
    margin-bottom: 0;
}

.product-trust {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 1rem 1rem 1rem 0.25rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.product-trust__item {
    display: flex;
    gap: 0.65rem;
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--grey-text);
}

.product-trust__ico {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(13, 43, 69, 0.06);
    color: var(--navy);
}

.product-trust__item a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.product-trust__item a:hover {
    color: var(--navy);
}

.product-detail__content {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
    display: grid;
    gap: 1.75rem;
}

.product-detail__section {
    margin: 0;
}

.product-detail__h2 {
    font-size: 1.15rem;
    margin: 0 0 0.85rem;
    color: var(--navy);
    padding-bottom: 0.45rem;
    border-bottom: 2px solid rgba(232, 126, 42, 0.35);
}

.product-detail__prose p {
    color: var(--grey-text);
    line-height: 1.7;
    margin: 0 0 0.85rem;
}

.product-detail__prose p:last-child {
    margin-bottom: 0;
}

.product-specs-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.product-specs-table th,
.product-specs-table td {
    padding: 0.65rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.product-specs-table tbody tr:last-child th,
.product-specs-table tbody tr:last-child td {
    border-bottom: none;
}

.product-specs-table tbody tr:nth-child(even) {
    background: rgba(13, 43, 69, 0.03);
}

.product-specs-table th {
    font-weight: 700;
    color: var(--navy);
    width: 38%;
    vertical-align: top;
}

.product-specs-table td {
    color: var(--grey-text);
}

.home-faq--product {
    margin: 2rem 0 0;
}

.home-faq--product .home-faq__inner {
    max-width: none;
}

.product-related {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
}

.product-related__title {
    font-size: 1.2rem;
    margin: 0 0 1.25rem;
    color: var(--navy);
}

.product-grid--related {
    margin-top: 0;
}

/* ——— Catalog index ——— */
.catalog-categories {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.catalog-categories a {
    display: block;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-weight: 700;
    color: var(--navy);
}

.catalog-categories a:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ——— Stub / search ——— */
.stub-page {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2rem;
    max-width: 720px;
}

.stub-page form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.stub-page input[type="search"] {
    flex: 1;
    min-width: 200px;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    font-family: inherit;
}

/* ——— Page recherche (.search-block) ——— */
.search-block {
    margin-bottom: 1.75rem;
    padding: 1.35rem 1.25rem 1.5rem;
    max-width: 44rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow:
        0 4px 24px rgba(13, 43, 69, 0.07),
        0 1px 3px rgba(13, 43, 69, 0.04);
}

@media (min-width: 640px) {
    .search-block {
        padding: 1.5rem 1.45rem 1.6rem;
    }
}

.search-block .page-title {
    margin-bottom: 1.1rem;
}

.search-block__form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

@media (min-width: 520px) {
    .search-block__form {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        gap: 0.75rem;
    }
}

.search-block__field {
    flex: 1;
    min-width: min(100%, 220px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.15rem 0.15rem 0.15rem 0.85rem;
    background: var(--grey-bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.search-block__field:focus-within {
    background: var(--white);
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(39, 188, 46, 0.22);
}

.search-block__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-text);
    opacity: 0.9;
}

.search-block__field:focus-within .search-block__icon {
    color: var(--orange);
    opacity: 1;
}

.search-block__input {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0.72rem 0.85rem 0.72rem 0.25rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

.search-block__input::placeholder {
    color: var(--grey-text);
    opacity: 0.75;
}

.search-block__input:focus {
    outline: none;
}

.search-block__input::-webkit-search-cancel-button {
    margin-right: 0.35rem;
    cursor: pointer;
}

.search-block__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.82rem 1.5rem;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--orange);
    color: var(--white);
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, transform 0.1s ease;
    box-shadow: 0 4px 14px rgba(39, 188, 46, 0.28);
}

.search-block__submit:hover {
    background: var(--orange-hover);
}

.search-block__submit:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

.search-results-count {
    margin: 0 0 1.35rem;
    font-size: 0.95rem;
    color: var(--grey-text);
    line-height: 1.5;
}

/* ——— Footer ——— */
.site-footer {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 42%, #0f2840 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: 2.75rem 1.25rem 0;
    margin-top: auto;
    border-top: 3px solid var(--orange);
    box-shadow: 0 -12px 40px rgba(13, 43, 69, 0.12);
}

.site-footer__inner {
    max-width: var(--header-max);
    margin: 0 auto;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem 2.5rem;
    padding-bottom: 2.25rem;
}

@media (min-width: 560px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (min-width: 900px) {
    .site-footer__grid {
        grid-template-columns: minmax(200px, 1.15fr) repeat(3, minmax(0, 1fr)) minmax(200px, 1.1fr);
        align-items: start;
    }

    .site-footer__brand {
        grid-column: auto;
    }
}

.site-footer__brand {
    max-width: 22rem;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.65rem;
}

.site-footer__logo:hover .site-footer__logo-img {
    filter: brightness(1.1);
}

.site-footer__logo-img {
    display: block;
    height: 3.5rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.site-footer__tagline {
    margin: 0 0 0.75rem;
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__founded {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-footer__heading {
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__list li {
    margin-bottom: 0.45rem;
}

.site-footer__list a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.15s ease, padding-left 0.15s ease;
    display: inline-block;
}

.site-footer__list a:hover {
    color: var(--orange);
    padding-left: 0.2rem;
}

.site-footer__col--legal .site-footer__list a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__contact {
    padding: 1.1rem 1.15rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 900px) {
    .site-footer__contact {
        padding: 1.15rem 1.25rem;
    }
}

.site-footer__address {
    margin: 0 0 1rem;
    font-size: 0.86rem;
    line-height: 1.55;
    font-style: normal;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer__address-line {
    margin: 0 0 0.4rem;
}

.site-footer__address-line:last-child {
    margin-bottom: 0;
}

.site-footer__address a {
    color: var(--white);
    font-weight: 600;
}

.site-footer__address a:hover {
    color: var(--orange);
}

.site-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-pill);
    background: var(--orange);
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
    transition: background 0.15s ease, transform 0.12s ease;
}

.site-footer__cta:hover {
    background: var(--orange-hover);
    color: var(--navy);
    transform: translateY(-1px);
}

.site-footer__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.site-footer__pay-badge {
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__copy {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer__copy a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.site-footer__copy a:hover {
    color: var(--orange);
}

.site-footer__copy-sep {
    margin: 0 0.35rem;
    opacity: 0.45;
}

.site-footer__copy-meta {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 640px) {
    .site-footer__bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-footer__payments {
        justify-content: center;
    }
}

/* ——— Cookie bar ——— */
.cookie-popup--bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e8ecf0;
    border-top: 1px solid var(--border);
    padding: 1rem 1.25rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.cookie-popup--bar.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
}

.cookie-popup__inner {
    max-width: var(--header-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-popup__text {
    margin: 0;
    flex: 1;
    min-width: 220px;
    color: var(--text);
    font-size: 0.88rem;
}

.cookie-popup__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.cookie-popup__links {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
}

.cookie-popup__sep {
    opacity: 0.45;
    user-select: none;
}

.cookie-popup__more {
    font-weight: 700;
    color: var(--navy);
    text-decoration: underline;
    font-size: 0.85rem;
}

.btn-cookie-accept {
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-pill);
    background: var(--orange);
    color: var(--white);
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.btn-cookie-accept:hover {
    background: var(--orange-hover);
}

/* ——— Mobile ——— */
@media (max-width: 900px) {
    /*
     * Sticky sur un enfant de .site-header provoque souvent sur iOS/WebKit un scroll
     * « bloqué » dans la zone header. On utilise fixed + décalage du bloc principal.
     */
    .site-header {
        position: static;
        box-shadow: none;
    }

    .topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 100;
        box-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
        padding-top: env(safe-area-inset-top, 0);
    }

    .header-main {
        padding-top: calc(env(safe-area-inset-top, 0px) + 3rem);
    }

    .topbar-links {
        display: none;
    }

    .btn-menu-mobile {
        display: inline-flex;
    }

    .sidebar-fly {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 200;
        width: min(288px, 92vw);
        max-height: 100vh;
        overflow-y: auto;
        padding-top: 3.5rem;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
    }

    body.nav-open .sidebar-fly {
        transform: translateX(0);
    }

    body.nav-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 199;
    }

    /* Mobile : panneaux empilés (pas de survol) */
    .sidebar-fly__panel {
        position: static;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        max-height: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--orange);
        margin: 0.25rem 0 0.5rem 0.5rem;
        padding-left: 0.25rem;
    }

    .sidebar-fly__panel--l3 {
        margin-left: 0.5rem;
    }

    .header-util {
        display: none;
    }

    .header-actions {
        flex-basis: 100%;
    }

    .header-search {
        max-width: none;
    }

    .category-layout {
        flex-direction: column;
    }

    .breadcrumbs {
        margin-bottom: 2vw;
    }

    .filters-sidebar {
        width: 100%;
    }
}

/* ——— Blog ——— */
.page-blog .site-main,
.page-blog-post .site-main {
    padding-top: 1.25rem;
}

.blog-page-header {
    margin-bottom: 2rem;
}

.blog-page-header .breadcrumbs {
    margin-bottom: 1.25rem;
}

.blog-page-header .breadcrumbs a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-page-header .breadcrumbs a:hover {
    color: var(--orange);
}

.blog-page-header__inner {
    background: linear-gradient(145deg, var(--white) 0%, #eef6f0 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem 2rem;
    box-shadow: 0 8px 32px rgba(13, 43, 69, 0.08);
}

.blog-page-header__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
}

.blog-page-header__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
}

.blog-page-header__lead {
    margin: 0;
    max-width: 52ch;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--grey-text);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 720px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(13, 43, 69, 0.07);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
    box-shadow: 0 12px 36px rgba(13, 43, 69, 0.12);
    transform: translateY(-3px);
}

.blog-card__link {
    display: block;
    color: inherit;
    height: 100%;
}

.blog-card__link:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

.blog-card__visual {
    position: relative;
    height: 0;
    padding-bottom: 52%;
    overflow: hidden;
    background: var(--navy-deep);
}

.blog-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__img {
    transform: scale(1.05);
}

.blog-card__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, rgba(13, 43, 69, 0.5) 0%, transparent 55%);
}

/* Teinte du voile en héro article (par thème) */
.blog-hero--snes .blog-article__hero-scrim {
    background: linear-gradient(to top, rgba(10, 35, 64, 0.93) 0%, rgba(13, 43, 69, 0.5) 50%, rgba(39, 188, 46, 0.15) 100%);
}

.blog-hero--retro .blog-article__hero-scrim {
    background: linear-gradient(to top, rgba(45, 27, 78, 0.92) 0%, rgba(13, 43, 69, 0.45) 55%, rgba(39, 188, 46, 0.12) 100%);
}

.blog-hero--clean .blog-article__hero-scrim {
    background: linear-gradient(to top, rgba(10, 61, 61, 0.9) 0%, rgba(13, 43, 69, 0.4) 50%, rgba(125, 211, 192, 0.22) 100%);
}

.blog-hero--jrpg .blog-article__hero-scrim {
    background: linear-gradient(to top, rgba(74, 25, 66, 0.92) 0%, rgba(13, 43, 69, 0.5) 50%, rgba(201, 162, 39, 0.18) 100%);
}

.blog-hero--deals .blog-article__hero-scrim {
    background: linear-gradient(to top, rgba(26, 58, 82, 0.92) 0%, rgba(13, 43, 69, 0.45) 45%, rgba(244, 208, 63, 0.2) 100%);
}

.blog-hero--pad .blog-article__hero-scrim {
    background: linear-gradient(to top, rgba(28, 40, 51, 0.93) 0%, rgba(13, 43, 69, 0.5) 50%, rgba(231, 76, 60, 0.15) 100%);
}

.blog-card__body {
    padding: 1.15rem 1.25rem 1.35rem;
}

.blog-card__cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.45rem;
}

.blog-card__title {
    margin: 0 0 0.55rem;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--navy);
}

.blog-card__excerpt {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--grey-text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__meta {
    font-size: 0.8rem;
    color: var(--grey-text);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.blog-card__dot {
    opacity: 0.6;
}

/* Article single */
.blog-article .breadcrumbs {
    margin-bottom: 1.25rem;
}

.blog-article .breadcrumbs a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-article .breadcrumbs a:hover {
    color: var(--orange);
}

.blog-article__hero {
    border-radius: var(--radius) var(--radius) 0 0;
    margin-bottom: 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(13, 43, 69, 0.2);
    min-height: min(42vw, 320px);
}

@media (min-width: 900px) {
    .blog-article__hero {
        min-height: 280px;
    }
}

.blog-article__hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blog-article__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-article__hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, rgba(13, 43, 69, 0.92) 0%, rgba(13, 43, 69, 0.45) 50%, rgba(13, 43, 69, 0.2) 100%);
}

.blog-article__hero.blog-hero--jrpg .blog-article__hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 90% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.blog-article__hero-inner {
    position: relative;
    z-index: 2;
    max-width: 48rem;
    padding: 2rem 1.5rem 2.25rem;
}

@media (min-width: 768px) {
    .blog-article__hero-inner {
        padding: 2.25rem 2.5rem 2.5rem;
    }
}

.blog-article__cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.65rem;
    padding: 0.25rem 0.65rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-pill);
}

.blog-article__title {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 4.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.blog-article__meta {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}

.blog-article__meta-sep {
    opacity: 0.7;
}

.blog-article__content {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 2rem 1.5rem 2.25rem;
    margin-top: -1px;
    box-shadow: 0 8px 28px rgba(13, 43, 69, 0.06);
}

@media (min-width: 768px) {
    .blog-article__content {
        padding: 2.25rem 2.5rem 2.5rem;
    }
}

.blog-prose {
    max-width: 42rem;
}

.blog-prose__p {
    margin: 0 0 1.1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
}

.blog-prose__h2 {
    margin: 1.75rem 0 0.85rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.blog-prose__h2:first-child {
    margin-top: 0;
}

.blog-prose__h3 {
    margin: 1.35rem 0 0.65rem;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--navy);
}

.blog-prose__quote {
    margin: 1.5rem 0;
    padding: 1rem 1.15rem 1rem 1.25rem;
    border-left: 4px solid var(--orange);
    background: var(--grey-bg);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.blog-prose__quote p {
    margin: 0;
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--navy);
}

.blog-prose__ul {
    margin: 0 0 1.15rem;
    padding-left: 1.35rem;
    line-height: 1.65;
    color: var(--text);
}

.blog-prose__ul li {
    margin-bottom: 0.45rem;
}

.blog-article__footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.blog-article__back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-pill);
    border: 2px solid var(--navy);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-article__back:hover {
    background: var(--navy);
    color: var(--white);
}

.blog-article__back svg {
    flex-shrink: 0;
}

/* ——— Rachat de jeux ——— */
.page-rachat .site-main {
    padding-top: 1rem;
}

.rachat-hero {
    position: relative;
    margin: 0 0 2rem;
    padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2.5rem);
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #153a5c 42%, var(--navy-deep) 100%);
    box-shadow:
        0 12px 40px rgba(13, 43, 69, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.12);
}

.rachat-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.rachat-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 46rem;
}

.rachat-hero__badge {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.rachat-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 4vw, 2.15rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.02em;
}

.rachat-hero__lead {
    margin: 0 0 1.5rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.rachat-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

@media (min-width: 520px) {
    .rachat-hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem 1.5rem;
    }
}

.rachat-hero__secondary {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.rachat-hero__secondary:hover {
    color: var(--white);
}

.rachat-layout {
    align-items: start;
}

.rachat-main {
    min-width: 0;
}

.rachat-block {
    margin: 0 0 2.25rem;
}

.rachat-block__title {
    margin: 0 0 1.15rem;
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.rachat-block--tips {
    padding: 1.35rem 1.25rem 1.45rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow:
        0 4px 24px rgba(13, 43, 69, 0.06),
        0 1px 3px rgba(13, 43, 69, 0.04);
}

.rachat-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rachat-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem 1.15rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--border);
}

.rachat-step:first-child {
    padding-top: 0;
}

.rachat-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rachat-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(145deg, rgba(39, 188, 46, 0.18), rgba(39, 188, 46, 0.08));
    border: 2px solid rgba(39, 188, 46, 0.45);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
}

.rachat-step__h {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
}

.rachat-step__p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--grey-text);
}

.rachat-buy-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .rachat-buy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.15rem;
    }
}

.rachat-buy-card {
    height: 100%;
}

.rachat-tips {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.65;
    color: var(--text);
}

.rachat-tips li {
    margin-bottom: 0.65rem;
}

.rachat-tips li:last-child {
    margin-bottom: 0;
}

.rachat-cta__email {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    word-break: break-word;
}

.rachat-cta__email a {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: rgba(39, 188, 46, 0.5);
}

.rachat-cta__email a:hover {
    color: var(--orange-hover);
}

.rachat-cta__text {
    margin: 0 0 1.15rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--grey-text);
}

.rachat-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    text-align: center;
}

.rachat-cta__btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

@media (min-width: 900px) {
    .rachat-cta__btn {
        width: auto;
    }
}

.rachat-cta__alt {
    margin: 1rem 0 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--grey-text);
}

.rachat-cta__alt a {
    font-weight: 700;
    color: var(--navy);
    text-decoration: underline;
}

.rachat-aside-note__list {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--grey-text);
}

.rachat-aside-note__list li {
    margin-bottom: 0.55rem;
}

.rachat-aside-note__list li:last-child {
    margin-bottom: 0;
}

/* ——— À propos ——— */
.page-about .site-main {
    padding-top: 1rem;
}

.about-hero {
    position: relative;
    margin: 0 0 1.75rem;
    padding: clamp(1.75rem, 4vw, 2.85rem) clamp(1.25rem, 3vw, 2.5rem);
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(145deg, #0d2844 0%, #153a5c 38%, #0f5c3a 112%);
    box-shadow:
        0 12px 40px rgba(13, 43, 69, 0.22),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-hero__glow {
    position: absolute;
    top: -40%;
    right: -15%;
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(39, 188, 46, 0.22) 0%, transparent 68%);
    pointer-events: none;
}

.about-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 48rem;
}

.about-hero__badge {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.about-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(1.55rem, 3.8vw, 2.1rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--white);
    letter-spacing: -0.02em;
}

.about-hero__lead {
    margin: 0 0 1.5rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.about-hero__lead strong {
    font-weight: 800;
    color: #c8f5cc;
}

.about-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

@media (min-width: 520px) {
    .about-hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem 1.5rem;
    }
}

.about-hero__secondary {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.about-hero__secondary:hover {
    color: var(--white);
}

.about-stats {
    margin: 0 0 2rem;
}

.about-stats__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

@media (min-width: 560px) {
    .about-stats__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.about-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.15rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(13, 43, 69, 0.05);
}

.about-stats__value {
    font-size: clamp(1.65rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--navy) 0%, #1a6b4a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-stats__label {
    margin-top: 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--grey-text);
    line-height: 1.35;
    max-width: 12rem;
}

.about-page-layout {
    align-items: start;
}

.about-main {
    min-width: 0;
}

.about-block {
    margin: 0 0 2.25rem;
}

.about-block__title {
    margin: 0 0 1rem;
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.about-block__prose {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--grey-text);
}

.about-block__prose p {
    margin: 0 0 1rem;
}

.about-block__prose p:last-child {
    margin-bottom: 0;
}

.about-block__prose a {
    font-weight: 700;
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.about-block__prose a:hover {
    color: #1a6b4a;
}

.about-block__prose strong {
    color: var(--text);
    font-weight: 700;
}

.about-block--accent {
    padding: 1.35rem 1.25rem 1.45rem;
    background: linear-gradient(180deg, rgba(39, 188, 46, 0.07) 0%, var(--white) 48%);
    border: 1px solid rgba(39, 188, 46, 0.22);
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(13, 43, 69, 0.05);
}

.about-values {
    margin: 0 0 2.25rem;
}

.about-values__grid {
    margin-top: 0.25rem;
}

@media (min-width: 900px) {
    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-aside__card .about-aside__h {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
}

.about-aside__p {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--grey-text);
}

.about-aside__btn {
    width: 100%;
    text-align: center;
    margin-bottom: 0.85rem;
}

.about-aside__meta {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    word-break: break-word;
}

.about-aside__meta a {
    font-weight: 700;
    color: var(--navy);
}

.about-aside__phone {
    color: var(--grey-text);
}

.about-aside__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.about-aside__link {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.about-aside__link:hover {
    color: #1a6b4a;
}

/* ——— Livraison & Garantie (pages service) ——— */
.service-block {
    margin: 0 0 2.25rem;
}

.service-block__title {
    margin: 0 0 1rem;
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.service-block__prose {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--grey-text);
}

.service-block__prose p {
    margin: 0 0 1rem;
}

.service-block__prose p:last-child {
    margin-bottom: 0;
}

.service-block__prose a {
    font-weight: 700;
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.service-block__prose a:hover {
    color: #1a6b4a;
}

.service-block__prose strong {
    color: var(--text);
    font-weight: 700;
}

.service-block--accent {
    padding: 1.35rem 1.25rem 1.45rem;
    background: linear-gradient(180deg, rgba(39, 188, 46, 0.07) 0%, var(--white) 48%);
    border: 1px solid rgba(39, 188, 46, 0.22);
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(13, 43, 69, 0.05);
}

/* Livraison */
.page-livraison .site-main {
    padding-top: 1rem;
}

.livraison-hero {
    position: relative;
    margin: 0 0 1.75rem;
    padding: clamp(1.65rem, 3.8vw, 2.65rem) clamp(1.25rem, 3vw, 2.5rem);
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(145deg, #0d2844 0%, #1a4a6e 45%, #0d3d52 100%);
    box-shadow:
        0 12px 40px rgba(13, 43, 69, 0.22),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.livraison-hero__glow {
    position: absolute;
    bottom: -35%;
    left: -10%;
    width: 50%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(39, 188, 46, 0.2) 0%, transparent 65%);
    pointer-events: none;
}

.livraison-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.11;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.livraison-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 46rem;
}

.livraison-hero__badge {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.livraison-hero__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.55rem, 3.6vw, 2.05rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.02em;
}

.livraison-hero__lead {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.livraison-highlights {
    margin: 0 0 2rem;
}

.livraison-highlights__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .livraison-highlights__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.livraison-highlights__item {
    padding: 1.15rem 1.1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(13, 43, 69, 0.05);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    .livraison-highlights__item {
        transition: none;
    }
}

.livraison-highlights__item:hover {
    box-shadow: 0 8px 28px rgba(13, 43, 69, 0.08);
    border-color: rgba(39, 188, 46, 0.35);
}

.livraison-highlights__icon {
    display: flex;
    color: var(--orange);
    margin-bottom: 0.65rem;
}

.livraison-highlights__title {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
}

.livraison-highlights__text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--grey-text);
}

.livraison-layout {
    align-items: start;
}

.livraison-main {
    min-width: 0;
}

.livraison-aside__card .livraison-aside__h {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
}

.livraison-aside__p {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--grey-text);
}

.livraison-aside__btn {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}

.livraison-aside__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.livraison-aside__link {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.livraison-aside__link:hover {
    color: #1a6b4a;
}

/* Garantie */
.page-garantie .site-main {
    padding-top: 1rem;
}

.garantie-hero {
    position: relative;
    margin: 0 0 1.75rem;
    padding: clamp(1.65rem, 3.8vw, 2.65rem) clamp(1.25rem, 3vw, 2.5rem);
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(145deg, #152a44 0%, #1e3d5c 40%, #243352 100%);
    box-shadow:
        0 12px 40px rgba(13, 43, 69, 0.22),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.garantie-hero__glow {
    position: absolute;
    top: -30%;
    right: -5%;
    width: 45%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(100, 149, 237, 0.22) 0%, transparent 68%);
    pointer-events: none;
}

.garantie-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.garantie-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 48rem;
}

.garantie-hero__badge {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.garantie-hero__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.55rem, 3.6vw, 2.05rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.02em;
}

.garantie-hero__lead {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.garantie-hero__lead .garantie-hero__inline {
    font-weight: 700;
    color: #b8d4ff;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.garantie-hero__lead .garantie-hero__inline:hover {
    color: var(--white);
}

.garantie-highlights {
    margin: 0 0 2rem;
}

.garantie-highlights__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .garantie-highlights__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.garantie-highlights__item {
    padding: 1.15rem 1.1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(13, 43, 69, 0.05);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    .garantie-highlights__item {
        transition: none;
    }
}

.garantie-highlights__item:hover {
    box-shadow: 0 8px 28px rgba(13, 43, 69, 0.08);
    border-color: rgba(100, 149, 237, 0.35);
}

.garantie-highlights__icon {
    display: flex;
    color: var(--orange);
    margin-bottom: 0.65rem;
}

.garantie-highlights__title {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
}

.garantie-highlights__text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--grey-text);
}

.garantie-layout {
    align-items: start;
}

.garantie-main {
    min-width: 0;
}

.garantie-aside__card .garantie-aside__h {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
}

.garantie-aside__p {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--grey-text);
}

.garantie-aside__btn {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}

.garantie-aside__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.garantie-aside__link {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.garantie-aside__link:hover {
    color: #1a6b4a;
}
