/**
 * CARRÉ COSMÉTIQUES — Styles principaux
 * Landing précommande • Luxe accessible • Mobile-first
 * Reset moderne + Design system (variables CSS)
 */

/* Reset moderne */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font: inherit;
}

/* Utilitaires design system (spacing typique) */
.container-padding { padding-left: var(--container-padding); padding-right: var(--container-padding); }
.section-y { padding-top: clamp(2.25rem, 4.5vw, 3.5rem); padding-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }

:root {
    /* Palette marque (thème actuel) */
    --noir: #0A0A0A;
    --anthracite: #1A1A1A;
    --terracotta: #C45C3E;
    --or: #D4AF37;
    --or-clair: #E5C76B;
    --or-fonce: #B8962E;
    --blanc-casse: #F5F5F5;
    --gris: #6B6B6B;
    --gris-clair: #9CA3AF;

    /* Design system CRO (alias optionnels) */
    --color-primary: #2c3e50;
    --color-secondary: #f5f5dc;
    --color-accent: #27ae60;
    --color-error: #e74c3c;
    --color-background: #0A0A0A;

    /* Luxe — reflets or subtils */
    --reflet-or: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 50%, rgba(212, 175, 55, 0.05) 100%);
    --ombre-or: 0 4px 20px rgba(212, 175, 55, 0.12);

    /* Typo (headings Inter/Poppins, body system) */
    --font-titre: 'Space Grotesk', -apple-system, sans-serif;
    --font-luxe: 'Cormorant Garamond', Georgia, serif;
    --font-texte: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Espacements (sections py-16 lg:py-24, containers px-4 sm:px-6 lg:px-8) */
    --section-padding: clamp(2.25rem, 4.5vw, 3.5rem) 1.5rem;
    --container-max: 1200px;
    --container-padding: 1rem;
    --radius: 8px;
    --radius-lg: 16px;

    /* Transitions luxe */
    --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    color-scheme: dark only;
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

/* Sélection texte — luxe */
::selection {
    background: rgba(212, 175, 55, 0.25);
    color: var(--blanc-casse);
}

/* Focus visible — accessibilité */
:focus-visible {
    outline: 2px solid var(--or);
    outline-offset: 2px;
}

/* Safe area pour encoches / barre dynamique iPhone */
@supports (padding: max(0px)) {
    .site-header { padding-left: max(1.5rem, env(safe-area-inset-left)); padding-right: max(1.5rem, env(safe-area-inset-right)); }
    .site-footer { padding-bottom: max(2rem, env(safe-area-inset-bottom)); }
    .hero { padding-left: max(1.5rem, env(safe-area-inset-left)); padding-right: max(1.5rem, env(safe-area-inset-right)); }
    .section { padding-left: max(1.5rem, env(safe-area-inset-left)); padding-right: max(1.5rem, env(safe-area-inset-right)); }
}

body {
    font-family: var(--font-texte);
    background-color: var(--noir);
    color: var(--blanc-casse);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: "kern" 1, "liga" 1;
}
@media (prefers-reduced-motion: no-preference) {
    body { animation: bodyFadeIn 0.45s var(--ease-luxe) 0.02s both; }
}
@keyframes bodyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

h1, h2, h3, h4 {
    font-family: var(--font-titre);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Texture grain léger — luxe subtil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.6;
}

/* ========== HEADER — Logo + panier flottants (luxe minimal) ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.65rem 1.25rem 0.75rem;
    background: rgba(6, 6, 6, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    animation: fadeInDown 0.7s var(--ease-luxe) 0.25s forwards;
    transition: top 0.35s var(--ease-luxe);
    pointer-events: none;
}
.site-header .header-inner {
    pointer-events: auto;
}
body.preco-bandeau-visible .site-header {
    top: 1.5rem;
}
body.preco-bandeau-visible [id] {
    scroll-margin-top: calc(4rem + 1.5rem);
}
body.preco-bandeau-visible .panier-page {
    padding-top: calc(4.5rem + 1.5rem);
}
body.preco-bandeau-visible .hero {
    padding-top: calc(5.5rem + 1.5rem);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    color: var(--blanc-casse);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.35s var(--ease-luxe);
}

.header-nav a:hover {
    color: var(--or);
}

/* Logo : gauche sur desktop — mis en valeur */
.header-logo {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
}

.header-logo img {
    height: clamp(56px, 5.5vw, 76px);
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.35s var(--ease-luxe);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 14px rgba(212, 175, 55, 0.35));
}
.header-logo:hover img {
    opacity: 0.95;
    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.4));
}

.header-logo-text {
    font-family: var(--font-titre);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--blanc-casse);
    text-decoration: none;
}

.header-logo-text span { color: var(--terracotta); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--or);
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle svg { width: 28px; height: 28px; }

.header-spacer { flex: 1; }

/* Icône panier header — mise en valeur */
.header-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--blanc-casse);
    transition: color 0.3s, transform 0.3s, filter 0.3s;
    padding: 0.5rem 0.65rem;
    border-radius: var(--radius);
}
.header-cart:hover {
    color: var(--or);
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
}
.header-cart-icon {
    width: 28px;
    height: 28px;
}
.header-cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.6875rem;
    font-weight: 700;
    background: var(--or);
    color: var(--noir);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.2s, transform 0.2s;
}
.header-cart-badge.visible {
    opacity: 1;
    transform: scale(1);
}
.header-cart.has-items .header-cart-badge { opacity: 1; transform: scale(1); }
.header-cart.has-items .header-cart-icon { color: var(--or); }
.header-cart.has-items { filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.3)); }

/* Wrapper panier pour dropdown */
.header-cart-wrap {
    position: relative;
}
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    width: min(380px, calc(100vw - 2rem));
    max-height: 85vh;
    overflow-y: auto;
    background: var(--anthracite);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 200;
}
.cart-dropdown.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cart-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-dropdown-title {
    font-family: var(--font-titre);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--blanc-casse);
    margin: 0;
}
.cart-dropdown-count { font-weight: 400; color: var(--gris); }
.cart-dropdown-close {
    background: none;
    border: none;
    color: var(--gris);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s;
}
.cart-dropdown-close:hover { color: var(--blanc-casse); }
.cart-dropdown-empty {
    color: var(--gris);
    font-size: 0.9375rem;
    margin: 0;
    padding: 1.5rem 1.25rem;
}
.cart-dropdown-items {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: 240px;
    overflow-y: auto;
}
.cart-dropdown-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-dropdown-item:last-child { border-bottom: none; }
.cart-dropdown-item-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    overflow: hidden;
}
.cart-dropdown-item-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-dropdown-item-info { display: flex; flex-direction: column; gap: 0.125rem; min-width: 0; }
.cart-dropdown-name { color: var(--blanc-casse); font-weight: 600; }
.cart-dropdown-variant { font-size: 0.75rem; color: var(--gris); }
.cart-dropdown-qty-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}
.cart-dropdown-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(212,175,55,0.4);
    background: transparent;
    color: var(--or);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.cart-dropdown-qty-btn:hover { background: rgba(212,175,55,0.15); }
.cart-dropdown-qty { min-width: 1.25rem; text-align: center; font-weight: 600; color: var(--blanc-casse); }
.cart-dropdown-price { font-weight: 600; color: var(--or); font-size: 0.9375rem; }
.cart-dropdown-benefits {
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.03);
    font-size: 0.75rem;
    color: var(--gris);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.cart-dropdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--blanc-casse);
}
.cart-dropdown-total-amount { font-weight: 700; color: var(--or); }
.cart-dropdown-cta {
    display: block;
    text-align: center;
    padding: 0.875rem 1.25rem;
    margin: 0 1.25rem 0.75rem;
    background: var(--or);
    color: var(--noir);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
}
.cart-dropdown-cta:hover { background: var(--or-clair); color: var(--noir); }
.cart-dropdown-cta-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--blanc-casse);
    margin-bottom: 1.25rem;
}
.cart-dropdown-cta-secondary:hover { border-color: var(--or); color: var(--or); background: rgba(212,175,55,0.08); }
.cart-pack-duo-offer {
    margin: 0 1.25rem 1rem;
    padding: 1rem;
    background: rgba(196,92,62,0.12);
    border: 1px solid rgba(196,92,62,0.3);
    border-radius: var(--radius);
}
.cart-pack-duo-offer p { margin: 0 0 0.75rem; font-size: 0.875rem; color: var(--blanc-casse); }
.cart-pack-duo-offer .cart-pack-duo-btn {
    padding: 0.5rem 1rem;
    background: var(--terracotta);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
}

