/* Monde d'Aventure — boutique jeux rétro (FR) */
:root {
    --bg: #0c0f18;
    --bg-elevated: #141a28;
    --surface: #1a2235;
    --border: #2a354d;
    --text: #e8edf7;
    --muted: #94a3b8;
    --accent: #00e5c8;
    --accent-dim: #00b89c;
    --magenta: #ff3cac;
    --magenta-dim: #d63384;
    --warning: #fbbf24;
    --radius: 12px;
    --font: "DM Sans", system-ui, sans-serif;
    --font-display: "Orbitron", sans-serif;
    --shadow: 0 14px 36px rgba(0, 0, 0, 0.38);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    background-image:
        radial-gradient(ellipse 120% 80% at 10% -10%, rgba(255, 60, 172, 0.12), transparent 50%),
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(0, 229, 200, 0.08), transparent 45%),
        repeating-linear-gradient(
            -12deg,
            transparent 0,
            transparent 3px,
            rgba(255, 255, 255, 0.012) 3px,
            rgba(255, 255, 255, 0.012) 4px
        );
    color: var(--text);
    line-height: 1.55;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    touch-action: manipulation;
}

body.drawer-open,
body.modal-open {
    overflow: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    background: var(--surface);
    z-index: 100000;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12, 15, 24, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 229, 200, 0.35) 25%,
        rgba(255, 60, 172, 0.4) 75%,
        transparent 100%
    );
    pointer-events: none;
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
}

.site-logo:hover {
    text-decoration: none;
    color: var(--accent);
}

.site-logo__img {
    width: auto;
    height: 42px;
    max-height: 48px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.site-nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.15rem 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.site-nav__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-nav__row {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    min-height: 2.5rem;
}

.site-nav__link--primary {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.site-nav__link--primary:hover {
    color: var(--text);
    text-decoration: none;
    background: rgba(0, 229, 200, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 229, 200, 0.2);
}

.site-nav__label.site-nav__link--primary {
    cursor: default;
}

@media (min-width: 901px) {
    .site-nav__item--has-sub:hover .site-nav__label.site-nav__link--primary,
    .site-nav__item--has-sub:focus-within .site-nav__label.site-nav__link--primary {
        color: var(--text);
        background: rgba(0, 229, 200, 0.08);
        box-shadow: 0 0 0 1px rgba(0, 229, 200, 0.2);
    }
}

.site-nav__item--has-sub > .site-nav__row .site-nav__link--primary {
    padding-right: 0.35rem;
}

.site-nav__subtoggle {
    display: none;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    margin: 0;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--muted);
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.site-nav__subtoggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 45%;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.25s ease;
}

.site-nav__item.is-sub-open > .site-nav__row .site-nav__subtoggle::after {
    transform: translate(-50%, -20%) rotate(225deg);
}

.site-nav__subtoggle:hover,
.site-nav__subtoggle:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
    outline: none;
}

.site-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0.35rem);
    min-width: 220px;
    padding: 0.5rem 0;
    margin: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow), 0 0 0 1px rgba(0, 229, 200, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 120;
}

.site-nav__item--has-sub:hover > .site-nav__dropdown,
.site-nav__item--has-sub:focus-within > .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-nav__sub {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__sub a {
    display: block;
    padding: 0.55rem 1rem 0.55rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.site-nav__sub a:hover {
    color: var(--text);
    background: rgba(0, 229, 200, 0.06);
    border-left-color: var(--accent);
    text-decoration: none;
}

.site-nav__sub li:first-child a {
    border-radius: 0;
}

@media (min-width: 901px) {
    .site-nav__item--has-sub > .site-nav__row .site-nav__link--primary {
        position: relative;
        padding-right: 1.35rem;
    }

    .site-nav__item--has-sub > .site-nav__row .site-nav__link--primary::after {
        content: "";
        position: absolute;
        right: 0.45rem;
        top: 50%;
        width: 0.35rem;
        height: 0.35rem;
        border-right: 2px solid var(--muted);
        border-bottom: 2px solid var(--muted);
        transform: translateY(-65%) rotate(45deg);
        opacity: 0.75;
        transition: border-color 0.2s, transform 0.2s;
    }

    .site-nav__item--has-sub:hover > .site-nav__row .site-nav__link--primary::after,
    .site-nav__item--has-sub:focus-within > .site-nav__row .site-nav__link--primary::after {
        border-color: var(--accent);
        transform: translateY(-50%) rotate(45deg);
    }
}

.site-header__actions {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    cursor: pointer;
    position: relative;
}

.nav-toggle::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 14px;
    height: 2px;
    background: var(--text);
    box-shadow: 0 6px 0 var(--text), 0 12px 0 var(--text);
}

.icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    border-color: var(--accent);
}

