:root {
    --violet: #7c3aed;
    --violet-dark: #5b21b6;
    --rose: #ec4899;
    --corail: #fb7185;
    --menthe: #86efac;
    --bleu: #60a5fa;
    --encre: #211725;
    --fond: #f8f5f8;
    --blanc: #ffffff;
    --noir: #120d17;
    --noir-doux: #1c1422;
    --prune: #2a1832;
    --or: #f4c76b;
    --texte-clair: #f9f5fb;
    --texte-muted: #b9aebf;
    --bordure-sombre: rgba(255, 255, 255, .1);
    --ombre: 0 20px 60px rgba(18, 13, 23, .16);
    --rayon: 22px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--encre);
    background: var(--fond);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--or);
    outline-offset: 3px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Boutons */
.button,
.small-button,
.cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 20px;
    color: var(--blanc);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.button:hover,
.small-button:hover,
.cart-button:hover {
    transform: translateY(-2px);
}

.button-primary,
.small-button {
    color: #fff;
    background: linear-gradient(135deg, var(--violet), var(--rose));
    box-shadow: 0 12px 28px rgba(124, 58, 237, .3);
}

.button-primary:hover,
.small-button:hover {
    box-shadow: 0 16px 34px rgba(124, 58, 237, .42);
}

.button-secondary {
    color: var(--encre);
    background: #eee8f1;
}

.button-ghost {
    color: var(--texte-clair);
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .24);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .42);
}

.button-light {
    color: var(--noir);
    background: #fff;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .2);
}

.button-large {
    min-height: 54px;
    padding: 15px 25px;
}

/* Vérification d’âge */
.age-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(8, 5, 10, .94);
    backdrop-filter: blur(12px);
}

.age-modal[hidden],
.age-modal.is-hidden {
    display: none;
}

.age-box {
    position: relative;
    width: min(100%, 510px);
    overflow: hidden;
    padding: 42px;
    color: var(--texte-clair);
    text-align: center;
    background:
        radial-gradient(circle at 15% 0%, rgba(236, 72, 153, .26), transparent 38%),
        radial-gradient(circle at 100% 100%, rgba(124, 58, 237, .28), transparent 42%),
        var(--noir-doux);
    border: 1px solid var(--bordure-sombre);
    border-radius: 30px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.age-kicker,
.home-kicker {
    margin: 0 0 12px;
    color: var(--or);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.age-mark {
    display: grid;
    width: 82px;
    height: 82px;
    margin: 4px auto 22px;
    place-items: center;
    color: #fff;
    font-size: 1.55rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rose), var(--violet));
    border-radius: 50%;
    box-shadow: 0 0 0 9px rgba(255, 255, 255, .05);
}

.age-box h1 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 7vw, 3.2rem);
    line-height: 1;
}

.age-box p {
    max-width: 390px;
    margin: 0 auto;
    color: var(--texte-muted);
    line-height: 1.65;
}

.age-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
    margin-top: 28px;
}

/* En-tête */
.topbar {
    padding: 9px 5%;
    color: #dcd3e0;
    font-size: .78rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: .025em;
    background: #09060c;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    min-height: 76px;
    padding: 13px max(5%, 22px);
    color: var(--texte-clair);
    background: rgba(18, 13, 23, .94);
    border-bottom: 1px solid var(--bordure-sombre);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .16);
    backdrop-filter: blur(15px);
}

.brand {
    display: inline-flex;
    flex-direction: column;
    justify-self: start;
    min-width: 0;
    line-height: 1;
}

.brand-name {
    display: block;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.1vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -.025em;
}

.brand-slogan {
    display: block;
    margin-top: 6px;
    color: var(--or);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 2vw, 28px);
    min-width: 0;
}

.main-nav > a:not(.cart-button-mobile) {
    position: relative;
    padding: 10px 0;
    color: #d8cfdc;
    font-size: .9rem;
    font-weight: 750;
}

.main-nav > a:not(.cart-button-mobile)::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--rose), var(--violet));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.main-nav > a:hover,
.main-nav > a.is-current {
    color: #fff;
}

.main-nav > a:hover::after,
.main-nav > a.is-current::after {
    transform: scaleX(1);
}

.cart-button {
    min-height: 44px;
    padding: 11px 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--violet), var(--rose));
    box-shadow: 0 9px 22px rgba(124, 58, 237, .25);
    white-space: nowrap;
}

.cart-button-mobile,
.menu-toggle {
    display: none;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 13px;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    display: block;
    width: 21px;
    height: 2px;
    background: currentColor;
    border-radius: 4px;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) { transform: translateY(-7px); }
.menu-toggle span:nth-child(3) { transform: translateY(7px); }
.menu-toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }

/* Accueil */
.home-page {
    color: var(--texte-clair);
    background: var(--noir);
}