/* Animation étoile filante + pulse panier */
.shooting-star-particle {
    position: fixed;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    margin-top: -7px;
    background: radial-gradient(circle, var(--or-clair) 0%, var(--or) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    --delta-x: 0px;
    --delta-y: 0px;
}
.shooting-star-particle.animate {
    animation: shootingStar 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes shootingStar {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    70% {
        opacity: 0.9;
        transform: translate(var(--delta-x), var(--delta-y)) scale(0.6);
    }
    100% {
        opacity: 0;
        transform: translate(var(--delta-x), var(--delta-y)) scale(0.2);
    }
}
.header-cart.cart-gold-pulse .header-cart-icon {
    animation: cartGoldPulse 0.6s ease;
}
@keyframes cartGoldPulse {
    0%, 100% { color: inherit; filter: none; }
    50% { color: var(--or); filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8)); }
}

/* Boutons flottants (Instagram + LA ROUTINE COMPLÈTE) */
.floating-buttons {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}
.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
}
.floating-btn-ig {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--or);
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: none;
}
.floating-btn-ig:hover {
    color: var(--or-clair);
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
}
.floating-btn-ig .floating-btn-ig-icon { width: 22px; height: 22px; opacity: 0.9; }
.floating-btn-ig:hover .floating-btn-ig-icon { opacity: 1; }
.floating-btn-scroll-top {
    background: linear-gradient(135deg, var(--or) 0%, var(--or-fonce) 100%);
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255,255,255,0.15), 0 0 0 1px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.3s ease;
}
.floating-btn-scroll-top.visible {
    opacity: 1 !important;
    pointer-events: auto !important;
}
.floating-btn-scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    color: white;
}

/* ========== CHATBOT (style Apple Messages) ========== */
#chatbot-root {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 95;
    font-family: var(--font-texte);
}
.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-fonce) 100%);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.chatbot-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
}
.chatbot-toggle svg {
    width: 24px;
    height: 24px;
}
.chatbot-panel {
    position: absolute;
    bottom: calc(100% + 0.75rem);
    left: 0;
    width: min(380px, calc(100vw - 2rem));
    max-height: 520px;
    background: var(--anthracite);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.96);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}
.chatbot-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.chatbot-header {
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.chatbot-header-title {
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--or);
}
.chatbot-header-sub {
    font-size: 0.8125rem;
    color: var(--gris-clair);
}
.chatbot-tagline {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    color: var(--terracotta);
    background: rgba(196, 92, 62, 0.08);
    border-bottom: 1px solid rgba(196, 92, 62, 0.15);
}
.chatbot-name-form {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.25rem 1rem;
}
.chatbot-name-form input {
    flex: 1;
    padding: 0.625rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--blanc-casse);
    font-size: 0.9375rem;
    font-family: inherit;
}
.chatbot-name-form input::placeholder { color: var(--gris); }
.chatbot-name-form input:focus {
    outline: none;
    border-color: var(--or);
}
.chatbot-send-btn {
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--terracotta) 0%, #a84a32 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: opacity 0.2s;
}
.chatbot-send-btn:hover { opacity: 0.95; }
.chatbot-title { font-family: var(--font-titre); font-weight: 700; font-size: 1.125rem; color: var(--or); }
.chatbot-subtitle { font-size: 0.8125rem; color: var(--gris-clair); }
.chatbot-close {
    margin-left: auto;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--gris-clair);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}
.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--blanc-casse);
}
.chatbot-messages {
    padding: 1rem 1.25rem;
    max-height: 220px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.chatbot-msg {
    display: flex;
    justify-content: flex-start;
}
.chatbot-msg-user {
    justify-content: flex-end;
}
.chatbot-msg-user .chatbot-bubble {
    background: rgba(212, 175, 55, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--blanc-casse);
    border-radius: 18px 18px 4px 18px;
    margin-left: auto;
}
.chatbot-msg-bot .chatbot-bubble {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--blanc-casse);
    border-radius: 18px 18px 18px 4px;
    max-width: 90%;
}
.chatbot-bubble {
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}
/* Typing indicator — style Apple "est en train d'écrire" */
.chatbot-typing .chatbot-typing-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gris-clair);
    margin: 0 2px;
    animation: chatbotTyping 1.4s ease-in-out infinite both;
}
.chatbot-typing .chatbot-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing .chatbot-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatbotTyping {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}
.chatbot-choices {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
    max-height: 240px;
    overflow-y: auto;
    transition: opacity 0.2s ease;
}
.chatbot-choices-label {
    font-size: 0.8125rem;
    color: var(--gris);
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.chatbot-choices-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.chatbot-choice-btn {
    text-align: left;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--blanc-casse);
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.chatbot-choice-btn:hover:not(:disabled) {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(4px);
}
.chatbot-choice-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.cart-pack-duo-offer {
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: rgba(196, 92, 62, 0.12);
    border: 1px solid rgba(196, 92, 62, 0.3);
    border-radius: 10px;
}
.cart-pack-duo-offer p { font-size: 0.8125rem; margin-bottom: 0.5rem; color: var(--blanc-casse); }
.cart-pack-duo-btn {
    padding: 0.4rem 0.75rem;
    background: var(--terracotta);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
}
.cart-pack-duo-btn:hover { opacity: 0.95; }
@media (max-width: 640px) {
    #chatbot-root { bottom: 1rem; left: 1rem; }
    .chatbot-panel { width: calc(100vw - 2rem); max-height: 70vh; }
    .chatbot-messages { max-height: 180px; }
}

/* Chatbot mode clair — désactivé (toujours sombre) */
@media (max-width: 0) {
    .chatbot-panel {
        background: #fff;
        border-color: rgba(196, 92, 62, 0.25);
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }
    .chatbot-header { background: rgba(196, 92, 62, 0.06); border-bottom-color: rgba(196, 92, 62, 0.2); }
    .chatbot-header-title { color: var(--terracotta); }
    .chatbot-header-sub { color: var(--gris); }
    .chatbot-tagline { color: var(--terracotta); background: rgba(196, 92, 62, 0.06); }
    .chatbot-close { color: var(--noir); }
    .chatbot-close:hover { background: rgba(0,0,0,0.06); color: var(--terracotta); }
    .chatbot-msg-bot .chatbot-bubble {
        background: rgba(196, 92, 62, 0.08);
        border-color: rgba(196, 92, 62, 0.2);
        color: var(--noir);
    }
    .chatbot-msg-user .chatbot-bubble {
        background: rgba(196, 92, 62, 0.15);
        border-color: rgba(196, 92, 62, 0.3);
        color: var(--noir);
    }
    .chatbot-typing .chatbot-typing-dot { background: var(--terracotta); }
    .chatbot-choices { background: rgba(245,245,245,0.8); border-top-color: rgba(196, 92, 62, 0.15); }
    .chatbot-choices-label { color: var(--gris); }
    .chatbot-choice-btn {
        background: #fff;
        border-color: rgba(196, 92, 62, 0.25);
        color: var(--noir);
    }
    .chatbot-choice-btn:hover:not(:disabled) {
        background: rgba(196, 92, 62, 0.08);
        border-color: var(--terracotta);
        color: var(--terracotta);
    }
    .chatbot-name-form input {
        background: #f5f5f5;
        border-color: rgba(196, 92, 62, 0.3);
        color: var(--noir);
    }
    .chatbot-name-form input::placeholder { color: var(--gris); }
}

/* Bandeau cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--anthracite);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 1.5rem;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.cookie-banner.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cookie-banner-text {
    font-size: 0.9375rem;
    color: var(--blanc-casse);
    margin: 0;
}
.cookie-banner-text a {
    color: var(--or);
    text-decoration: underline;
}
.cookie-banner-text a:hover { color: var(--or-clair); }
.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}
.cookie-btn-essential {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--blanc-casse);
}
.cookie-btn-essential:hover {
    border-color: var(--or);
    color: var(--or);
}
.cookie-btn-all {
    background: var(--or);
    border: none;
    color: var(--noir);
}
.cookie-btn-all:hover {
    background: var(--or-clair);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5.5rem 1.5rem 4rem;
    background: #000;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 50% 40%, rgba(212, 175, 55, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 50% 60%, rgba(196, 92, 62, 0.06) 0%, transparent 50%);
    pointer-events: none;
    will-change: transform;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 120% 90% at 50% 15%, rgba(212, 175, 55, 0.05) 0%, transparent 45%);
    pointer-events: none;
    animation: heroGlow 12s ease-in-out infinite;
}
@keyframes heroGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo-wrap {
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.9s var(--ease-luxe) 0.4s forwards;
}

.hero-logo {
    width: 100%;
    max-width: min(90vw, 280px);
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Logo hero plus lisible sur écrans larges */
@media (min-width: 769px) {
    .hero-logo {
        max-width: min(92vw, 400px);
    }
}

@media (min-width: 1100px) {
    .hero-logo {
        max-width: min(90vw, 480px);
    }
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.9s var(--ease-luxe) 0.5s forwards;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--or);
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.9s var(--ease-luxe) 0.6s forwards;
    font-family: var(--font-titre);
}