.icon-svg {
    display: block;
    color: var(--accent);
}

#btn-wishlist .icon-svg {
    color: var(--magenta);
}

.badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--accent);
    color: #04120f;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.site-main {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
}

/* Hero */
.hero {
    margin-bottom: 2.5rem;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }
}

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero__lead {
    color: var(--muted);
    margin-bottom: 1.25rem;
    max-width: 38rem;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero__mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.hero__mosaic img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    font-family: inherit;
}

.btn:active {
    transform: scale(0.98);
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    color: #04120f;
    border-color: transparent;
}

.btn--primary:hover {
    filter: brightness(1.08);
    text-decoration: none;
}

.btn--outline {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    text-decoration: none;
}

.btn--ghost {
    background: rgba(255, 60, 172, 0.12);
    border-color: var(--magenta-dim);
    color: var(--magenta);
}

.btn--block {
    width: 100%;
}

.btn--small {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
}

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.btn--outline:focus-visible {
    outline-color: var(--accent);
}

a:focus-visible:not(.btn) {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

.site-nav__link--primary:focus-visible {
    outline-offset: 2px;
}

/* Product grid */
.section {
    margin-top: 2rem;
}

.section__head {
    margin-bottom: 1.5rem;
}

.section__head h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.section__head p {
    color: var(--muted);
    max-width: 42rem;
}

.section__more {
    margin-top: 2rem;
    text-align: center;
}

.section--alt {
    background: var(--bg-elevated);
    margin: 2rem -1.25rem 0;
    padding: 2rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.section--tight {
    margin-top: 1.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.2s ease;
}

.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    border-color: rgba(0, 229, 200, 0.35);
}

.product-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.product-card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}

.product-card__title {
    font-size: 1.05rem;
    line-height: 1.3;
}

.product-card__title a {
    color: var(--text);
    text-decoration: none;
}

.product-card__title a:hover {
    color: var(--accent);
}

.product-card__byline {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.product-card__excerpt {
    font-size: 0.88rem;
    color: var(--muted);
    flex: 1;
}

.price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.2rem;
}

.price--old {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 0.95rem;
    margin-right: 0.5rem;
}

.price--xl {
    font-size: 1.75rem;
}

.product-card__price-row {
    margin-top: auto;
}

.product-card__actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.product-card__actions .btn--wish {
    min-width: 44px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.product-card__actions .btn--cart {
    flex: 1;
}

/* Filters */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter-pill {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.9rem;
}

.filter-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    text-decoration: none;
}

.filter-pill.is-active {
    background: rgba(0, 229, 200, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

/* Page */
.page-head {
    margin-bottom: 2rem;
}

.page-head h1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 42rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.breadcrumb a {
    color: var(--muted);
}

/* Product page */
.product-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 800px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
}

.product-gallery__main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.product-gallery__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: none;
}

.thumb img {
    display: block;
    width: 72px;
    height: 54px;
    object-fit: cover;
}

.thumb.is-active {
    border-color: var(--accent);
}

.thumb:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.product-info h1 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin: 0.5rem 0 1rem;
}

.product-info__price {
    margin-bottom: 0.75rem;
}