.home-page main {
    overflow: hidden;
}

.home-hero {
    position: relative;
    isolation: isolate;
    min-height: min(790px, calc(100vh - 108px));
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(18, 13, 23, .98) 0%, rgba(18, 13, 23, .92) 48%, rgba(18, 13, 23, .62) 100%),
        radial-gradient(circle at 80% 20%, #4a173e 0%, transparent 42%),
        var(--noir);
}

.home-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(244, 199, 107, .55), transparent);
}

.home-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    align-items: center;
    gap: clamp(45px, 7vw, 110px);
    width: min(1380px, 100%);
    margin: 0 auto;
    padding: 80px max(5%, 24px) 95px;
}

.home-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.home-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 7vw, 7.2rem);
    font-weight: 600;
    line-height: .92;
    letter-spacing: -.055em;
}

.home-hero-copy h1 em {
    color: transparent;
    font-weight: 500;
    font-style: italic;
    background: linear-gradient(100deg, var(--or), #f8a4c8 55%, #bba1ff);
    -webkit-background-clip: text;
    background-clip: text;
}

.home-hero-text {
    max-width: 620px;
    margin: 28px 0 0;
    color: #c8becd;
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    line-height: 1.75;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.home-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    padding: 0;
    margin: 30px 0 0;
    color: #a99dad;
    font-size: .82rem;
    font-weight: 750;
    list-style: none;
}

.home-hero-trust li::before {
    margin-right: 8px;
    color: var(--or);
    content: "✓";
}

.home-hero-visual {
    position: relative;
    min-height: 560px;
}

.home-hero-card {
    position: absolute;
    overflow: hidden;
    background: #211725;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.home-hero-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-card--main {
    top: 0;
    right: 3%;
    width: min(90%, 500px);
    aspect-ratio: 1 / 1;
    border-radius: 44% 44% 18px 18px;
    transform: rotate(2deg);
}

.home-hero-card--small {
    bottom: 5px;
    left: -2%;
    width: 190px;
    aspect-ratio: 1 / 1;
    border: 5px solid var(--noir);
    border-radius: 24px;
    transform: rotate(-6deg);
}

.home-hero-badge {
    position: absolute;
    right: -15px;
    bottom: 45px;
    z-index: 3;
    display: grid;
    width: 132px;
    height: 132px;
    padding: 19px;
    place-items: center;
    color: var(--noir);
    font-size: .78rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: var(--or);
    border-radius: 50%;
    transform: rotate(8deg);
}

.home-hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .22;
}

.home-hero-glow--one {
    top: 12%;
    right: 28%;
    width: 280px;
    height: 280px;
    background: var(--rose);
}

.home-hero-glow--two {
    bottom: 6%;
    left: 15%;
    width: 240px;
    height: 240px;
    background: var(--violet);
}

.home-section {
    width: min(1380px, 100%);
    margin: 0 auto;
    padding: 105px max(5%, 24px);
}

.home-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 38px;
}

.home-section-heading h2,
.home-manifesto h2,
.home-commitments h2,
.home-final-cta h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.04em;
}

.home-text-link {
    flex: 0 0 auto;
    padding-bottom: 6px;
    color: #fff;
    font-size: .9rem;
    font-weight: 850;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.home-text-link:hover {
    color: var(--or);
    border-color: var(--or);
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px;
}

.home-category-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--noir-doux);
    border: 1px solid var(--bordure-sombre);
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
}

.home-category-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 45%, rgba(8, 5, 10, .18) 62%, rgba(8, 5, 10, .92) 100%);
    transition: background .25s ease;
}

.home-category-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .35s ease;
}

.home-category-card:hover img {
    transform: scale(1.055);
    filter: saturate(1.08);
}

.home-category-card:hover::after {
    background: linear-gradient(180deg, transparent 38%, rgba(8, 5, 10, .2) 58%, rgba(8, 5, 10, .96) 100%);
}

.home-category-action {
    position: absolute;
    right: 16px;
    bottom: 15px;
    left: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.home-category-overlay-title {
    position: absolute;
    top: 14px;
    right: 10px;
    left: 10px;
    z-index: 2;
    color: #fff;
    font-size: clamp(.78rem, 1.15vw, 1rem);
    font-weight: 900;
    text-align: center;
    text-shadow: 0 2px 7px #000;
}

.home-manifesto {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(30px, 6vw, 90px);
    width: min(1380px, calc(100% - 48px));
    margin: 10px auto 0;
    padding: clamp(45px, 7vw, 85px);
    color: var(--noir);
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, .5), transparent 25%),
        linear-gradient(135deg, #f1c165, #ea89ac 60%, #a989e7);
    border-radius: 30px;
    box-shadow: 0 30px 75px rgba(0, 0, 0, .26);
}