.countdown {
    font-family: var(--font-titre);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--terracotta);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.countdown span { color: var(--blanc-casse); }

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.9s var(--ease-luxe) 0.75s forwards;
}

.hero-cta-primary,
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-radius: var(--radius);
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.hero-cta-primary {
    background: linear-gradient(135deg, var(--terracotta) 0%, #b85030 100%);
    color: white;
    box-shadow: 0 2px 12px rgba(196, 92, 62, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-cta-primary:hover {
    background: linear-gradient(135deg, #a84a32 0%, #923d28 100%);
    box-shadow: 0 4px 24px rgba(196, 92, 62, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.hero-cta-secondary {
    background: transparent;
    color: var(--blanc-casse);
    border: 2px solid rgba(212, 175, 55, 0.25);
}

.hero-cta-secondary:hover {
    border-color: var(--or);
    color: var(--or);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Boutons dorés (inactifs / cadenas) — style LA ROUTINE COMPLÈTE arrondi */
.hero-cta-gold, .pack-cta-gold, .hero-cta-routine, .hero-cta-scroll {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.hero-cta-gold, .pack-cta-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-titre);
    font-weight: 700;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-fonce) 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255,255,255,0.15) !important;
    cursor: pointer;
    opacity: 0.98;
    border-radius: 9999px !important;
    padding: 1rem 1.75rem !important;
    transition: transform 0.35s var(--ease-luxe), box-shadow 0.35s var(--ease-luxe), background 0.35s ease !important;
}
.hero-cta-gold:hover, .pack-cta-gold:hover {
    background: linear-gradient(135deg, var(--or-clair) 0%, var(--or) 100%) !important;
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.45), inset 0 1px 0 rgba(255,255,255,0.2) !important;
    transform: translate3d(0, -3px, 0);
}
.hero-cta-gold .lock-icon, .pack-cta-gold .lock-icon {
    flex-shrink: 0;
}
/* Bouton routine perso — couleur différente (terracotta) */
.hero-cta-routine {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-titre);
    font-weight: 700;
    background: linear-gradient(135deg, var(--terracotta) 0%, #b85030 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 2px 12px rgba(196, 92, 62, 0.3) !important;
    border-radius: 9999px !important;
    padding: 1rem 1.75rem !important;
}
.hero-cta-routine:hover {
    background: linear-gradient(135deg, #a84a32 0%, #923d28 100%) !important;
    box-shadow: 0 4px 20px rgba(196, 92, 62, 0.4) !important;
    transform: translateY(-2px);
}

.hero-accroche {
    font-family: var(--font-luxe);
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 500;
    font-style: italic;
    color: var(--gris);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.9s var(--ease-luxe) 0.65s forwards;
    letter-spacing: 0.02em;
}

/* Scroll indicator style Apple — invite à descendre */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-top: 2.5rem;
    color: rgba(245, 245, 245, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.9s var(--ease-luxe) 0.95s forwards;
    transition: color 0.35s var(--ease-luxe);
}
.hero-scroll-indicator:hover {
    color: var(--or);
}
.hero-scroll-chevron {
    display: flex;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-chevron svg {
    color: var(--or);
    opacity: 0.9;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.7; }
}

.hero-cta-scroll {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* TrustBar — ne pas cacher par le header au scroll */
.trust-bar {
    scroll-margin-top: 5.5rem;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 0.75rem 1rem;
}
#produits,
.section-product-selector,
#offres-pro {
    scroll-margin-top: 5.5rem;
}
.produits-cta-wrap {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.produits-cta-choisir {
    display: inline-flex;
    text-decoration: none;
}
.trust-bar-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
}
.trust-bar-item {
    font-size: 0.8125rem;
    color: var(--gris-clair);
    font-weight: 500;
}

/* ProductSelector — visibilité pack/baume gérée par product-selector.js (carre-config-ready) */
.product-selector-cards[data-visible-count="1"] { grid-template-columns: 1fr; max-width: 420px; }
.product-selector-cards[data-visible-count="2"] { grid-template-columns: 1fr 1.15fr; }
.product-selector-cards[data-visible-count="3"] { grid-template-columns: 1fr 1.15fr 1fr; }
.product-selector-cards[data-visible-count="4"] { grid-template-columns: 1fr 1fr 1.15fr 1fr; max-width: 1100px; }

/* ProductSelector */
.section-product-selector { padding-bottom: 2rem; }
.product-selector-cards {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    align-items: stretch;
}
.product-selector-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: border-color 0.3s var(--ease-luxe), box-shadow 0.3s var(--ease-luxe);
    position: relative;
    cursor: pointer;
}
.product-selector-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
}
.product-selector-card-highlight {
    border-color: var(--or);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.3);
}
.product-selector-card.selected {
    border-color: var(--or);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}
.product-selector-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--or) 0%, var(--or-fonce) 100%);
    color: #000;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
}
.product-selector-badge-alt {
    background: linear-gradient(135deg, var(--terracotta) 0%, #b85030 100%);
    color: #fff;
}
.product-selector-card-img {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin: 0 auto 1rem;
    border-radius: var(--radius);
}
.product-selector-card-title {
    font-family: var(--font-titre);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--blanc-casse);
}
.product-selector-card-desc {
    font-size: 0.875rem;
    color: var(--gris);
    margin-bottom: 1rem;
}
.product-selector-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--or);
    margin-bottom: 0.5rem;
}
.product-selector-card-price .product-selector-old {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--gris);
    text-decoration: line-through;
    margin-right: 0.5rem;
}
.product-selector-economie {
    font-size: 0.8125rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}
.product-selector-card-no-cta {
    padding-bottom: 2.75rem;
}
.product-selector-card-cta {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: transparent;
    color: var(--or);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.product-selector-card-cta:hover {
    background: rgba(212, 175, 55, 0.15);
}
.product-selector-card-cta[aria-pressed="true"],
.product-selector-card-cta-gold {
    background: linear-gradient(135deg, var(--or) 0%, var(--or-fonce) 100%);
    color: #000;
    border-color: var(--or);
}
.product-selector-cta-wrap {
    text-align: center;
    margin-top: 1.5rem;
}
.product-selector-main-cta {
    min-width: 280px;
    text-align: center;
    flex-wrap: wrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.product-selector-main-cta .product-selector-cta-price {
    white-space: nowrap;
}
.product-selector-cta-disabled,
.product-selector-card-cta.product-selector-cta-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.product-selector-disabled .product-selector-card {
    opacity: 0.7;
}
.product-selector-rupture-message {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}
.product-selector-rupture-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--blanc-casse);
    margin: 0;
}
.product-selector-pending-message {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}
.product-selector-pending-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--blanc-casse);
    margin: 0 0 1rem 0;
}
.product-selector-pending-links {
    font-size: 0.9375rem;
    color: var(--gris-clair);
    margin: 0;
}
.product-selector-pending-link {
    color: var(--or);
    text-decoration: none;
    font-weight: 600;
}
.product-selector-pending-link:hover {
    text-decoration: underline;
}
.product-selector-pending-sep {
    margin: 0 0.5rem;
    color: var(--gris);
}

/* Social Proof */
.section-social-proof { text-align: center; }
.social-proof-inner { max-width: 480px; margin: 0 auto; }
.social-proof-stat { font-size: 1.125rem; color: var(--blanc-casse); margin-bottom: 0.5rem; }
.social-proof-number { font-size: 1.75rem; font-weight: 700; color: var(--or); }
.social-proof-cta { font-size: 0.9375rem; color: var(--gris); }