.product-stock {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-stock--out {
    color: var(--warning);
}

.product-info__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-info__help {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

.product-info__help a {
    font-weight: 600;
}

.specs {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0.5rem 1rem;
    font-size: 0.9rem;
    padding: 1rem;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.specs dt {
    color: var(--muted);
}

.prose {
    max-width: 720px;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.prose p {
    margin-bottom: 1rem;
    color: var(--muted);
}

.prose--narrow {
    max-width: 640px;
}

.seo-note {
    font-size: 0.92rem;
    border-left: 3px solid var(--magenta);
    padding-left: 1rem;
}

/* Two col */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 800px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

.check-list {
    margin-top: 1rem;
    padding-left: 1.2rem;
    color: var(--muted);
}

.check-list li {
    margin-bottom: 0.5rem;
}

.promo-card {
    background: linear-gradient(145deg, rgba(255, 60, 172, 0.12), rgba(0, 229, 200, 0.08));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.promo-card h3 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

/* Promo nested page */
.page-head--promo .lead {
    max-width: 48rem;
}

.promo-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    margin: 2rem 0;
}

@media (max-width: 800px) {
    .promo-hero {
        grid-template-columns: 1fr;
    }
}

.promo-hero img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    aspect-ratio: 16/10;
    object-fit: cover;
}

.promo-hero__box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.promo-hero__box h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.steps {
    margin-left: 1.2rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.steps li {
    margin-bottom: 0.5rem;
}

.muted {
    color: var(--muted);
}

.small {
    font-size: 0.85rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.contact-card--wide {
    grid-column: 1 / -1;
}

.contact-card h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

/* Footer */
.site-footer {
    margin-top: auto;
    padding: 2.5rem 1.25rem 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.site-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
    font-size: 1.1rem;
    text-decoration: none;
}

.site-footer__logo:hover {
    color: var(--accent);
}

.site-footer__logo-img {
    width: auto;
    height: 40px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.site-footer__tagline {
    color: var(--muted);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.site-footer__meta {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.site-footer__note {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
    max-width: 22rem;
}

.site-footer__h {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.site-footer__links {
    list-style: none;
}

.site-footer__links li {
    margin-bottom: 0.4rem;
}

.site-footer__links a {
    color: var(--muted);
}

.site-footer__links a:hover {
    color: var(--accent);
}

.site-footer__payments {
    max-width: 1200px;
    margin: 2.25rem auto 0;
    text-align: center;
}

.site-footer__pay-lead {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 0.85rem;
}

.site-footer__pay.pay-methods {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    align-items: stretch;
}

.pay-methods__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.45rem 1rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pay-methods__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.pay-methods__logo {
    display: block;
    width: auto;
    object-fit: contain;
}

.pay-methods__logo--visa {
    height: 22px;
    max-width: 68px;
}

.pay-methods__logo--mastercard {
    height: 32px;
    max-width: 52px;
}

.pay-methods__logo--paypal {
    height: 20px;
    max-width: 86px;
}

.pay-methods__logo--cb {
    height: 34px;
    max-width: 54px;
}

.site-footer__copy {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.site-footer__copy a {
    color: var(--text);
}

/* Cookie */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20000;
    padding: 1rem;
    background: rgba(12, 15, 24, 0.95);
    border-top: 1px solid var(--border);
    transform: translateY(0);
    transition: opacity 0.25s, transform 0.25s;
}

.cookie-popup.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
}

.cookie-popup__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-popup p {
    flex: 1;
    min-width: 200px;
    font-size: 0.9rem;
    color: var(--muted);
}

.cookie-popup__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-popup__actions .btn--outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--text);
    background: transparent;
}

.cookie-popup__actions .btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Drawer */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 15000;
    pointer-events: none;
    visibility: hidden;
}

.drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.25s;
}

.drawer.is-open .drawer__backdrop {
    opacity: 1;
}

.drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100%;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    box-shadow: var(--shadow);
}

.drawer.is-open .drawer__panel {
    transform: translateX(0);
}

.drawer__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.drawer__head h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.drawer__close {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.cart-lines {
    flex: 1;
    overflow: auto;
    padding: 1rem;
}

.cart-empty {
    color: var(--muted);
    font-size: 0.95rem;
}

.cart-line {
    display: grid;
    grid-template-columns: 64px 1fr auto auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-line img {
    border-radius: 6px;
    width: 64px;
    height: 48px;
    object-fit: cover;
}

.cart-line__meta a {
    color: var(--text);
    font-weight: 600;
    font-size: 0.92rem;
}

.cart-line__controls {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
}

.qty {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font-size: 1rem;
}

.qty-val {
    min-width: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.cart-line__price {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9rem;
}

.cart-line__remove {
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
}

.drawer__foot {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
}

.cart-total {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 16000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s;
}

.modal.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.modal__box {
    position: relative;
    z-index: 1;
    width: min(480px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal__box h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.form-checkout .form-field {
    margin-bottom: 1rem;
}

.form-checkout label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.form-checkout input:not([type="checkbox"]),
.form-checkout textarea {
    width: 100%;
    margin-top: 0;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
}

.form-checkout input:focus:not([type="checkbox"]),
.form-checkout textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(0, 229, 200, 0.25);
}

.form-checkout input[aria-invalid="true"]:not([type="checkbox"]),
.form-checkout textarea[aria-invalid="true"] {
    border-color: #f87171;
}

.field-optional {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.85em;
}

.checkout-promo__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: stretch;
}

.checkout-promo__row input {
    flex: 1 1 140px;
    min-width: 0;
}

.checkout-promo__row .btn {
    flex: 0 0 auto;
    white-space: nowrap;
    align-self: center;
}

.checkout-summary {
    margin: 0 0 1rem;
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.checkout-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 0.92rem;
    padding: 0.2rem 0;
    color: var(--muted);
}

.checkout-summary__row strong {
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.checkout-summary__row--discount strong {
    color: #16a34a;
}

.checkout-summary__total {
    margin-top: 0.35rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.checkout-summary__total strong {
    font-size: 1.05rem;
}

.form-field--pay {
    border: none;
    padding: 0;
    margin: 0 0 1rem;
    min-width: 0;
}

.form-field--pay legend {
    display: block;
    width: 100%;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    color: var(--muted);
    padding: 0;
}

.form-field--pay .field-hint {
    margin-bottom: 0.65rem;
}

.checkout-pay-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.checkout-pay-choice {
    position: relative;
    display: block;
    cursor: pointer;
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 132px;
}

.checkout-pay-choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.checkout-pay-choice__face {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 72px;
    padding: 0.5rem 0.6rem;
    background: #fff;
    border-radius: 10px;
    border: 2px solid var(--border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-pay-choice:hover .checkout-pay-choice__face {
    border-color: rgba(0, 229, 200, 0.45);
}

.checkout-pay-choice input:checked + .checkout-pay-choice__face {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(0, 229, 200, 0.25);
}

.checkout-pay-choice input:focus-visible + .checkout-pay-choice__face {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.checkout-pay-choice input[aria-invalid="true"] + .checkout-pay-choice__face {
    border-color: #f87171;
}

.checkout-pay-choice__logo {
    display: block;
    width: auto;
    object-fit: contain;
}

.checkout-pay-choice__logo--visa {
    height: 20px;
    max-width: 64px;
}

.checkout-pay-choice__logo--mastercard {
    height: 28px;
    max-width: 48px;
}

.checkout-pay-choice__logo--paypal {
    height: 18px;
    max-width: 78px;
}

.checkout-pay-choice__logo--cb {
    height: 30px;
    max-width: 48px;
}

.checkout-pay-choice__name {
    font-size: 0.72rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    line-height: 1.2;
}

.field-error {
    display: block;
    min-height: 1.25rem;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: #f87171;
}

.field-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: var(--muted);
}

.form-alert {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #f87171;
    background: rgba(248, 113, 113, 0.12);
    color: #fecaca;
    font-size: 0.9rem;
}

.form-alert[hidden] {
    display: none !important;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.modal__box--thanks {
    text-align: center;
}

.thanks-order-ref {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.thanks-order-ref strong {
    font-family: var(--font-display);
    letter-spacing: 0.04em;
}

.modal--thanks .modal__box {
    padding: 2rem 1.5rem;
}

.thanks-ico {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--magenta));
    opacity: 0.9;
}

.thanks-contact {
    margin: 1rem 0;
    color: var(--muted);
}

/* Mobile nav */
@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0 1rem;
        order: 10;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .site-nav__item {
        border-bottom: 1px solid var(--border);
    }

    .site-nav__item:last-child {
        border-bottom: none;
    }

    .site-nav__row {
        justify-content: space-between;
        min-height: 3rem;
    }

    .site-nav__link--primary {
        flex: 1;
        padding: 0.65rem 0.5rem;
    }

    .site-nav__subtoggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav__item--has-sub > .site-nav__row .site-nav__link--primary::after {
        display: none;
    }

    .site-nav__dropdown {
        position: static;
        left: auto;
        transform: none;
        min-width: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.2s ease, visibility 0.2s;
    }

    .site-nav__item--has-sub:hover > .site-nav__dropdown,
    .site-nav__item--has-sub:focus-within > .site-nav__dropdown {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
    }

    .site-nav__item--has-sub.is-sub-open > .site-nav__dropdown {
        max-height: 320px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 0.35rem 0 0.65rem;
    }

    .site-nav__sub a {
        padding-left: 1.5rem;
        font-size: 0.92rem;
    }

    .site-header__inner {
        flex-wrap: wrap;
    }

    .site-logo {
        flex: 1;
    }
}

/* ——— Page d’accueil : blocs enrichis ——— */

.home-strip {
    margin: 0 -1.25rem 2rem;
    overflow: hidden;
    border-block: 1px solid var(--border);
    background: var(--bg-elevated);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.home-strip__track {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    width: max-content;
    animation: home-strip-scroll 45s linear infinite;
}

.home-strip__track img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
    .home-strip__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0.75rem 1.25rem;
    }
}

@keyframes home-strip-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Bloc cadeau nouveaux utilisateurs (accueil) */
.home-gift-welcome {
    margin: 0 0 2rem;
    padding: 3px;
    border-radius: calc(var(--radius) + 4px);
    background: linear-gradient(125deg, #ff3cac 0%, #ff8c42 35%, #fbbf24 65%, #00e5c8 100%);
    background-size: 200% 200%;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 12px 40px rgba(255, 60, 172, 0.28),
        0 8px 32px rgba(0, 229, 200, 0.18);
    animation: home-gift-welcome-bg 10s ease infinite;
}

@keyframes home-gift-welcome-bg {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-gift-welcome {
        animation: none;
        background-size: 100% 100%;
    }
}

.home-gift-welcome__inner {
    background: rgba(10, 14, 22, 0.94);
    border-radius: var(--radius);
    padding: 1.35rem 1.35rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-gift-welcome__title {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 3vw, 1.45rem);
    line-height: 1.25;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.home-gift-welcome__lead {
    color: var(--muted);
    margin-bottom: 1rem;
    max-width: 44rem;
    font-size: 0.98rem;
    line-height: 1.6;
}

.home-gift-welcome__lead strong {
    color: var(--text);
    font-weight: 600;
}

.home-gift-welcome__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.home-gift-welcome__code {
    flex: 1;
    min-width: 10rem;
    font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: rgba(0, 229, 200, 0.08);
    border: 2px dashed rgba(0, 229, 200, 0.45);
    border-radius: 10px;
    padding: 0.55rem 0.85rem;
}

.home-gift-welcome__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

@media (max-width: 520px) {
    .home-gift-welcome__row .btn--copy {
        width: 100%;
        justify-content: center;
    }
}

.home-universes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .home-universes__grid {
        grid-template-columns: 1fr;
    }
}

.home-universe-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-universe-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.home-universe-card__img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.home-universe-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-universe-card:hover .home-universe-card__img img {
    transform: scale(1.05);
}

.home-universe-card__body {
    padding: 1.1rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.home-universe-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text);
}

.home-universe-card__body p {
    font-size: 0.92rem;
    color: var(--muted);
    flex: 1;
}

.home-universe-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 0.25rem;
}

.home-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(120px, auto);
    gap: 0.65rem;
}

@media (max-width: 800px) {
    .home-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

.home-bento__cell {
    position: relative;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 140px;
}

.home-bento__cell--wide {
    grid-column: span 2;
    min-height: 180px;
}

@media (max-width: 800px) {
    .home-bento__cell--wide {
        grid-column: span 2;
    }
}

.home-bento__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    display: block;
}

.home-bento__cell--wide img {
    aspect-ratio: 21 / 9;
}

.home-bento__cell figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.5rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 600;
    background: linear-gradient(transparent, rgba(12, 15, 24, 0.92));
    color: var(--text);
}

.home-picks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 900px) {
    .home-picks__grid {
        grid-template-columns: 1fr;
    }
}

.home-pick {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.home-pick__media img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.home-pick__body {
    padding: 1.1rem 1.2rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.home-pick__body h3 {
    font-size: 1.05rem;
    font-family: var(--font-display);
}

.home-pick__body h3 a {
    color: var(--text);
    text-decoration: none;
}

.home-pick__body h3 a:hover {
    color: var(--accent);
}

.home-pick__body p {
    font-size: 0.9rem;
    color: var(--muted);
    flex: 1;
}

.home-pick__price {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--accent);
}

.home-steps__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    counter-reset: step;
}

@media (max-width: 1000px) {
    .home-steps__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .home-steps__list {
        grid-template-columns: 1fr;
    }
}

.home-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    position: relative;
    padding-top: 2.5rem;
}

.home-step__num {
    position: absolute;
    top: 0.75rem;
    left: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--magenta), var(--accent-dim));
    color: #04120f;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-step__img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
}

.home-step__img img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    display: block;
}