.home-manifesto-number {
    align-self: start;
    color: rgba(18, 13, 23, .42);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.4rem;
    font-style: italic;
}

.home-manifesto .home-kicker {
    color: #3f2032;
}

.home-manifesto-copy p:last-child {
    max-width: 760px;
    margin: 24px 0 0;
    color: #3f293e;
    font-size: 1.02rem;
    line-height: 1.75;
}

.home-new {
    padding-bottom: 120px;
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-product-card {
    overflow: hidden;
    color: var(--encre);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .23);
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .34);
}

.home-product-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    padding: 12px;
    background: linear-gradient(145deg, #fff, #f4eff6);
}

.home-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.home-product-card:hover .home-product-image img {
    transform: scale(1.035);
}

.home-product-new {
    position: absolute;
    top: 13px;
    left: 13px;
    padding: 6px 9px;
    color: #fff;
    font-size: .66rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: var(--noir);
    border-radius: 999px;
}

.home-product-content {
    padding: 17px 18px 19px;
}

.home-product-category {
    margin: 0 0 7px;
    color: var(--rose);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.home-product-content h3 {
    min-height: 44px;
    margin: 0;
    font-size: .98rem;
    line-height: 1.4;
}

.home-product-content h3 a:hover {
    color: var(--violet);
}

.home-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 17px;
    padding-top: 15px;
    border-top: 1px solid #eee7f0;
}

.home-product-bottom strong {
    color: var(--violet-dark);
    font-size: 1.08rem;
}

.home-product-bottom a {
    color: #5a4d60;
    font-size: .8rem;
    font-weight: 850;
}

.home-empty-products {
    padding: 55px 25px;
    text-align: center;
    background: var(--noir-doux);
    border: 1px solid var(--bordure-sombre);
    border-radius: 24px;
}

.home-empty-products p {
    margin: 0 0 22px;
    color: var(--texte-muted);
}

.home-commitments {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.6fr);
    gap: clamp(40px, 7vw, 100px);
    padding: 110px max(5%, 24px);
    color: var(--encre);
    background: #f7f2f6;
}

.home-commitments-intro {
    max-width: 520px;
}

.home-commitments .home-kicker {
    color: var(--violet);
}

.home-commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #dcd2df;
    border: 1px solid #dcd2df;
}

.home-commitment-grid article {
    padding: clamp(27px, 4vw, 45px);
    background: #fff;
}

.home-commitment-icon {
    display: inline-block;
    margin-bottom: 32px;
    color: var(--violet);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    font-style: italic;
}

.home-commitment-grid h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
}

.home-commitment-grid p {
    margin: 0;
    color: #6e6172;
    font-size: .92rem;
    line-height: 1.65;
}

.home-final-cta {
    padding: 115px 24px;
    text-align: center;
    background:
        radial-gradient(circle at 25% 20%, rgba(236, 72, 153, .28), transparent 28%),
        radial-gradient(circle at 75% 80%, rgba(124, 58, 237, .34), transparent 30%),
        var(--noir-doux);
}

.home-final-cta h2 {
    margin-bottom: 35px;
    font-size: clamp(3rem, 7vw, 6.5rem);
}

/* Images et cartes génériques conservées pour les autres pages */
.product-image {
    overflow: hidden;
    background: #f5efff;
}

.product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Pied de page */
.site-footer {
    margin: 0;
    padding: 70px max(5%, 24px) 28px;
    color: #fff;
    background: #09060c;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer-inner {
    width: min(1380px, 100%);
    margin: 0 auto;
}

.site-footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(35px, 7vw, 110px);
    padding-bottom: 48px;
}

.site-footer-brand {
    margin: 0;
}

.site-footer-brand strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1;
}