/* Newsletter */
.section-newsletter { padding-top: 1.5rem; padding-bottom: 2rem; }
.newsletter-card {
    max-width: 440px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}
.newsletter-title {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--blanc-casse);
}
.newsletter-desc {
    font-size: 0.9375rem;
    color: var(--gris);
    margin-bottom: 1.25rem;
}
.newsletter-form {
    margin-bottom: 0.75rem;
}
.newsletter-input-wrap {
    display: flex;
    gap: 0.5rem;
}
.newsletter-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.3);
    color: var(--blanc-casse);
    font-size: 1rem;
}
.newsletter-input::placeholder { color: var(--gris); }
.newsletter-input:focus {
    outline: none;
    border-color: var(--or);
}
.newsletter-btn {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-fonce) 100%);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.newsletter-error {
    font-size: 0.875rem;
    color: var(--terracotta);
    margin: 0.5rem 0 0;
    min-height: 1.25rem;
}
.newsletter-error:empty { display: none; }
.newsletter-hint {
    font-size: 0.75rem;
    color: var(--gris);
}

@media (max-width: 900px) {
    .product-selector-cards[data-visible-count="4"] {
        grid-template-columns: 1fr 1fr;
        max-width: 560px;
    }
}
@media (max-width: 768px) {
    .product-selector-cards {
        grid-template-columns: 1fr !important;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }
    .product-selector-card-highlight { order: -1; }
    .trust-bar-inner { gap: 0.75rem 1rem; }
    .newsletter-input-wrap { flex-direction: column; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== SECTIONS GÉNÉRIQUES ========== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    font-family: var(--font-titre);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: clamp(1.25rem, 3vw, 1.85rem);
    color: var(--blanc-casse);
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ========== LA ROUTINE COMPLÈTE ========== */
.section-pack {
    background: var(--anthracite);
}

.pack-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2), 0 8px 32px rgba(0,0,0,0.2), var(--ombre-or);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
}

.pack-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.pack-img-hero {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
}
.pack-img-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--anthracite) 0%, transparent 100%);
    pointer-events: none;
}
.pack-duo-img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}
.pack-img-hero:active .pack-duo-img {
    transform: scale(0.98);
}
.pack-header-with-img {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.pack-img-wrap {
    flex-shrink: 0;
    width: 140px;
}
@media (max-width: 500px) {
    .pack-img-hero { max-width: 100%; margin-bottom: 1rem; }
    .pack-duo-img { max-height: 220px; }
    .pack-header-with-img { flex-direction: column; gap: 1rem; }
    .pack-img-wrap { width: 120px; }
}
.pack-duo-qty-mode {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: auto;
    min-width: 180px;
}
.pack-qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--or);
    background: rgba(212, 175, 55, 0.15);
    color: var(--or-clair);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}
.pack-qty-btn:hover {
    background: rgba(212, 175, 55, 0.3);
    color: white;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
}
.pack-qty-display {
    min-width: 2rem;
    font-weight: 700;
    color: var(--or-clair);
    font-size: 1.25rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.pack-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--blanc-casse);
}

.pack-desc {
    color: var(--gris-clair);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.pack-contents {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
}

.pack-contents ul {
    list-style: none;
}

.pack-contents li {
    padding: 0.5rem 0;
    color: var(--blanc-casse);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pack-contents li::before {
    content: '✓';
    color: var(--or);
    font-weight: 700;
}

.pack-price-wrap {
    margin-bottom: 1.5rem;
}

.pack-price-old {
    color: var(--gris);
    text-decoration: line-through;
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.pack-price {
    font-family: var(--font-titre);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--terracotta);
}

.pack-shipping {
    font-size: 0.9375rem;
    color: var(--gris-clair);
    margin-bottom: 1.5rem;
}

.pack-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 400px;
    padding: 1.25rem 2rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--terracotta) 0%, #b85030 100%);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(196, 92, 62, 0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}

.pack-cta:hover {
    background: linear-gradient(135deg, #a84a32 0%, #923d28 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(196, 92, 62, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.12), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ========== PRODUITS DÉTAILLÉS ========== */
#produits {
    scroll-margin-top: 5rem;
}

.produit-block {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "img header"
        "img info";
    gap: 2rem 2.5rem;
    align-items: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    min-height: 0;
}

.produit-block:last-child { margin-bottom: 0; }

.produit-block.reverse {
    grid-template-areas:
        "header img"
        "info img";
    direction: rtl;
}
.produit-block.reverse > * { direction: ltr; }

.produit-header { grid-area: header; }
.produit-image { grid-area: img; }
.produit-info { grid-area: info; }

.produit-image {
    min-height: min(38vh, 400px);
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    cursor: pointer;
}
.produit-block .produit-image {
    transform: translateY(-1.25rem);
}
.produit-block.reverse .produit-image {
    transform: translateY(1.25rem);
}
.produit-info { display: flex; flex-direction: column; gap: 0.5rem; }
.produit-desc { margin-bottom: 0.5rem; }
.produit-desc-long { margin-bottom: 0.75rem; line-height: 1.75; }

.produit-image-placeholder {
    font-family: var(--font-titre);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--or);
    opacity: 0.4;
}

.produit-image .produit-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
    transition: transform 0.5s var(--ease-luxe), box-shadow 0.3s ease;
}
.produit-image .produit-img:active {
    transform: scale(0.98);
    transition-duration: 0.1s;
}

.produit-header h2,
.produit-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--blanc-casse);
    margin-bottom: 0.375rem;
}

.produit-subtitle {
    font-size: 1rem;
    color: var(--or);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.produit-price {
    font-family: var(--font-titre);
    font-size: 1.75rem;
    color: var(--or);
    margin-bottom: 1.25rem;
}

.produit-desc {
    color: var(--gris-clair);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.produit-desc-long, .produit-usage, .produit-mode, .produit-composition, .produit-engagements {
    color: var(--gris-clair);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gris);
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
    font-size: 1.0625rem;
}

.section-probleme .probleme-text p {
    color: var(--gris-clair);
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
}

.probleme-scroll-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.75rem 1.25rem;
    color: var(--or);
    font-family: var(--font-titre);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 9999px;
    transition: all 0.35s var(--ease-luxe);
}
.probleme-scroll-cta:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--or);
    color: var(--or-clair);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}
.probleme-scroll-cta svg {
    transition: transform 0.35s var(--ease-luxe);
}
.probleme-scroll-cta:hover svg {
    transform: translateY(2px);
}

.section-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% - 0.5rem);
    max-width: 20rem;
    margin: 1.75rem auto 0;
    padding: 1rem 1.35rem 1.15rem;
    text-decoration: none;
    color: var(--or-clair);
    border-radius: 9999px;
    background: linear-gradient(165deg, rgba(212, 175, 55, 0.14) 0%, rgba(18, 18, 18, 0.75) 55%, rgba(8, 8, 8, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.42);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: color 0.35s var(--ease-luxe), transform 0.35s var(--ease-luxe), box-shadow 0.35s var(--ease-luxe), border-color 0.3s ease;
    animation: sectionScrollInvite 3s ease-in-out infinite;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    backface-visibility: hidden;
}
.section-scroll-indicator:hover {
    color: #fff;
    transform: translate3d(0, -4px, 0) scale(1.02);
    border-color: rgba(229, 199, 107, 0.75);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 28px rgba(212, 175, 55, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.section-scroll-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-align: center;
}
.section-scroll-text {
    font-family: var(--font-titre);
    font-size: clamp(0.8125rem, 2.4vw, 0.9375rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.25;
    white-space: nowrap;
    background: linear-gradient(105deg, var(--or-clair) 0%, var(--or) 45%, #f0e6c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}
.section-scroll-hint {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(245, 245, 245, 0.72);
    margin-top: 0.1rem;
}
.section-scroll-chevron {
    display: flex;
    margin-top: 0.35rem;
    animation: scrollBounceChevron 1.6s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.35));
    will-change: transform;
}
@keyframes scrollBounceChevron {
    0%, 100% { transform: translate3d(0, 0, 0); opacity: 1; }
    50% { transform: translate3d(0, 6px, 0); opacity: 0.75; }
}
.section-scroll-chevron svg {
    opacity: 1;
    stroke-width: 2.25;
}
@keyframes sectionScrollInvite {
    0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(212, 175, 55, 0); }
    50% { box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4), 0 0 22px rgba(212, 175, 55, 0.18); }
}
@media (prefers-reduced-motion: reduce) {
    .section-scroll-indicator {
        animation: none;
    }
    .section-scroll-chevron {
        animation: none;
        will-change: auto;
    }
    .section-scroll-indicator:hover {
        transform: none;
    }
}