.home-step h3 {
    font-size: 0.95rem;
    font-family: var(--font-display);
    margin-bottom: 0.35rem;
}

.home-step p {
    font-size: 0.88rem;
    color: var(--muted);
}

.home-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 800px) {
    .home-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

.home-quote {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-quote:hover {
    border-color: rgba(0, 229, 200, 0.28);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

@media (prefers-reduced-motion: reduce) {
    .home-quote:hover {
        box-shadow: none;
    }
}

.home-quote p {
    font-size: 0.95rem;
    color: var(--muted);
    font-style: italic;
    flex: 1;
}

.home-quote footer {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.88rem;
}

.home-quote__loc {
    color: var(--muted);
    font-size: 0.85rem;
}

.home-quote__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.home-quote__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-card--visual img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.home-cta {
    position: relative;
    margin: 2rem -1.25rem 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 220px;
}

.home-cta__bg {
    position: absolute;
    inset: 0;
}

.home-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.home-cta__inner {
    position: relative;
    z-index: 1;
    padding: 2.5rem 1.5rem;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.home-cta__inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.home-cta__inner p {
    color: #cbd5e1;
    margin-bottom: 1.25rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.section--tight {
    margin-top: 1.5rem;
}

/* Page promotions (hub) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page-promo-nu-main .text-accent {
    color: var(--accent);
}

.promo-codes-section {
    margin-bottom: 2rem;
}

.promo-codes-section__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.promo-codes-section__intro {
    color: var(--muted);
    max-width: 52rem;
    margin-bottom: 1.25rem;
    font-size: 0.98rem;
}

.promo-codes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .promo-codes-grid {
        grid-template-columns: 1fr;
    }
}

.promo-code-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.promo-code-card:hover {
    border-color: rgba(0, 229, 200, 0.45);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.promo-code-card--highlight {
    background: linear-gradient(160deg, rgba(0, 229, 200, 0.08), rgba(255, 60, 172, 0.06));
    border-color: rgba(0, 229, 200, 0.35);
}

.promo-code-card__label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.promo-code-card__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.promo-code-card__value {
    flex: 1;
    min-width: 0;
    font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: var(--bg);
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.btn--copy {
    flex-shrink: 0;
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
}

.btn--copy.is-copied {
    border-color: var(--accent);
    color: var(--accent);
}

.promo-code-card__detail {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.45;
}

.promo-codes-footnote {
    margin-top: 1.25rem;
    max-width: 52rem;
    line-height: 1.5;
}

.promo-nu-cta {
    margin-top: 2rem;
    padding: 1.75rem 1.25rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.promo-nu-cta__inner {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
}

.promo-nu-cta__inner h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.promo-nu-cta__inner p {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* ——— Page À propos ——— */
.page-about .about-hero {
    margin: -0.5rem -1.25rem 2.5rem;
    padding: 0 1.25rem 0;
}

.about-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 900px) {
    .about-hero__grid {
        grid-template-columns: 1fr;
    }
}

.about-hero__visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.about-hero__visual img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.about-hero__badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    align-items: center;
    padding: 0.65rem 1rem;
    background: rgba(12, 15, 24, 0.88);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 200, 0.25);
    font-size: 0.85rem;
}

.about-hero__badge-k {
    font-family: var(--font-display);
    color: var(--accent);
    font-weight: 700;
}

.about-hero__badge-v {
    color: var(--muted);
}

.about-hero__copy h1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    margin-bottom: 0.75rem;
}

.about-hero__bullets {
    margin-top: 1.25rem;
    padding-left: 1.2rem;
    color: var(--muted);
}

.about-hero__bullets li {
    margin-bottom: 0.5rem;
}

.about-story__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 800px) {
    .about-story__layout {
        grid-template-columns: 1fr;
    }
}