.site-footer-brand span {
    display: block;
    margin-top: 10px;
    color: var(--or);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-footer-description {
    max-width: 390px;
    margin: 22px 0 0;
    color: #9e93a3;
    font-size: .9rem;
    line-height: 1.7;
}

.footer-column h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.footer-nav {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: #a99ead;
    font-size: .9rem;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: var(--or);
}

.site-footer-notice {
    margin: 0;
    color: #a99ead;
    font-size: .9rem;
    line-height: 1.65;
}

.site-footer-notice strong {
    display: block;
    margin-bottom: 9px;
    color: #fff;
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    color: #736a77;
    font-size: .78rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer-copy,
.site-footer-legal {
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .site-header {
        gap: 18px;
        padding-right: 22px;
        padding-left: 22px;
    }

    .main-nav {
        gap: 14px;
    }

    .main-nav > a:not(.cart-button-mobile) {
        font-size: .82rem;
    }

    .home-hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
        gap: 40px;
    }

    .home-hero-visual {
        min-height: 480px;
    }

    .home-category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    body.menu-open {
        overflow: hidden;
    }

    .site-header {
        grid-template-columns: 1fr auto auto;
        min-height: 70px;
    }

    .menu-toggle {
        position: relative;
        display: grid;
        grid-column: 3;
    }

    .cart-button-desktop {
        grid-column: 2;
        grid-row: 1;
        min-height: 42px;
        padding: 10px 14px;
        font-size: .82rem;
    }

    .main-nav {
        position: fixed;
        top: 101px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 99;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 20px 24px 35px;
        overflow-y: auto;
        background: rgba(18, 13, 23, .985);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav > a:not(.cart-button-mobile) {
        padding: 17px 3px;
        color: #fff;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .main-nav > a:not(.cart-button-mobile)::after {
        display: none;
    }

    .cart-button-mobile {
        display: inline-flex;
        margin-top: 22px;
    }

    .home-hero {
        min-height: auto;
    }

    .home-hero-inner {
        grid-template-columns: 1fr;
        padding-top: 70px;
    }

    .home-hero-copy {
        max-width: 680px;
    }

    .home-hero-visual {
        width: min(570px, 100%);
        min-height: 500px;
        margin: 0 auto;
    }

    .home-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-manifesto {
        grid-template-columns: 65px 1fr;
    }

    .home-manifesto .button {
        grid-column: 2;
        justify-self: start;
    }

    .home-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-commitments {
        grid-template-columns: 1fr;
    }

    .site-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer-brand-wrap {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .topbar {
        padding: 7px 12px;
        font-size: .68rem;
    }

    .site-header {
        min-height: 66px;
        padding: 10px 13px;
    }

    .brand-name {
        font-size: 1.15rem;
    }

    .brand-slogan {
        font-size: .52rem;
    }

    .cart-button-desktop {
        display: none;
    }

    .menu-toggle {
        grid-column: 3;
    }

    .main-nav {
        top: 91px;
    }

    .age-box {
        padding: 34px 20px;
        border-radius: 23px;
    }

    .age-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .age-actions .button {
        width: 100%;
    }

    .home-hero-inner {
        gap: 45px;
        padding: 58px 18px 70px;
    }

    .home-hero-copy h1 {
        font-size: clamp(3.25rem, 17vw, 5rem);
    }

    .home-hero-text {
        margin-top: 22px;
        line-height: 1.62;
    }

    .home-hero-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 28px;
    }

    .home-hero-actions .button {
        width: 100%;
    }

    .home-hero-trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .home-hero-visual {
        min-height: 375px;
    }

    .home-hero-card--main {
        right: 2%;
        width: 92%;
        border-radius: 38% 38% 16px 16px;
    }

    .home-hero-card--small {
        width: 125px;
    }

    .home-hero-badge {
        right: -4px;
        bottom: 22px;
        width: 96px;
        height: 96px;
        padding: 12px;
        font-size: .6rem;
    }

    .home-section {
        padding: 75px 14px;
    }

    .home-section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 27px;
    }

    .home-section-heading h2,
    .home-manifesto h2,
    .home-commitments h2 {
        font-size: clamp(2.35rem, 12vw, 3.5rem);
    }

    .home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-category-card {
        border-radius: 14px;
    }

    .home-category-action {
        right: 10px;
        bottom: 10px;
        left: 10px;
        font-size: .62rem;
    }

    .home-category-overlay-title {
        top: 9px;
        font-size: .68rem;
    }

    .home-manifesto {
        grid-template-columns: 1fr;
        width: calc(100% - 28px);
        padding: 38px 25px;
        border-radius: 22px;
    }

    .home-manifesto-number {
        font-size: 2.2rem;
    }

    .home-manifesto .button {
        grid-column: 1;
        width: 100%;
    }

    .home-product-grid {
        gap: 10px;
    }

    .home-product-card {
        border-radius: 13px;
    }

    .home-product-image {
        padding: 7px;
    }

    .home-product-content {
        padding: 12px;
    }

    .home-product-content h3 {
        min-height: 54px;
        font-size: .82rem;
    }

    .home-product-category {
        font-size: .58rem;
    }

    .home-product-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .home-product-bottom strong {
        font-size: .95rem;
    }

    .home-commitments {
        padding: 75px 14px;
    }

    .home-commitment-grid {
        grid-template-columns: 1fr;
    }

    .home-commitment-grid article {
        padding: 29px 24px;
    }

    .home-commitment-icon {
        margin-bottom: 22px;
    }

    .home-final-cta {
        padding: 85px 18px;
    }

    .home-final-cta h2 {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .site-footer {
        padding: 55px 20px 24px;
    }

    .site-footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .site-footer-brand-wrap {
        grid-column: auto;
    }

    .site-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* Sur la page panier, masquer le lien Panier du menu mobile */
@media (max-width: 820px) {
    body.page-panier .cart-button-desktop,
    body.page-panier .cart-button-mobile {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