.offres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.offre-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: left;
}

.offre-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.offre-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.offre-card ul {
    margin: 1rem 0;
    padding-left: 1.25rem;
}

.offre-card li {
    margin-bottom: 0.5rem;
    color: var(--gris-clair);
}

.offre-mention {
    font-size: 0.875rem;
    color: var(--gris);
    margin-top: 1rem;
}

.offre-early {
    text-align: center;
    color: var(--gris);
    font-size: 0.9375rem;
    max-width: 600px;
    margin: 0 auto;
}

.pack-economie {
    font-size: 0.875rem;
    color: var(--terracotta);
    margin-left: 0.5rem;
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.engagement-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.5rem;
    font-size: 0.9375rem;
    color: var(--gris-clair);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.engagement-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.04);
}

.engagement-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--blanc-casse);
}

.faq-item p {
    margin-top: 0.75rem;
    color: var(--gris-clair);
    font-size: 0.9375rem;
}

.footer-tagline, .footer-accroche {
    font-size: 0.875rem;
    color: var(--gris);
    margin-bottom: 0.25rem;
}

.footer-contact {
    font-size: 0.875rem;
    color: var(--gris);
    margin-bottom: 1rem;
}

/* Sections déroulantes produit */
.produit-toggle {
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.produit-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0;
    background: none;
    border: none;
    color: var(--or);
    font-family: var(--font-titre);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.2s ease;
}

.produit-toggle-btn:hover {
    color: var(--blanc-casse);
}

.produit-toggle-btn .toggle-icon {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.produit-toggle[data-expanded="true"] .produit-toggle-btn .toggle-icon {
    transform: rotate(180deg);
}

.produit-toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.produit-toggle[data-expanded="true"] .produit-toggle-content {
    max-height: 1200px;
    transition: max-height 0.5s ease-in;
}

.produit-toggle-content .produit-benefits li {
    color: var(--blanc-casse);
}

.produit-toggle-content .produit-usage,
.produit-toggle-content .produit-mode,
.produit-toggle-content .produit-composition {
    color: var(--gris-clair);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.produit-toggle-content .produit-benefits {
    margin-bottom: 0.5rem;
}

.produit-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.produit-benefits li {
    padding: 0.35rem 0;
    color: var(--blanc-casse);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.produit-benefits li::before {
    content: '•';
    color: var(--terracotta);
}

.produit-inci,
.produit-warning {
    font-size: 0.75rem;
    color: var(--gris);
    line-height: 1.5;
    margin-top: 1rem;
}

.produit-warning {
    color: #e74c3c;
    margin-top: 0.75rem;
}

.produit-pictos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.produit-picto {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gris);
}

.produit-picto svg {
    width: 18px;
    height: 18px;
    color: var(--or);
    flex-shrink: 0;
}

/* Bouton Ajouter au panier produit */
.produit-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-fonce) 100%);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
}
.produit-add-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}
.produit-add-cart-locked,
.produit-add-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--gris) !important;
}

/* Actions produit : bouton panier + partager */
.produit-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.produit-cta-link {
    display: inline-block;
    color: var(--or);
    font-size: 0.9375rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.produit-cta-link:hover {
    color: var(--or-clair);
}
.produit-actions .produit-add-cart {
    margin-top: 0;
}
.produit-share {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    color: var(--blanc-casse);
    font-family: var(--font-titre);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
}
.produit-share:hover {
    border-color: var(--or);
    color: var(--or);
    background: rgba(212, 175, 55, 0.08);
}
.pack-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}
.pack-actions .pack-cta {
    flex: 1;
    min-width: 200px;
}
.pack-share {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius);
    color: var(--or);
    font-family: var(--font-titre);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
}
.pack-share:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--or);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

/* Toast partage */
.share-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 0.75rem 1.5rem;
    background: var(--anthracite);
    border: 1px solid var(--or);
    border-radius: var(--radius);
    color: var(--blanc-casse);
    font-size: 0.9375rem;
    font-weight: 500;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.share-toast.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ========== SECTION CIBLE ========== */
.section-cible {
    background: var(--anthracite);
}

.cible-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.cible-chip {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--blanc-casse);
    transition: all 0.2s ease;
}

.cible-chip:hover {
    border-color: var(--or);
    color: var(--or);
}

/* ========== SECTION FONDATEUR ========== */
.section-fondateur {
    position: relative;
}
.section-fondateur .section-title {
    margin-bottom: clamp(1.25rem, 3vw, 1.85rem);
}

.fondateur-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: clamp(1.5rem, 3vw, 2.25rem);
    justify-content: center;
}
.fondateur-photo {
    flex: 0 0 360px;
    position: sticky;
    top: 7rem;
}
.fondateur-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
/* Notre histoire — bloc lecture (remplace le carousel) */
.histoire-carousel-wrap {
    flex: 1;
    min-width: 280px;
    overflow: hidden;
}
.histoire-article {
    background: rgba(18, 18, 18, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
    max-width: 42rem;
    margin: 0 auto;
}
.histoire-article p {
    margin: 0 0 1.25rem 0;
    color: var(--blanc-casse);
    font-size: clamp(1rem, 2.2vw, 1.1875rem);
    line-height: 1.85;
    text-align: left;
}
.histoire-article p:last-child {
    margin-bottom: 0;
}
.histoire-article-strong {
    margin-top: 0.5rem !important;
    color: var(--or) !important;
    font-size: clamp(1.0625rem, 2.5vw, 1.25rem) !important;
}
/* Ancien carousel (conservé pour compat, masqué si non utilisé) */
.histoire-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.histoire-carousel::-webkit-scrollbar { display: none; }
.histoire-slide {
    flex: 0 0 auto;
    min-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 2rem 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.12);
}
.histoire-slide p {
    margin: 0;
    color: var(--blanc-casse);
    line-height: 1.85;
    font-size: 1.0625rem;
    max-width: 32ch;
}
.histoire-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.histoire-swipe-hint {
    font-size: 0.75rem;
    color: var(--or);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
    transition: opacity 0.5s ease;
}
.histoire-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.histoire-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(212, 175, 55, 0.35);
    cursor: pointer;
    padding: 0;
    transition: all 0.35s var(--ease-luxe);
}
.histoire-dot:hover {
    background: rgba(212, 175, 55, 0.6);
}
.histoire-dot.active {
    background: var(--or);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}
.histoire-carousel-wrap .fondateur-signature {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--gris-clair);
    font-style: italic;
}
.histoire-lire-suite, .histoire-lire-moins {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--or);
    color: var(--or);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}
.histoire-lire-suite:hover, .histoire-lire-moins:hover {
    background: rgba(212, 175, 55, 0.15);
}
.histoire-lire-moins { display: block; margin-bottom: 1.5rem; }
.histoire-block { margin-bottom: 2rem; }
.histoire-block:last-of-type { margin-bottom: 0; }
.fondateur-signature {
    margin-top: 1rem;
    font-style: italic;
    color: var(--gris);
}

.fondateur-content p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--gris-clair);
    margin-bottom: 1.5rem;
}

.fondateur-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--or);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.fondateur-cta:hover { color: var(--terracotta); }

/* ========== FOOTER ========== */
.site-footer {
    padding: 4rem 1.5rem 2rem;
    background: #000;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 -1px 0 rgba(212, 175, 55, 0.04);
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--gris);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--or); }

.footer-mentions {
    font-size: 0.8125rem;
    color: var(--gris);
    margin-bottom: 1rem;
}

.footer-copyright {
    color: var(--gris);
    font-size: 0.8125rem;
}