.about-story__media {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-story__media img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.about-value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about-value-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.about-value-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-value-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    padding: 1rem 1.25rem 0.35rem;
    margin: 0;
}

.about-value-card p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-timeline__list {
    list-style: none;
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.about-timeline__list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--magenta));
    border-radius: 2px;
    opacity: 0.5;
}

.about-timeline__item {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 1rem;
    padding: 0 0 1.75rem 1.5rem;
    position: relative;
}

.about-timeline__item:last-child {
    padding-bottom: 0;
}

.about-timeline__year {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 700;
}

.about-timeline__body h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin: 0 0 0.35rem;
}

.about-timeline__body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}

.about-gallery__cell {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
}

.about-gallery__cell img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.about-gallery__cell figcaption {
    padding: 0.5rem 0.65rem;
    font-size: 0.78rem;
    color: var(--muted);
}

.about-quote-cta {
    display: grid;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 700px) {
    .about-quote-cta {
        grid-template-columns: 1.2fr 1fr;
    }
}

.about-quote {
    margin: 0;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, rgba(0, 229, 200, 0.08), rgba(255, 60, 172, 0.06));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.about-quote p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1rem;
}

.about-quote footer {
    font-size: 0.9rem;
    color: var(--muted);
}

.about-cta {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.about-cta p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* ——— Page Contact ——— */
.page-contact .contact-hero {
    position: relative;
    margin: -1.5rem -1.25rem 2rem;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    border-top: none;
}

.contact-hero__bg {
    position: absolute;
    inset: 0;
}

.contact-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.05);
}

.contact-hero__inner {
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem 2.25rem;
    max-width: 42rem;
}

.contact-hero__inner .eyebrow {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.contact-hero__inner h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.15rem);
    margin-bottom: 0.65rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.contact-hero__lead {
    color: #cbd5e1;
    font-size: 1.05rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.55;
}

.contact-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

@media (max-width: 800px) {
    .contact-intro__grid {
        grid-template-columns: 1fr;
    }
}

.contact-intro__visual img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    aspect-ratio: 5/4;
    object-fit: cover;
}

.contact-intro__caption {
    margin-top: 0.5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 340px);
    gap: 2rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

@media (max-width: 960px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-grid--rich {
    gap: 1.25rem;
}

.contact-card--accent {
    border-color: rgba(0, 229, 200, 0.25);
    background: linear-gradient(160deg, rgba(0, 229, 200, 0.06), var(--surface));
}

.contact-card__icon {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.contact-card--accent h2 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.contact-card--hours .contact-card__row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-hours {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    font-size: 0.9rem;
}

.contact-hours div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--border);
}

.contact-hours div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-hours dt {
    color: var(--muted);
    font-weight: 600;
}

.contact-hours dd {
    margin: 0;
    text-align: right;
    color: var(--text);
}

.contact-aside {
    position: sticky;
    top: 5.5rem;
}