/* ========== POPUP PRÉCOMMANDES ========== */
.preorder-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.preorder-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.preorder-popup {
    background: var(--anthracite);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    text-align: center;
}
.preorder-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gris);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.preorder-popup h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--or);
}
.preorder-popup-content {
    text-align: left;
    color: var(--blanc-casse);
}
.preorder-popup-intro {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gris-clair);
}
.preorder-popup-body {
    margin: 0.5rem 0 0.25rem 0;
    font-size: 0.9375rem;
    color: var(--blanc-casse);
}
.preorder-popup-list {
    margin: 0 0 0.75rem 0;
    padding-left: 1.25rem;
    list-style: none;
}
.preorder-popup-list li {
    margin-bottom: 0.25rem;
    position: relative;
    padding-left: 0.5rem;
}
.preorder-popup-check {
    position: absolute;
    left: -1.25rem;
    color: var(--or);
    font-weight: 700;
    font-size: 0.875rem;
}
.preorder-popup-link {
    color: var(--or);
    font-weight: 600;
    text-decoration: underline;
}
.preorder-popup-link:hover {
    color: var(--or-clair);
}
.preorder-popup-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
}
.preorder-popup-social-sep {
    color: var(--gris);
    font-size: 0.9375rem;
}
.preorder-popup-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--or);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.preorder-popup-social-link:hover {
    color: var(--or-clair);
}
.preorder-popup-icon {
    flex-shrink: 0;
    color: var(--or);
}
.preorder-popup-social-buttons {
    gap: 0.75rem;
    margin-top: 1rem;
}
.preorder-popup-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid var(--or);
    border-radius: var(--radius);
    color: var(--or);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.preorder-popup-social-btn:hover {
    background: var(--or);
    color: var(--noir);
}
.preorder-popup-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--or);
    color: var(--noir);
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.3s, color 0.3s;
}
.preorder-popup-cta:hover {
    background: var(--or-clair);
}
.routine-password-input {
    width: 100%;
    padding: 0.875rem 1rem;
    margin: 1rem 0;
    background: var(--noir);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius);
    color: var(--blanc-casse);
    font-size: 1rem;
}
.routine-password-input:focus {
    outline: none;
    border-color: var(--or);
}
.routine-password-error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ========== MODAL CHECKOUT ========== */
.checkout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.checkout-overlay.active {
    opacity: 1;
    visibility: visible;
}

.checkout-modal {
    background: var(--anthracite);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.checkout-overlay.active .checkout-modal {
    transform: scale(1);
}

.checkout-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gris);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.checkout-close:hover { color: var(--blanc-casse); }

.checkout-modal h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--blanc-casse);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blanc-casse);
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: rgba(10, 10, 10, 0.5);
    color: var(--blanc-casse);
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--terracotta);
}

.form-group input::placeholder {
    color: var(--gris);
}

/* Validation format (email, téléphone, etc.) */
.form-group input.field-error,
input.field-error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 1px rgba(231, 76, 60, 0.3);
}

.field-error-msg {
    display: block;
    font-size: 0.8125rem;
    color: #e74c3c;
    margin-top: 0.375rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.relay-selector {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.4);
    border-radius: var(--radius);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.relay-selector button {
    width: 100%;
    padding: 0.75rem;
    background: var(--noir);
    border: 1px solid var(--or);
    color: var(--or);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.relay-selector button:hover {
    background: var(--or);
    color: var(--noir);
}

#selected-relay {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--gris-clair);
    line-height: 1.5;
}

.checkout-submit {
    width: 100%;
    padding: 1.25rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--terracotta) 0%, #b85030 100%);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    box-shadow: 0 2px 12px rgba(196, 92, 62, 0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}

.checkout-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #a84a32 0%, #923d28 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(196, 92, 62, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.1), inset 0 1px 0 rgba(255,255,255,0.1);
}

.checkout-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.checkout-error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 1rem;
    display: none;
}

.checkout-error.show { display: block; }

/* ========== ANIMATIONS LUXUEUSES ========== */

/* Base scroll reveal — entrée fluide (GPU, pas de jitter) */
.fade-in {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.65s var(--ease-luxe), transform 0.65s var(--ease-luxe);
    backface-visibility: hidden;
}
.fade-in.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
@media (max-width: 768px) {
    .fade-in {
        transform: translate3d(0, 14px, 0);
        transition-duration: 0.5s;
    }
}

/* Stagger children (délai via data-animate-delay ou .animate-child) */
.animate-child {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-child.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section titles — reveal avec ligne dorée */
.section-title {
    position: relative;
    overflow: hidden;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--or), transparent);
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.fade-in.visible .section-title::after {
    left: 0;
    width: 100%;
}

/* Produit block — image scale subtil au scroll */
.produit-block.visible .produit-header {
    animation: fadeSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.produit-block.visible .produit-image {
    animation: produitReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.produit-block.visible .produit-info {
    animation: fadeSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s forwards;
}
@keyframes produitReveal {
    0% { opacity: 0; transform: scale(0.96) translateY(16px); }
    100% { opacity: 1; transform: scale(1) translateY(-1.25rem); }
}
@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Pack card — entrée luxueuse */
.pack-card {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
}
.section-pack.visible .pack-card {
    animation: packReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes packReveal {
    0% { opacity: 0; transform: translateY(30px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.pack-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.15);
}

/* Offres cards — hover luxe */
.offre-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.3s ease;
}
.offre-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 40px rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.35);
}

/* Cible chips — hover glow */
.cible-chip {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}
.cible-chip:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

/* Engagement items — entrée douce */
.engagement-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease, box-shadow 0.3s ease;
}
.section-engagements.visible .engagement-item {
    opacity: 1;
    transform: translateY(0);
}
.section-engagements.visible .engagement-item:nth-child(1) { transition-delay: 0.05s; }
.section-engagements.visible .engagement-item:nth-child(2) { transition-delay: 0.1s; }
.section-engagements.visible .engagement-item:nth-child(3) { transition-delay: 0.15s; }
.section-engagements.visible .engagement-item:nth-child(4) { transition-delay: 0.2s; }
.section-engagements.visible .engagement-item:nth-child(5) { transition-delay: 0.25s; }
.section-engagements.visible .engagement-item:nth-child(6) { transition-delay: 0.3s; }
.engagement-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.12);
}

/* FAQ — accordion fluide */
.faq-item {
    transition: opacity 0.4s ease;
}
.faq-item summary {
    transition: color 0.3s ease;
}
.faq-item[open] summary {
    color: var(--or);
}
.faq-item p {
    animation: faqReveal 0.4s ease;
}
@keyframes faqReveal {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer — fade in */
.site-footer {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.site-footer.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bandeau précommandes (PRECO PENDING) */
.preco-bandeau {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1.5rem;
    background: #0f0e0d;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 10001;
}
.preco-bandeau-inner {
    display: flex;
    gap: 4rem;
    animation: preco-bandeau-scroll 20s linear infinite;
    white-space: nowrap;
}
.preco-bandeau-text {
    font-family: var(--font-titre);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--or);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
@keyframes preco-bandeau-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}
@media (prefers-reduced-motion: reduce) {
    .preco-bandeau-inner { animation: none; }
}

/* Boutons flottants — entrée douce */
.floating-buttons {
    animation: floatIn 0.9s var(--ease-luxe) 1.1s forwards;
}
@keyframes floatIn {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Problème — paragraphes en cascade */
.probleme-text p {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section-probleme.visible .probleme-text p:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.section-probleme.visible .probleme-text p:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.section-probleme.visible .probleme-text p:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.section-probleme.visible .probleme-text p:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.section-probleme.visible .probleme-text p:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.section-probleme.visible .probleme-text p:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

/* Offres cards — stagger */
.offre-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.3s ease;
}
.section-offres.visible .offre-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.section-offres.visible .offre-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.section-offres.visible .offre-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }

/* Cible chips — stagger */
.cible-chip {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}
.section-cible.visible .cible-chip:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.section-cible.visible .cible-chip:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.section-cible.visible .cible-chip:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.section-cible.visible .cible-chip:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.section-cible.visible .cible-chip:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.section-cible.visible .cible-chip:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.section-cible.visible .cible-chip:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }

/* Offres grid — container */
.offres-grid {
    perspective: 1000px;
}

/* Fix: offres cards need initial visible state for stagger */
.section-offres .offres-grid .offre-card {
    opacity: 0;
    transform: translateY(30px);
}
.section-offres.visible .offres-grid .offre-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.section-offres.visible .offres-grid .offre-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.section-offres.visible .offres-grid .offre-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }

/* CTA hero — micro-interaction */
.hero-cta-gold, .hero-cta-routine {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}
.hero-cta-gold:active, .hero-cta-routine:active {
    transform: scale(0.98);
}

/* Produit image — léger float au survol */
.produit-image:hover .produit-img {
    transform: scale(1.02);
    transition: transform 0.7s var(--ease-luxe);
}
.produit-image .produit-img {
    transition: transform 0.7s var(--ease-luxe);
}