.contact-aside__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-faq {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-faq__item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0;
}

.contact-faq__item summary {
    padding: 0.85rem 1rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.92rem;
    list-style: none;
}

.contact-faq__item summary::-webkit-details-marker {
    display: none;
}

.contact-faq__item summary::after {
    content: "+";
    float: right;
    color: var(--accent);
    font-weight: 700;
}

.contact-faq__item[open] summary::after {
    content: "−";
}

.contact-faq__item p {
    margin: 0;
    padding: 0 1rem 1rem;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.contact-tip {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.contact-tip img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-tip__title {
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.contact-cta {
    margin-top: 0;
    padding: 2rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(255, 60, 172, 0.08), rgba(0, 229, 200, 0.06));
    text-align: center;
}

.contact-cta__inner {
    max-width: 520px;
    margin: 0 auto;
}

.contact-cta__inner h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.contact-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
}

/* ——— Page Livraison ——— */
.page-shipping .shipping-hero {
    margin-bottom: 2rem;
}

.shipping-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

@media (max-width: 900px) {
    .shipping-hero__grid {
        grid-template-columns: 1fr;
    }
}

.shipping-hero__visual img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    aspect-ratio: 3/2;
    object-fit: cover;
}

.shipping-hero__bullets {
    margin-top: 1rem;
    padding-left: 1.2rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.shipping-hero__bullets li {
    margin-bottom: 0.4rem;
}

.shipping-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 900px) {
    .shipping-pillars__grid {
        grid-template-columns: 1fr;
    }
}

.shipping-pillar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    height: 100%;
}

.shipping-pillar__icon {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.shipping-pillar__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.shipping-pillar__text {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
}

.shipping-steps-wrap {
    margin-top: 2.5rem;
}

.shipping-steps__intro {
    margin-bottom: 1.5rem;
}

.shipping-steps__intro h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.shipping-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

@media (min-width: 700px) {
    .shipping-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shipping-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.15rem;
}

.shipping-step__num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 229, 200, 0.2), rgba(255, 60, 172, 0.15));
    border: 1px solid rgba(0, 229, 200, 0.35);
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 2rem;
    text-align: center;
}

.shipping-step__body h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.shipping-step__body p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

.shipping-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

@media (max-width: 800px) {
    .shipping-detail__grid {
        grid-template-columns: 1fr;
    }
}

.shipping-detail__media img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    aspect-ratio: 5/4;
    object-fit: cover;
}

.shipping-detail__prose h2 {
    margin-top: 0;
}

.shipping-faq__heading {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.shipping-faq__list {
    max-width: 640px;
}

.shipping-faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    margin-bottom: 0.5rem;
}

.shipping-faq__item summary {
    padding: 0.85rem 1rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
}

.shipping-faq__item summary::-webkit-details-marker {
    display: none;
}

.shipping-faq__item summary::after {
    content: "+";
    float: right;
    color: var(--accent);
    font-weight: 700;
}

.shipping-faq__item[open] summary::after {
    content: "−";
}

.shipping-faq__item p {
    margin: 0;
    padding: 0 1rem 1rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.shipping-faq__item p a {
    color: var(--accent);
}

.shipping-cta {
    margin-top: 2rem;
    padding: 2rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(0, 229, 200, 0.08), rgba(255, 60, 172, 0.06));
    text-align: center;
}

.shipping-cta__inner {
    max-width: 520px;
    margin: 0 auto;
}

.shipping-cta__inner h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.shipping-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
}

/* ——— Page Promotions (hub) ——— */
.promo-hub-hero {
    margin-bottom: 2rem;
}

.promo-hub-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 1.35rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(255, 60, 172, 0.1), rgba(0, 229, 200, 0.06));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    .promo-hub-hero__grid {
        grid-template-columns: 1fr;
    }
}

.promo-hub-hero__visual img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    aspect-ratio: 16/11;
    object-fit: cover;
}

.promo-hub-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 960px) {
    .promo-hub-cards__grid {
        grid-template-columns: 1fr;
    }
}

.promo-hub-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1.4rem 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.promo-hub-card:hover {
    border-color: rgba(0, 229, 200, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.promo-hub-card--shop {
    border-top: 3px solid var(--accent);
}

.promo-hub-card--code {
    border-top: 3px solid var(--warning);
}

.promo-hub-card--spark {
    border-top: 3px solid var(--magenta);
}

.promo-hub-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.promo-hub-card__text {
    flex: 1;
    margin: 0 0 1.15rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.55;
}

.promo-hub-card__link {
    align-self: flex-start;
    margin-top: auto;
}

.promo-hub-rules__inner {
    margin: 0 auto;
}

.promo-hub-rules__inner h2 {
    margin-top: 0;
}

.promo-hub-cta {
    margin-top: 2rem;
    padding: 2rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    text-align: center;
}

.promo-hub-cta__inner {
    max-width: 520px;
    margin: 0 auto;
}

.promo-hub-cta__inner h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.promo-hub-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
}