/* Accessibilité — réduire les animations si demandé */
@media (prefers-reduced-motion: reduce) {
    .hero-bg::after { animation: none !important; }
    .fade-in, .animate-child, .probleme-text p, .offre-card, .cible-chip, .engagement-item,
    .hero-bg, .pack-card, .produit-block .produit-header, .produit-block .produit-image, .produit-block .produit-info {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
    .fade-in.visible, .section-probleme.visible .probleme-text p,
    .section-offres.visible .offre-card, .section-cible.visible .cible-chip,
    .section-engagements.visible .engagement-item, .site-footer.visible {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ========== RESPONSIVE ========== */

/* Tablette (768px - 1024px) */
@media (max-width: 1024px) {
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--anthracite);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        padding-right: max(2rem, env(safe-area-inset-right));
        transition: right 0.3s ease;
        z-index: 99;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    .header-nav.open { right: 0; }

    .menu-toggle { display: block !important; z-index: 101; }

    .header-logo { position: static; transform: none; }

    .header-logo img { height: clamp(52px, 12vw, 64px); }

    .produit-block {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-template-areas: none;
        gap: 1.75rem;
        direction: ltr;
        min-height: 0;
    }

    .produit-block.reverse { direction: ltr; }

    .produit-header { order: -2; grid-area: unset; }
    .produit-image {
        order: -1;
        grid-area: unset;
        min-height: min(36vh, 360px);
        max-height: min(52vh, 480px);
    }
    .produit-info { order: 0; grid-area: unset; }

    .form-row { grid-template-columns: 1fr; }

    .section { padding: clamp(2rem, 5vw, 3.25rem) 1.5rem; }

    .offres-grid { grid-template-columns: 1fr; }

    .engagements-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

    .footer-links { gap: 1.5rem; }
}

/* Téléphone portrait (< 640px) */
@media (max-width: 640px) {
    .site-header {
        padding: 0.75rem 1rem;
    }

    .hero {
        padding: 4.5rem 1rem 3rem;
        min-height: 100svh;
    }
    body.preco-bandeau-visible .hero {
        padding-top: calc(4.5rem + 1.5rem);
    }

    .hero-logo { max-width: min(90vw, 240px); }

    .hero-title { font-size: clamp(1.75rem, 8vw, 2.5rem); }

    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta-primary,
    .hero-cta-secondary,
    .hero-cta-gold,
    .hero-cta-routine {
        justify-content: center;
        width: 100%;
        min-height: 48px;
        padding: 1rem 1.5rem;
    }

    /* Notre histoire mobile : photo en bandeau, bloc texte lisible */
    .fondateur-content { flex-direction: column; align-items: stretch; gap: 1.5rem; }
    .histoire-article {
        padding: 1.5rem 1.25rem;
    }
    .histoire-article p {
        font-size: 1.0625rem;
        margin-bottom: 1.125rem;
    }
    .histoire-slide {
        min-height: 180px;
        padding: 1.75rem 1.25rem;
    }
    .histoire-slide p {
        font-size: 1rem;
        max-width: none;
    }
    .fondateur-photo {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        position: static;
        order: -1;
    }
    .fondateur-photo .fondateur-img {
        width: 100%;
        max-height: 280px;
        object-fit: cover;
        object-position: center top;
    }
    .fondateur-text { text-align: left; }
    .fondateur-content p { font-size: 1rem; margin-bottom: 1rem; line-height: 1.75; }
    .histoire-block { margin-bottom: 1.5rem; }

    .floating-buttons { bottom: 1rem; right: 1rem; flex-direction: column-reverse; }
    .floating-btn { padding: 0.625rem 1rem; font-size: 0.75rem; }

    .section { padding: 2.5rem 1rem; }

    .section-title { font-size: clamp(1.5rem, 6vw, 2.25rem); margin-bottom: 2rem; }

    .section-subtitle { margin-bottom: 2rem; }

    .pack-card { padding: 1.5rem 1.25rem; }

    .pack-cta {
        max-width: 100%;
        min-height: 48px;
    }
    .pack-actions {
        flex-direction: column;
    }
    .pack-actions .pack-cta,
    .pack-actions .pack-share {
        width: 100%;
        justify-content: center;
    }
    .produit-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .produit-actions .produit-add-cart,
    .produit-actions .produit-share {
        justify-content: center;
    }

    .produit-block {
        margin-bottom: 2.25rem;
        gap: 1.25rem;
        min-height: 0;
    }
    .produit-image {
        min-height: min(38vh, 340px);
        max-height: min(52vh, 440px);
        align-self: center;
    }
    .produit-block .produit-image,
    .produit-block.reverse .produit-image { transform: none; }

    .produit-benefits li { font-size: 0.875rem; }

    .cible-chips { gap: 0.5rem; }

    .cible-chip { padding: 0.625rem 1rem; font-size: 0.875rem; }

    .engagements-grid { grid-template-columns: 1fr; }

    .footer-links { flex-direction: column; gap: 1rem; }

    .checkout-modal { max-height: 85vh; padding: 1.5rem; }
}

/* Téléphone paysage */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 5rem 1.5rem 3rem;
    }

    .hero-logo-wrap { margin-bottom: 0.5rem; }

    .hero-logo { max-width: 140px; }

    .hero-title { font-size: 1.75rem; margin-bottom: 0.25rem; }

    .hero-subtitle { font-size: 0.875rem; margin-bottom: 0.25rem; }

    .hero-accroche { font-size: 0.8125rem; margin-bottom: 0.75rem; }

    .hero-ctas { margin-bottom: 1rem; gap: 0.5rem; }

    .hero-cta-primary,
    .hero-cta-secondary,
    .hero-cta-gold,
    .hero-cta-routine { padding: 0.75rem 1.25rem; font-size: 0.8125rem; }

    .hero-scroll-indicator,
    .section-scroll-indicator { margin-top: 1.25rem; }
    .section-scroll-hint { font-size: 0.6875rem; }
}

/* Très petit écran (< 380px) */
@media (max-width: 380px) {
    .hero-title { font-size: 1.5rem; }

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

    .section-title { font-size: 1.5rem; }
}

/* Overlay chargement paiement — logo zoom in/out sur fond noir */
.payment-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.payment-overlay.payment-overlay-visible {
    opacity: 1;
    visibility: visible;
}
.payment-overlay-logo {
    animation: payment-logo-pulse 0.35s ease-in-out infinite;
}
.payment-overlay-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}
@keyframes payment-logo-pulse {
    0%, 100% { transform: scale(0.88); opacity: 0.9; }
    50% { transform: scale(1.12); opacity: 1; }
}

/* Mondial Relay — widget injecté dans le modal panier (lisibilité + une seule zone de défilement) */
.panier-relay-modal-inner {
    max-width: min(96vw, 820px);
}
.panier-mr-widget-container {
    background: #fff;
    border-radius: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: min(72vh, 600px);
    min-height: 320px;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
}
.panier-mr-widget-container::-webkit-scrollbar {
    width: 8px;
}
.panier-mr-widget-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 4px;
}
/* Adresses / lignes liste souvent en gris très clair dans le thème MR */
.panier-mr-widget-container,
.panier-mr-widget-container [class*="MR"],
.panier-mr-widget-container [class*="parcelshop"],
.panier-mr-widget-container [class*="ParcelShop"],
.panier-mr-widget-container table,
.panier-mr-widget-container td,
.panier-mr-widget-container th {
    color: #1a1a1a !important;
}
.panier-mr-widget-container a {
    color: #5c1a2d !important;
}

/* ========== Navigation site (Accueil / Histoire / Pro) ========== */
.header-site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.header-site-nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-family: var(--font-ui, 'Space Grotesk', sans-serif);
    font-size: clamp(0.7rem, 1.8vw, 0.8125rem);
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0.35rem 0.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
    transition: color 0.25s var(--ease-luxe), transform 0.2s ease;
}
.header-site-nav-link:hover {
    color: var(--or-clair);
    transform: translateY(-1px);
}
@media (max-width: 720px) {
    .header-site-nav {
        max-width: min(70vw, 300px);
        overflow-x: auto;
        gap: 0.65rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .header-site-nav::-webkit-scrollbar {
        display: none;
    }
    .header-site-nav-link {
        font-size: 0.68rem;
        letter-spacing: 0.09em;
    }
}

/* ========== C'est pour qui (grille icônes — thème sombre, fluide) ========== */
.section-pour-qui {
    background: linear-gradient(180deg, #0e0d0c 0%, #161412 42%, #121110 100%);
    color: var(--blanc-casse);
    padding-top: clamp(2rem, 4vw, 2.75rem);
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
}
.section-pour-qui .section-title {
    color: var(--blanc-casse);
}
.section-pour-qui-title {
    text-align: center;
    letter-spacing: 0.04em;
    margin-bottom: 0.65rem;
}
.pour-qui-kicker {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 1.35rem;
    font-size: clamp(0.875rem, 2.2vw, 0.9375rem);
    line-height: 1.55;
    color: rgba(200, 198, 192, 0.88);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.pour-qui-showcase {
    position: relative;
    border-radius: clamp(18px, 3.5vw, 26px);
    padding: clamp(1.15rem, 3.5vw, 2rem);
    overflow: hidden;
    background: linear-gradient(165deg, rgba(28, 26, 24, 0.95) 0%, rgba(18, 16, 14, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.pour-qui-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 55% at 50% -10%, rgba(212, 175, 55, 0.1), transparent 58%);
    pointer-events: none;
    opacity: 1;
}
.pour-qui-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.1rem, 2.8vw, 1.5rem) clamp(0.85rem, 2.2vw, 1.25rem);
    max-width: 720px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .pour-qui-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 960px;
        gap: 1.35rem 1.1rem;
    }
}
.pour-qui-item {
    text-align: center;
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
    backface-visibility: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.section-pour-qui.fade-in.visible .pour-qui-item:nth-child(1) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0.04s; }
.section-pour-qui.fade-in.visible .pour-qui-item:nth-child(2) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0.08s; }
.section-pour-qui.fade-in.visible .pour-qui-item:nth-child(3) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0.12s; }
.section-pour-qui.fade-in.visible .pour-qui-item:nth-child(4) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0.16s; }
.section-pour-qui.fade-in.visible .pour-qui-item:nth-child(5) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0.2s; }
.section-pour-qui.fade-in.visible .pour-qui-item:nth-child(6) { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0.24s; }
.pour-qui-item:hover .pour-qui-ring,
.pour-qui-item:focus-within .pour-qui-ring {
    transform: translate3d(0, -3px, 0) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.28);
    border-color: rgba(229, 199, 107, 0.55);
}
.pour-qui-ring {
    position: relative;
    width: clamp(96px, 22vw, 112px);
    height: clamp(96px, 22vw, 112px);
    margin: 0 auto 0.65rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 35% 28%, rgba(55, 50, 44, 0.95) 0%, rgba(22, 20, 18, 0.98) 70%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.35s var(--ease-luxe), box-shadow 0.35s var(--ease-luxe), border-color 0.3s ease;
    backface-visibility: hidden;
}
.pour-qui-item:hover .pour-qui-icon,
.pour-qui-item:focus-within .pour-qui-icon {
    color: var(--or-clair);
    transform: translate3d(0, -1px, 0);
}
.pour-qui-icon {
    width: clamp(44px, 11vw, 54px);
    height: clamp(44px, 11vw, 54px);
    color: rgba(229, 199, 107, 0.92);
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.35s var(--ease-luxe);
}
.pour-qui-label {
    font-family: var(--font-ui, 'Space Grotesk', sans-serif);
    font-size: clamp(0.72rem, 2vw, 0.8125rem);
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.92);
    margin: 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}
.pour-qui-item:hover .pour-qui-label,
.pour-qui-item:focus-within .pour-qui-label {
    color: #fff;
}
@media (prefers-reduced-motion: reduce) {
    .section-pour-qui.fade-in.visible .pour-qui-item,
    .section-pour-qui.fade-in .pour-qui-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .pour-qui-ring,
    .pour-qui-icon { transition: none; }
    .pour-qui-item:hover .pour-qui-ring,
    .pour-qui-item:focus-within .pour-qui-ring { transform: none; }
}

/* ========== Offres lancement (3 paliers) ========== */
.offres-lancement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.offre-lancement-card {
    background: rgba(10, 10, 10, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: left;
}
.offre-lancement-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--or);
    margin: 0 0 0.5rem 0;
}
.offre-lancement-heading {
    font-family: var(--font-titre);
    font-size: 1.25rem;
    color: var(--blanc-casse);
    margin: 0 0 0.5rem 0;
}
.offre-lancement-text {
    font-size: 0.9375rem;
    color: var(--gris-clair);
    line-height: 1.5;
    margin: 0;
}

/* ========== Pro & clubs — formulaire ========== */
.section-offres-pro {
    background: rgba(10, 10, 10, 0.35);
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}
.offres-pro-inner {
    max-width: 640px;
    margin: 0 auto;
}
.offres-pro-form {
    margin-top: 2rem;
    text-align: left;
}
.offres-pro-form-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 600px) {
    .offres-pro-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.offres-pro-form .form-group {
    margin-bottom: 1rem;
}
.offres-pro-form label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gris-clair);
    margin-bottom: 0.35rem;
}
.offres-pro-form input,
.offres-pro-form select,
.offres-pro-form textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius);
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: var(--blanc-casse);
    font-size: 0.9375rem;
}
.offres-pro-form select {
    cursor: pointer;
    appearance: auto;
    -webkit-appearance: menulist;
    background-color: #141414;
    color: #f5f5f5;
    color-scheme: dark;
}
.offres-pro-form select:focus {
    outline: 2px solid rgba(212, 175, 55, 0.55);
    outline-offset: 2px;
}
.offres-pro-form select option {
    background-color: #1a1a1a;
    color: #f5f5f5;
}
.offres-pro-form select option:disabled {
    color: rgba(245, 245, 245, 0.45);
}
.offres-pro-privacy {
    font-size: 0.75rem;
    color: var(--gris);
    margin: 0.5rem 0 1rem;
    line-height: 1.4;
}
.partner-form-error {
    color: var(--terracotta);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: none;
}
.partner-form-success {
    color: #4ade80;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.offres-pro-submit {
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ========== Pages produit — CRO / réassurance (SEO conversion) ========== */
.produit-section-h2 {
    font-family: var(--font-titre);
    font-size: clamp(1.05rem, 2.8vw, 1.25rem);
    font-weight: 700;
    color: var(--or-clair);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 1.75rem 0 0.85rem;
    line-height: 1.3;
}
.produit-cro-ingredients {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 0.5rem;
}
.produit-cro-ingredient {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    text-align: left;
}
.produit-cro-ingredient strong {
    display: block;
    color: var(--or-clair);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}
.produit-cro-ingredient span {
    font-size: 0.875rem;
    color: var(--gris-clair);
    line-height: 1.45;
}
.produit-cro-urgence {
    margin: 1.25rem 0;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.22);
    font-size: 0.875rem;
    color: var(--blanc-casse);
    text-align: center;
    line-height: 1.45;
}
.produit-cro-urgence strong {
    color: var(--or-clair);
}
.produit-cro-upsell {
    margin: 1.25rem 0;
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    text-align: center;
}
.produit-cro-upsell p {
    font-size: 0.9375rem;
    color: var(--gris-clair);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}
.produit-cro-upsell .produit-cta-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-fonce) 100%);
    color: #0a0a0a !important;
    border: none;
}
.produit-cro-reassurance {
    margin: 1.25rem 0 0.5rem;
}
.produit-cro-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}
@media (min-width: 520px) {
    .produit-cro-reassurance-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.produit-cro-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.55rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    color: rgba(245, 245, 245, 0.92);
    background: rgba(22, 22, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    line-height: 1.25;
}
.produit-cro-faq {
    margin-top: 1.5rem;
    text-align: left;
}
.produit-cro-faq details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.65rem 0;
}
.produit-cro-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--blanc-casse);
    list-style: none;
}
.produit-cro-faq summary::-webkit-details-marker {
    display: none;
}
.produit-cro-faq summary::after {
    content: '+';
    float: right;
    color: var(--or);
    font-weight: 700;
}
.produit-cro-faq details[open] summary::after {
    content: '−';
}
.produit-cro-faq p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gris-clair);
    line-height: 1.55;
}
.pack-cro-reassurance {
    margin-top: 1.5rem;
}
.pack-cro-reassurance .produit-cro-reassurance-grid {
    max-width: 720px;
    margin: 0 auto;
}
.produit-hero-subtitle {
    font-size: clamp(1rem, 2.8vw, 1.2rem);
    font-weight: 600;
    color: var(--gris-clair);
    margin-top: 0.35rem;
    line-height: 1.35;
    font-family: var(--font-texte);
}
