/**
 * ==========================================================
 * Maison Monéger — Style Principal
 * ==========================================================
 * 
 * Table des matières :
 * 1.  Variables & Reset
 * 2.  Typographie
 * 3.  Layout & Utilitaires
 * 4.  Header & Navigation
 * 5.  Menu Mobile
 * 6.  Hero Section
 * 7.  Sections alternées (Light / Force / Impact)
 * 8.  Section Histoire & Timeline
 * 9.  Section Produits (Aperçu accueil)
 * 10. Section Cocktails (Teaser accueil)
 * 11. Page Produits
 * 12. Page Cocktails
 * 13. Page Contact
 * 14. Ticker Band
 * 15. Footer
 * 16. Boutons
 * 17. Animations & Reveal
 * 18. Responsive
 */


/* ==========================================================
   1. VARIABLES & RESET
   ========================================================== */

:root {
    /* Couleurs */
    --bleu-marine: #002b53;
    --jaune-vif: #ffd400;
    --creme: #efe6db;
    --overlay: rgba(239, 230, 219, 0.4);
    --blanc: #ffffff;
    --noir: #111111;

    /* Typographie */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

    /* Espacements */
    --section-padding: 120px 0;
    --section-padding-mobile: 80px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;

    /* Header */
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--bleu-marine);
    background-color: var(--creme);
}

/* ==========================================================
   SCROLL SNAP CONTAINER
   ========================================================== */

#mainContainer {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    position: relative;
    z-index: 1;
    background: transparent;
}

#mainContainer.no-snap {
    scroll-snap-type: none;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
}

html.no-snap-page,
html.no-snap-page body {
    height: auto;
    overflow: auto;
}

html.no-snap-page .site-footer {
    position: relative;
    z-index: 1;
}

.snap-section {
    width: 100vw;
    height: 100vh;
    scroll-snap-align: start;
    overflow: hidden;
}

.footer-spacer {
    overflow: visible;
    background: transparent;
    scroll-snap-align: start;
    pointer-events: none;
}


/* ==========================================================
   AGE GATE POPUP
   ========================================================== */

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: url('../assets/images/design/bg-intro.webp') center / cover no-repeat var(--bleu-marine);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

html.age-verified .age-gate {
    display: none !important;
}

.age-gate-content {
    text-align: center;
    padding: 48px;
    background-color: #002b53;
}

.age-gate-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--creme);
    margin-bottom: 48px;
    line-height: 1.2;
}

.age-gate-btn {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--creme);
    background: transparent;
    border: 2px solid var(--creme);
    padding: 18px 48px;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background 0.3s ease, color 0.3s ease;
}

.age-gate-btn:hover {
    background: var(--creme);
    color: var(--bleu-marine);
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}


/* ==========================================================
   2. TYPOGRAPHIE
   ========================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
}

p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    max-width: 680px;
}


/* ==========================================================
   3. LAYOUT & UTILITAIRES
   ========================================================== */

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

.section-title {
    margin-bottom: 24px;
}

.section-intro {
    margin-bottom: 60px;
    opacity: 0.85;
}


/* ==========================================================
   4. HEADER & NAVIGATION
   ========================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(0, 43, 83, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Glassmorphism header — visible au sommet de la page */
#siteHeader.header-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.site-header.scrolled .nav-main a {
    color: var(--creme);
}

/* Header clair (pages intérieures) */
.site-header.header--light .nav-main a {
    color: #efe6db;
}

.site-header.header--light .logo-svg .logo-letter {
    fill: #efe6db;
}

.site-header.header--light .logo-svg .logo-border {
    fill: #0d355a;
}

.site-header.header--light .lang-switch {
    color: #efe6db;
    border-color: #efe6db;
}

.site-header.header--light .burger-btn span {
    background: #efe6db;
}

/* Au scroll, revenir aux couleurs normales */
.site-header.header--light.scrolled .nav-main a {
    color: var(--creme);
}

.site-header.header--light.scrolled .logo-svg .logo-letter {
    fill: var(--creme);
}

.site-header.header--light.scrolled .lang-switch {
    color: var(--jaune-vif);
    border-color: var(--jaune-vif);
}

.site-header.header--light.scrolled .burger-btn span {
    background: var(--creme);
}

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

.nav-main {
    display: flex;
    gap: 32px;
}

.nav-main a {
    color: var(--bleu-marine);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--jaune-vif);
    transition: var(--transition);
}

.nav-main a:hover::after {
    width: 100%;
}

/* Logo gauche */
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    text-decoration: none;
}

.logo-svg {
    height: 40px;
    width: auto;
}

.logo-svg .logo-border {
    fill: #efe6db;
}

.logo-svg .logo-letter {
    fill: var(--bleu-marine);
}

/* Sélecteur de langue */
.lang-switch {
    color: var(--jaune-vif);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: 1px solid var(--jaune-vif);
    padding: 4px 12px;
    border-radius: 2px;
    margin-left: 24px;
}

.lang-switch:hover {
    background: var(--jaune-vif);
    color: var(--bleu-marine);
}

body[data-page="accueil"] .lang-switch {
    color: #002b53;
    border: 1px solid #efe6db;
    background: #efe6db;
}


/* ==========================================================
   5. MENU MOBILE (Burger)
   ========================================================== */

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1010;
    padding: 8px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--creme);
    transition: var(--transition);
    border-radius: 2px;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bleu-marine);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    color: var(--creme);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.mobile-nav a:hover {
    color: var(--jaune-vif);
}

.mobile-lang-switch {
    margin-top: 24px;
    font-size: 0.9rem !important;
    font-family: var(--font-body) !important;
    border: 1px solid var(--jaune-vif);
    padding: 8px 24px;
    color: var(--jaune-vif) !important;
}


/* ==========================================================
   6. HERO SECTION
   ========================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    background: url('../assets/images/design/img-siteweb-02.webp') bottom right/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 60px) scale(1.2); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
    opacity: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-subtitle {
    color: var(--bleu-marine);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    color: #efe6db;
    margin-bottom: 40px;
    max-width: 800px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.84);
}

/* Decorative line under hero title */
.hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--jaune-vif);
    margin: 32px auto 0 0;
}


/* Hero social icons — right side vertical */
.hero-socials {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 3;
}

.hero-socials a {
    color: var(--bleu-marine);
    opacity: 0.6;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 43, 83, 0.3);
    border-radius: 50%;
}

.hero-socials a:hover {
    opacity: 1;
    border-color: var(--bleu-marine);
}


/* ==========================================================
   7. SECTIONS ALTERNÉES
   ========================================================== */

/* Section "lumière" — fond crème */
.section-light {
    background-color: var(--creme);
    color: var(--bleu-marine);
    padding: var(--section-padding);
}

/* Section "force" — fond bleu marine */
.section-force {
    background-color: var(--bleu-marine);
    color: var(--creme);
    padding: var(--section-padding);
}

.section-force .section-title {
    color: var(--creme);
}

.section-force .section-intro {
    color: var(--creme);
    opacity: 0.75;
}

/* Section "impact" — fond jaune */
.section-impact {
    background-color: var(--jaune-vif);
    color: var(--bleu-marine);
    padding: var(--section-padding);
}

.section-impact .section-title {
    color: var(--bleu-marine);
}


/* ==========================================================
   8. SECTION HISTOIRE & TIMELINE
   ========================================================== */

.section-histoire {
    text-align: center;
}

.section-histoire .section-intro {
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================
   8b. TIMELINE FULLSCREEN (Scroll Snap)
   ========================================================== */

.timeline-fullscreen {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.timeline-fs-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.timeline-fs-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.timeline-fs-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    min-width: 120%;
    min-height: 120%;
    transform: translate(-50%, -50%);
    border: 0;
}

.timeline-fs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.timeline-fs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 31, 63, 0.85) 0%,
        rgba(0, 31, 63, 0.5) 50%,
        rgba(0, 31, 63, 0.15) 100%
    );
    z-index: 1;
}

.timeline-fs-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 0 0 calc((100vw - var(--container-width)) / 2 + 24px);
    padding: 0 24px;
}

.timeline-fs-year {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--jaune-vif);
    line-height: 1;
    margin-bottom: 24px;
}

.timeline-fs-text {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--creme);
    opacity: 0.9;
    max-width: 500px;
}

@media (max-width: 768px) {
    .timeline-fs-content {
        margin: 0 auto;
        text-align: center;
    }

    .timeline-fs-overlay {
        background: rgba(0, 31, 63, 0.75);
    }
}

.timeline-fs-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--creme);
    line-height: 1.1;
    margin-bottom: 24px;
}


/* ==========================================================
   8c. TIMELINE GROUPS (2 contenus par section)
   ========================================================== */

/* --- YouTube Background Player (API IFrame) --- */
.yt-bg-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    min-width: 120%;
    min-height: 120%;
    transform: translate(-50%, -50%);
}

.yt-bg-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

/* --- Section 1 : Aux origines (fond crème, contenu centré) --- */
.timeline-origines {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bleu-marine);
    overflow: hidden;
}

.timeline-origines-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.timeline-origines-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    min-width: 120%;
    min-height: 120%;
    transform: translate(-50%, -50%);
    border: 0;
}

.timeline-origines-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 31, 63, 0.75);
    z-index: 1;
}

.timeline-origines-inner {
    max-width: var(--container-width);
    width: 100%;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-origines-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--creme);
    margin-bottom: 60px;
}

.timeline-origines-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    text-align: left;
}

.timeline-origines-col {
    border-left: 2px solid var(--jaune-vif);
    padding-left: 24px;
}

.timeline-origines-year {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--jaune-vif);
    line-height: 1;
    margin-bottom: 16px;
}

.timeline-origines-col p {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--creme);
    opacity: 0.85;
    max-width: 440px;
}

/* --- Section 2 : L'âge d'or (fond bleu, contenu à droite) --- */
.timeline-agedor {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bleu-marine);
    overflow: hidden;
}

.timeline-agedor-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.timeline-agedor-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    min-width: 120%;
    min-height: 120%;
    transform: translate(-50%, -50%);
    border: 0;
}

.timeline-agedor-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 31, 63, 0.75);
    z-index: 1;
}

.timeline-agedor-inner {
    max-width: var(--container-width);
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    position: relative;
    z-index: 2;
}

.timeline-agedor-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--creme);
    margin-bottom: 60px;
}

.timeline-agedor-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    text-align: right;
    max-width: 700px;
}

.timeline-agedor-col {
    border-right: 2px solid var(--creme);
    padding-right: 24px;
    border-left: none;
    padding-left: 0;
}

.timeline-agedor-year {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--creme);
    line-height: 1;
    margin-bottom: 16px;
}

.timeline-agedor-col p {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--creme);
    opacity: 0.85;
    max-width: 440px;
}

/* --- Ancien timeline-group (conservé pour compatibilité) --- */

.timeline-group {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-group-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: var(--container-width);
    width: 100%;
    padding: 0 24px;
    align-items: center;
    height: 100%;
}

.timeline-group-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 60px 0;
}

.timeline-group-text .section-title {
    color: var(--creme);
    margin-bottom: 16px;
}

.timeline-group-text .section-intro {
    color: var(--creme);
    opacity: 0.8;
    margin-bottom: 40px;
}

.timeline-group-dates {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-group-date {
    border-left: 2px solid var(--jaune-vif);
    padding-left: 20px;
}

.timeline-group-year {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--jaune-vif);
    line-height: 1;
    margin-bottom: 8px;
}

.timeline-group-date p {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--creme);
    opacity: 0.85;
    max-width: 440px;
}

.timeline-group-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    padding: 40px 0;
    justify-content: center;
}

.timeline-group-img {
    border-radius: 4px;
    overflow: hidden;
    flex: 1;
    max-height: 40vh;
}

.timeline-group-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .timeline-origines-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline-agedor-cols {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }

    .timeline-agedor-inner {
        width: 100%;
        padding: 0 24px;
        text-align: center;
    }

    .timeline-group-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 24px;
    }

    .timeline-group-images {
        flex-direction: row;
        padding: 0;
    }

    .timeline-group-img {
        max-height: 25vh;
    }
}


/* ==========================================================
   SECTION VISAGE (Vidéo background)
   ========================================================== */

.section-visage {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.visage-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #000;
}

.visage-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 177.78vh;
    height: 56.25vw;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.visage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 31, 63, 0.85) 0%,
        rgba(0, 31, 63, 0.6) 50%,
        rgba(0, 31, 63, 0.2) 100%
    );
    z-index: 1;
}

.visage-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 80px 24px;
    max-width: 650px;
    margin: 0 auto 0 calc((100vw - var(--container-width)) / 2 + 24px);
}

.visage-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--creme);
    margin-bottom: 24px;
    line-height: 1.2;
}

.visage-text {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--creme);
    opacity: 0.85;
    max-width: 580px;
}

@media (max-width: 768px) {
    .visage-content {
        margin: 0 auto;
        padding: 60px 24px;
    }

    .visage-overlay {
        background: rgba(0, 31, 63, 0.75);
    }
}


.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Ligne verticale de fond (statique) */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: var(--line-top, 50%);
    bottom: var(--line-bottom, 50%);
    width: 2px;
    background: var(--creme);
    opacity: 0.15;
    transform: translateX(-50%);
}

/* Ligne de progression (dynamique via JS) */
.timeline-progress {
    position: absolute;
    left: 50%;
    top: var(--line-top, 50%);
    width: 2px;
    height: 0;
    max-height: calc(100% - var(--line-top, 50%) - var(--line-bottom, 50%));
    background: linear-gradient(to bottom, var(--jaune-vif), var(--creme));
    transform: translateX(-50%);
    z-index: 1;
    will-change: height;
}

/* Item timeline — grille 3 colonnes */
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 24px 1fr;
    gap: 32px;
    align-items: center;
    padding: 40px 0;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
}

/* Colonnes gauche / droite */
.timeline-left,
.timeline-right {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-left {
    text-align: right;
    transform: translateX(-50px);
}

.timeline-right {
    text-align: left;
    transform: translateX(50px);
}

.timeline-item.visible .timeline-left {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item.visible .timeline-right {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.15s;
}

/* Point central */
.timeline-dot {
    width: 14px;
    height: 14px;
    background: var(--jaune-vif);
    border: 3px solid var(--creme);
    border-radius: 50%;
    z-index: 2;
    justify-self: center;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
    transition-delay: 0.3s;
}

.timeline-item.visible .timeline-dot {
    opacity: 1;
    transform: scale(1);
}

.timeline-item.visible:hover .timeline-dot {
    transform: scale(1.4);
    box-shadow: 0 0 0 6px rgba(255, 212, 0, 0.25);
}

/* Année */
.timeline-year {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--creme);
    line-height: 1;
    white-space: nowrap;
    opacity: 0.9;
    display: block;
    margin-bottom: 12px;
}

/* Texte */
.timeline-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Image placeholder */
.timeline-img {
    overflow: hidden;
    border-radius: 6px;
}

.timeline-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.05);
}


/* ==========================================================
   9. SECTION PRODUITS (Aperçu Accueil)
   ========================================================== */

.section-produits-preview {
    text-align: center;
    background-color: #ddd2c7;
}

.section-produits-preview .section-intro {
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid .product-card {
    width: 24%;
}

.product-card {
    text-align: center;
}

.product-card-image {
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 4px;
    display: flex;
    justify-content: center;
}

.product-card-image img {
    width: 80%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
    text-transform: none;
}

.product-card-price {
    color: var(--bleu-marine);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

/* Placeholders produits (à remplacer par les vraies images) */
.product-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-rouge {
    background: linear-gradient(145deg, #8b1a1a 0%, #5c0000 50%, #3d0000 100%);
}

.product-jaune {
    background: linear-gradient(145deg, #c9a800 0%, #9e8400 50%, #6b5a00 100%);
}


/* ==========================================================
   9b. SECTION HERITAGE (Accueil — Image pleine + texte)
   ========================================================== */

.section-heritage {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.heritage-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.heritage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.heritage-content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
}

.heritage-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--blanc);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.heritage-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--creme);
    opacity: 0.9;
}

.heritage-cta {
    display: inline-block;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--jaune-vif);
    text-decoration: none;
    transition: var(--transition);
}

.heritage-cta:hover {
    opacity: 0.75;
    transform: translateX(6px);
}


/* ==========================================================
   10. SECTION COCKTAILS (Teaser Accueil) — Video background
   ========================================================== */

.section-cocktails-preview {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cocktails-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #000;
}

.cocktails-video-bg .yt-bg-player {
    width: 177.78vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
}

.cocktails-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 177.78vh;
    height: 56.25vw;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.cocktails-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 31, 63, 0.65);
    z-index: 1;
}

.cocktails-center-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cocktails-center-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--jaune-vif);
}

.cocktails-center-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--creme);
}

.cocktails-center-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--creme);
    opacity: 0.8;
    max-width: 560px;
}

.cocktails-split-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bleu-marine);
    opacity: 0.6;
}

.cocktails-split-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--bleu-marine);
    text-transform: uppercase;
}

.cocktails-split-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--bleu-marine);
    opacity: 0.8;
    max-width: 480px;
}

/* — Côté vidéo (droite) — */
.cocktails-split-video {
    width: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: 600px;
}

.cocktails-split-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 177.78vh; /* 16:9 ratio */
    height: 56.25vw; /* 16:9 ratio */
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}


/* ==========================================================
   11. PAGE PRODUITS
   ========================================================== */

.page-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header--cocktails {
    background: url('/assets/images/design/bg-cocktail-pdt.webp') center center / cover no-repeat;
    position: relative;
    justify-content: flex-start;
}

.page-header--cocktails::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 31, 63, 0.85) 0%,
        rgba(0, 31, 63, 0.5) 50%,
        rgba(0, 31, 63, 0.15) 100%
    );
    z-index: 0;
}

.page-header--cocktails .container {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 600px;
    margin: 0 0 0 calc((100vw - var(--container-width)) / 2 + 24px);
    padding: 0 24px;
}

.page-header--produits {
    background: url('/assets/images/produits/bg-page-pdt.webp') center center / cover no-repeat;
    position: relative;
    justify-content: flex-start;
}

.page-header--produits::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 31, 63, 0.85) 0%,
        rgba(0, 31, 63, 0.5) 50%,
        rgba(0, 31, 63, 0.15) 100%
    );
    z-index: 0;
}

.page-header--produits .container {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 600px;
    margin: 0 0 0 calc((100vw - var(--container-width)) / 2 + 24px);
    padding: 0 24px;
}

.page-header--contact {
    background: url('/assets/images/design/image-hero-contact.webp') center center / cover no-repeat;
    position: relative;
}

.page-header--contact .container {
    position: relative;
    z-index: 1;
}

.page-header--contact .page-title,
.page-header--contact .page-intro {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.84);
}

.page-title {
    margin-bottom: 16px;
}

.page-intro {
    margin: 0 auto;
    opacity: 0.75;
}

.product-detail {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-row-reverse {
    direction: rtl;
}

.product-row-reverse > * {
    direction: ltr;
}

.product-placeholder-lg {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    max-width: 450px;
}

.product-img-lg {
    width: 45%;
    height: auto;
    display: block;
}

.product-img-livre {
    width: 100%;
}

.product-livre {
    background: linear-gradient(145deg, var(--bleu-marine) 0%, #003d6b 50%, #001a33 100%);
}

.product-volume {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    opacity: 0.6;
    display: block;
    margin-bottom: 12px;
}

.product-name {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.product-desc {
    margin-bottom: 28px;
    opacity: 0.8;
    line-height: 1.8;
}

.product-price {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0px;
    margin-bottom: 32px;
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
}

.section-force .product-price {
    color: var(--jaune-vif);
}

.section-light .product-price {
    color: var(--bleu-marine);
}

.product-price-tax {
    font-size: 0.45em;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.55;
    margin-top: 0.15em;
    line-height: 1;
}

.product-image {
    display: flex;
    justify-content: center;
}


/* ==========================================================
   12. PAGE COCKTAILS
   ========================================================== */

/* --- Cocktail Slider (carousel style JD) --- */
.cocktail-slider-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.cocktail-slider-section--video .container,
.cocktail-slider-section--video .cocktail-slider {
    position: relative;
    z-index: 2;
}

.cocktail-section-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.cocktail-section-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    min-width: 120%;
    min-height: 120%;
    transform: translate(-50%, -50%);
    border: 0;
}

.cocktail-section-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 31, 63, 0.75);
    z-index: 1;
}

/* Titre de section (Rouge / Jaune) */
.cocktail-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    padding-top: 60px;
}

.section-force .cocktail-section-heading {
    color: var(--creme);
}

.section-light .cocktail-section-heading {
    color: var(--bleu-marine);
}

.cocktail-slider {
    position: relative;
    width: 100%;
}

.cocktail-slider-track {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 60px 48px 60px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
}

.cocktail-slider-track.is-dragging {
    cursor: grabbing;
    transition: none;
}

.cocktail-slide {
    flex: 0 0 400px;
    min-width: 280px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(239, 230, 219, 0.05);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.5;
    transform: scale(0.82);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.cocktail-slide.is-active {
    opacity: 1;
    transform: scale(1.08);
}

.cocktail-slide-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.cocktail-slide-img .cocktail-slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        145deg,
        rgba(255, 212, 0, 0.25) 0%,
        rgba(0, 43, 83, 0.35) 50%,
        rgba(139, 26, 26, 0.25) 100%
    );
}

.cocktail-slide-placeholder--rouge {
    background: linear-gradient(
        145deg,
        rgba(139, 26, 26, 0.35) 0%,
        rgba(0, 43, 83, 0.3) 50%,
        rgba(255, 212, 0, 0.15) 100%
    ) !important;
}

.cocktail-slide-placeholder--jaune {
    background: linear-gradient(
        145deg,
        rgba(255, 212, 0, 0.35) 0%,
        rgba(0, 43, 83, 0.2) 50%,
        rgba(239, 230, 219, 0.2) 100%
    ) !important;
}

.cocktail-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cocktail-slide.is-active .cocktail-slide-img img {
    transform: scale(1.03);
}

.cocktail-slide-content {
    padding: 24px;
}

.cocktail-slide-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--creme);
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.2;
}

.cocktail-slide-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--creme);
    opacity: 0;
    margin-bottom: 12px;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cocktail-slide.is-active .cocktail-slide-subtitle {
    opacity: 0.6;
    visibility: visible;
}

.cocktail-slide.is-active .cocktail-slide-name {
    font-size: 1.6rem;
}

/* Variante Jaune (section-light) */
.cocktail-slide--jaune .cocktail-slide-name {
    color: #efe6db;
}

.cocktail-slide--jaune .cocktail-slide-subtitle {
    color: #efe6db;
}

.cocktail-slide--jaune .cocktail-slide-cta {
    color: #efe6db;
}

.cocktail-slide--jaune .cocktail-slide-cta:hover {
    color: var(--jaune-vif);
}

.section-light .cocktail-slider-arrow {
    border-color: rgba(0, 43, 83, 0.3);
    color: var(--bleu-marine);
}

.section-light .cocktail-slider-arrow:hover {
    border-color: var(--bleu-marine);
    color: var(--bleu-marine);
}

.cocktail-slide-cta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--creme);
    opacity: 0;
    text-decoration: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    visibility: hidden;
}

.cocktail-slide.is-active .cocktail-slide-cta {
    opacity: 0.6;
    visibility: visible;
}

.cocktail-slide-cta:hover {
    opacity: 1;
    color: var(--jaune-vif);
}

/* Flèches navigation slider */
.cocktail-slider-nav {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    padding: 0 48px;
}

.cocktail-slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(239, 230, 219, 0.3);
    background: transparent;
    color: var(--creme);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cocktail-slider-arrow:hover {
    border-color: var(--jaune-vif);
    color: var(--jaune-vif);
}

/* --- Détails recettes --- */
.cocktail-detail {
    padding: var(--section-padding);
}

.cocktail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cocktail-row-reverse {
    direction: rtl;
}

.cocktail-row-reverse > * {
    direction: ltr;
}

.cocktail-image {
    display: flex;
    justify-content: center;
}

.cocktail-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    background: linear-gradient(
        145deg,
        rgba(255, 212, 0, 0.2) 0%,
        rgba(0, 43, 83, 0.3) 50%,
        rgba(139, 26, 26, 0.2) 100%
    );
    max-width: 500px;
}

.section-force .cocktail-placeholder {
    background: linear-gradient(
        145deg,
        rgba(239, 230, 219, 0.15) 0%,
        rgba(255, 212, 0, 0.1) 50%,
        rgba(239, 230, 219, 0.08) 100%
    );
}

.cocktail-name {
    font-family: var(--font-heading);
    margin-bottom: 32px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.cocktail-recipe h3 {
    margin-bottom: 12px;
    font-size: 0.85rem;
    opacity: 0.6;
}

.section-force .cocktail-recipe h3 {
    color: var(--jaune-vif);
    opacity: 1;
}

.cocktail-ingredients {
    margin-bottom: 28px;
}

.cocktail-ingredients li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 43, 83, 0.08);
    font-size: 0.95rem;
}

.section-force .cocktail-ingredients li {
    border-bottom-color: rgba(239, 230, 219, 0.1);
}

.cocktail-steps {
    line-height: 1.9;
    opacity: 0.8;
}


/* --- Page Cocktail Individuelle --- */
.cocktail-single {
    padding: var(--section-padding);
    min-height: 80vh;
}

.cocktail-back {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--creme);
    opacity: 0.6;
    text-decoration: none;
    margin-bottom: 48px;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.cocktail-back:hover {
    opacity: 1;
    color: var(--jaune-vif);
}

.cocktail-single-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.cocktail-single-image {
    display: flex;
    justify-content: center;
}

.cocktail-placeholder-single {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    max-width: 450px;
    background: linear-gradient(
        145deg,
        rgba(239, 230, 219, 0.15) 0%,
        rgba(255, 212, 0, 0.1) 50%,
        rgba(239, 230, 219, 0.08) 100%
    );
}

.cocktail-single-image img {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
}

.cocktail-single-name {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--creme);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 8px;
}

.cocktail-single-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--creme);
    opacity: 0.6;
    margin-bottom: 40px;
}

.cocktail-single-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--jaune-vif);
    margin-bottom: 20px;
}

.cocktail-single-list {
    list-style: none;
    padding: 0;
}

.cocktail-single-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(239, 230, 219, 0.1);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--creme);
    font-weight: 300;
}

.cocktail-single-bottom {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 0;
}

.cocktail-single-bottom .cocktail-single-label {
    margin-bottom: 24px;
}

.cocktail-single-steps {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 2;
    color: var(--creme);
    opacity: 0.8;
    text-align: center;
}


/* ==========================================================
   13. PAGE CONTACT
   ========================================================== */

.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bleu-marine);
    opacity: 0.7;
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 16px 20px;
    border: 2px solid rgba(0, 43, 83, 0.12);
    background: rgba(255, 255, 255, 0.5);
    color: var(--bleu-marine);
    border-radius: 4px;
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--bleu-marine);
    background: var(--blanc);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--bleu-marine);
    opacity: 0.3;
}

.form-success {
    background: var(--bleu-marine);
    color: var(--jaune-vif);
    padding: 20px 28px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 16px;
}

.contact-info-block h3 {
    margin-bottom: 8px;
    font-size: 0.8rem;
    opacity: 0.5;
}

.contact-info-block a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--bleu-marine);
    border-bottom: 1px solid transparent;
}

.contact-info-block a:hover {
    border-bottom-color: var(--bleu-marine);
}

.contact-socials {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 43, 83, 0.2);
    color: var(--bleu-marine);
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    border-color: var(--jaune-vif);
    color: var(--jaune-vif);
    background: var(--bleu-marine);
}


/* ==========================================================
   13b. SECTION NEWSLETTER (CTA Inscription)
   ========================================================== */

.section-newsletter {
    background: var(--jaune-vif);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--bleu-marine);
    text-transform: none;
    font-style: normal;
    margin-bottom: 16px;
}

.newsletter-desc {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--bleu-marine);
    opacity: 0.65;
    max-width: 560px;
}

.newsletter-action {
    flex-shrink: 0;
}

.btn-newsletter {
    display: inline-block;
    padding: 20px 48px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--creme);
    background: var(--bleu-marine);
    border: none;
    text-decoration: none;
    transition: var(--transition);
}

.btn-newsletter:hover {
    background: #001f3f;
    transform: translateY(-2px);
}


/* ==========================================================
   14. TICKER BAND
   ========================================================== */

.ticker-band {
    background: var(--jaune-vif);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    animation: tickerScroll 30s linear infinite;
}

.ticker-track span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    color: var(--bleu-marine);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0 4px;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ==========================================================
   15. FOOTER
   ========================================================== */

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: var(--bleu-marine);
    color: var(--creme);
    padding: 40px 0 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Colonne gauche */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: block;
    margin-bottom: 0px;
    text-decoration: none;
}

.footer-logo-svg {
    height: 50px;
    width: auto;
}

.footer-logo-svg .logo-border {
    fill: var(--jaune-vif);
}

.footer-logo-svg .logo-letter {
    fill: var(--bleu-marine);
}

.footer-tagline {
    opacity: 0.6;
    font-size: 0.9rem;
    margin-bottom: 28px;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(239, 230, 219, 0.2);
    color: var(--creme);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    border-color: var(--jaune-vif);
    color: var(--jaune-vif);
}

/* Colonne droite */
.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--jaune-vif);
    margin-bottom: 24px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    font-size: 0.95rem;
    opacity: 0.7;
    text-decoration: none;
    color: var(--creme);
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--jaune-vif);
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 24px 24px;
    border-top: 1px solid rgba(239, 230, 219, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.footer-bottom-text {
    font-size: 0.75rem;
    color: #efe6db;
    opacity: 0.5;
    font-style: italic;
    max-width: 100%;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    border-top: 1px solid rgba(239, 230, 219, 0.1);
    padding-top: 16px;
    width: 100%;
}

.footer-legal-links a {
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-legal-links a:hover {
    opacity: 1;
}


/* ==========================================================
   16. BOUTONS
   ========================================================== */

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 40px;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

/* Bouton primaire : fond jaune, texte bleu */
.btn-primary {
    background: var(--jaune-vif);
    color: var(--bleu-marine);
    border-color: var(--jaune-vif);
}

.btn-primary:hover {
    background: transparent;
    color: var(--jaune-vif);
    border-color: var(--jaune-vif);
}

/* Bouton secondaire : fond bleu, texte crème */
.btn-secondary {
    background: var(--bleu-marine);
    color: var(--creme);
    border-color: var(--bleu-marine);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--bleu-marine);
}

/* Bouton dark : fond bleu, texte crème */
.btn-dark {
    background: var(--bleu-marine);
    color: var(--creme);
    border-color: var(--bleu-marine);
}

.btn-dark:hover {
    background: transparent;
    color: var(--bleu-marine);
    border-color: var(--bleu-marine);
}


/* ==========================================================
   DOTS NAVIGATION (indicateur sections)
   ========================================================== */

.dots-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: opacity 0.4s ease;
}

.dots-nav.dots-nav--hidden {
    opacity: 0;
    pointer-events: none;
}

.dots-nav-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.dots-nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.4);
}

.dots-nav-dot.is-active {
    background: var(--blanc);
    transform: scale(1.7);
}

/* Sur fond clair, dots sombres */
.dots-nav.dots-nav--light .dots-nav-dot {
    background: rgba(0, 43, 83, 0.25);
}

.dots-nav.dots-nav--light .dots-nav-dot:hover {
    background: rgba(0, 43, 83, 0.5);
}

.dots-nav.dots-nav--light .dots-nav-dot.is-active {
    background: var(--bleu-marine);
}

@media (max-width: 768px) {
    .dots-nav {
        right: 12px;
        gap: 8px;
    }

    .dots-nav-dot {
        width: 6px;
        height: 6px;
    }
}


/* ==========================================================
   17. ANIMATIONS & REVEAL
   ========================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Délais pour éléments multiples */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }


/* ==========================================================
   18. RESPONSIVE
   ========================================================== */

/* Tablette */
@media (max-width: 1024px) {
    .product-row,
    .cocktail-row {
        gap: 48px;
    }

    .footer-inner {
        gap: 48px;
    }

    .contact-grid {
        gap: 48px;
    }

    .cocktail-slide {
        flex: 0 0 260px;
        min-width: 220px;
    }

    .cocktail-slide.is-active {
        flex: 0 0 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Header */
    .nav-main,
    .lang-switch {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .header-logo {
        margin: 0;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-socials {
        display: none;
    }

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

    /* Sections */
    .section-light,
    .section-force,
    .section-impact {
        padding: var(--section-padding-mobile);
    }

    /* Heritage */
    .section-heritage {
        min-height: auto;
        flex-direction: column;
    }

    .heritage-image {
        position: relative;
        height: 50vh;
    }

    .heritage-content {
        width: 100%;
        padding: 48px 24px;
        background: var(--bleu-marine);
    }

    .page-header {
        padding-top: calc(var(--header-height) + 48px);
        padding-bottom: 48px;
    }

    /* Timeline mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-progress {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 24px 1fr;
        gap: 20px;
        padding: 24px 0;
    }

    .timeline-left {
        display: none;
    }

    .timeline-item .timeline-dot {
        grid-row: 1;
        grid-column: 1;
    }

    .timeline-right {
        grid-column: 2;
        text-align: left;
        transform: translateX(30px);
    }

    /* Afficher le contenu gauche dans la colonne droite sur mobile */
    .timeline-item:nth-child(odd) .timeline-left,
    .timeline-item:nth-child(even) .timeline-left {
        display: none;
    }

    /* On duplique le contenu texte via un attribut — ou on montre le right qui contient déjà le texte pour les pairs */
    /* Pour les items impairs (texte à gauche), on affiche le right qui a l'image */
    /* Solution : on déplace visuellement tout dans la 2e colonne */

    .timeline-year {
        font-size: 1.8rem;
    }

    .timeline-text {
        max-width: 100%;
    }

    /* Produits accueil */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
    }

    /* Page produits */
    .product-row,
    .product-row-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .product-placeholder-lg {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Page cocktails */
    .cocktail-row,
    .cocktail-row-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .cocktail-placeholder {
        max-width: 100%;
    }

    /* Cocktail slider mobile */
    .cocktail-slider-track {
        padding: 40px 24px;
        gap: 16px;
    }

    .cocktail-slide {
        flex: 0 0 220px;
        min-width: 200px;
    }

    .cocktail-slide.is-active {
        flex: 0 0 300px;
    }

    .cocktail-slider-nav {
        padding: 0 24px;
    }

    .cocktail-slider-arrow {
        width: 40px;
        height: 40px;
    }

    /* Page cocktail individuelle mobile */
    .cocktail-single-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 48px;
    }

    .cocktail-placeholder-single {
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }

    .cocktail-single-image img {
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }

    .cocktail-single-name {
        text-align: center;
    }

    /* Cocktails split (accueil) */
    .cocktails-split {
        flex-direction: column;
        min-height: auto;
    }

    .cocktails-split-text {
        width: 100%;
        padding: 56px 24px;
    }

    .cocktails-split-video {
        width: 100%;
        min-height: 300px;
    }

    .cocktails-split-video iframe {
        width: 200vw;
        height: 200vh;
    }

    /* Newsletter */
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .newsletter-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .newsletter-desc {
        max-width: 100%;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }

    .footer-bottom-text {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 16px;
    }

    /* Ticker */
    .ticker-track span {
        font-size: 0.85rem;
    }

    /* ============================
       ACCUEIL — MOBILE
       ============================ */

    /* Snap sections : hauteur adaptée aux navigateurs mobiles */
    .snap-section {
        height: 100svh;
    }

    /* --- Hero mobile --- */
    .hero {
        justify-content: center;
        text-align: center;
        background-image: url('../assets/images/design/bg-hero-page-accueil-responsive.webp');
        background-position: center center;
    }

    .hero-content {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title::after {
        margin: 24px auto 0;
    }

    .hero-subtitle {
        letter-spacing: 0.15em;
    }

    /* --- Aux origines (mobile) --- */
    .timeline-origines-inner {
        padding: 0 20px;
    }

    .timeline-origines-title {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 36px;
    }

    .timeline-origines-year {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .timeline-origines-col p {
        font-size: 0.9rem;
        max-width: 100%;
    }

    /* --- L'âge d'or (mobile) --- */
    .timeline-agedor-inner {
        align-items: center;
    }

    .timeline-agedor-title {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 36px;
    }

    .timeline-agedor-col {
        border-right: none;
        padding-right: 0;
        border-left: 2px solid var(--creme);
        padding-left: 24px;
        text-align: left;
    }

    .timeline-agedor-cols {
        text-align: left;
    }

    .timeline-agedor-year {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .timeline-agedor-col p {
        font-size: 0.9rem;
        max-width: 100%;
    }

    /* --- 2023 / Visage Liza (mobile) --- */
    .timeline-fullscreen {
        justify-content: center;
    }

    .timeline-fs-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .timeline-fs-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .timeline-fs-text {
        font-size: 0.95rem;
        max-width: 100%;
    }

    /* --- Section Visage (mobile) --- */
    .section-visage {
        justify-content: center;
    }

    .visage-content {
        margin: 0 auto;
        padding: 40px 20px;
        text-align: center;
        max-width: 100%;
    }

    .visage-text {
        max-width: 100%;
    }

    /* --- Heritage (mobile) --- */
    .heritage-image img {
        object-position: center;
    }

    .heritage-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .heritage-subtitle {
        font-size: 0.95rem;
    }

    /* --- Cocktails preview (mobile) --- */
    .section-cocktails-preview {
        min-height: 100svh;
    }

    .cocktails-center-content {
        padding: 60px 20px;
        gap: 20px;
    }

    .cocktails-center-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .cocktails-center-desc {
        font-size: 0.9rem;
        max-width: 100%;
    }

    /* Page produits : scroll normal sur mobile */
    body[data-page="produits"] #mainContainer {
        scroll-snap-type: none;
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }

    body[data-page="produits"] .snap-section {
        height: auto;
        min-height: auto;
        scroll-snap-align: none;
        overflow: visible;
    }

    body[data-page="produits"] .page-header--produits {
        height: 100svh;
        min-height: 100svh;
        background-image: url('/assets/images/design/bg-produit-hero-img-responsive.webp');
    }

    body[data-page="contact"] .page-header--contact {
        height: 100svh;
        min-height: 100svh;
        background-image: url('/assets/images/design/bg-hero-page-contact-responsive.webp');
    }

    body[data-page="contact"] #mainContainer {
        scroll-snap-type: none;
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }

    body[data-page="contact"] .snap-section {
        height: auto;
        min-height: auto;
        scroll-snap-align: none;
        overflow: visible;
    }

    body[data-page="contact"] .snap-section.page-header--contact {
        height: 100svh;
        min-height: 100svh;
    }

    body[data-page="contact"] .site-footer {
        position: relative;
        z-index: 1;
    }

    body[data-page="produits"] .site-footer {
        position: relative;
        z-index: 1;
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.7rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.8rem;
    }

    .product-name {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    /* Accueil — petit mobile */
    .timeline-origines-title,
    .timeline-agedor-title,
    .timeline-fs-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 28px;
    }

    .timeline-origines-year,
    .timeline-agedor-year {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .timeline-origines-cols,
    .timeline-agedor-cols {
        gap: 28px;
    }

    .timeline-origines-col p,
    .timeline-agedor-col p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .heritage-title {
        font-size: clamp(1.4rem, 5.5vw, 1.8rem);
    }

    .heritage-content {
        padding: 36px 20px;
        gap: 16px;
    }

    .cocktails-center-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}


/* ==========================================================
   PANIER & CHECKOUT
   ========================================================== */

/* Lien panier dans le header */
.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bleu-marine);
    margin-left: 24px;
    width: 32px;
    height: 32px;
    transition: var(--transition);
}

.cart-link:hover {
    color: var(--jaune-vif);
}

/* Header sur fond sombre (pages intérieures + scroll) : icône claire */
.site-header.header--light .cart-link,
.site-header.scrolled .cart-link {
    color: var(--creme);
}

.site-header.header--light .cart-link:hover,
.site-header.scrolled .cart-link:hover {
    color: var(--jaune-vif);
}

/* Header sur fond crème (panier, checkout) : tout en bleu marine pour rester lisible */
.site-header.header--cream .nav-main a {
    color: #efe6db;
}

.site-header.header--cream .cart-link {
    color: #efe6db;
}

.site-header.header--cream .lang-switch {
    color: #efe6db;
    border-color: #efe6db;
}

.site-header.header--cream .lang-switch:hover {
    background: var(--bleu-marine);
    color: var(--creme);
}

.site-header.header--cream .logo-svg .logo-letter {
    fill: var(--bleu-marine);
}

.site-header.header--cream .burger-btn span {
    background: var(--bleu-marine);
}

/* Au scroll, le header devient bleu marine — on bascule sur les couleurs claires */
.site-header.header--cream.scrolled .nav-main a,
.site-header.header--cream.scrolled .logo-svg .logo-letter {
    color: var(--creme);
    fill: var(--creme);
}

.site-header.header--cream.scrolled .lang-switch {
    color: var(--jaune-vif);
    border-color: var(--jaune-vif);
}

.site-header.header--cream.scrolled .lang-switch:hover {
    background: var(--jaune-vif);
    color: var(--bleu-marine);
}

.site-header.header--cream.scrolled .burger-btn span {
    background: var(--creme);
}

.cart-icon {
    display: block;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--jaune-vif);
    color: var(--bleu-marine);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-sizing: border-box;
}

/* En-tête de page panier (mêmes codes que --produits mais sans bg image) */
.page-header--panier {
    background: var(--bleu-marine);
    position: relative;
    justify-content: flex-start;
    color: var(--creme);
}

.page-header--panier .container {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 600px;
    margin: 0 0 0 calc((100vw - var(--container-width)) / 2 + 24px);
    padding: 0 24px;
}

.page-header--panier .page-title,
.page-header--panier .page-intro {
    color: var(--creme);
}

/* Etat vide */
.cart-empty {
    text-align: center;
    padding: 60px 0;
}

.cart-empty p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: var(--bleu-marine);
}

/* Erreur */
.cart-error {
    background: #ffe9e9;
    border: 1px solid #c33;
    color: #a01818;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    text-align: center;
}

/* Liste des lignes panier */
.cart-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    border-top: 1px solid var(--bleu-marine);
}

.cart-row {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 43, 83, 0.15);
}

.cart-row-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.cart-row-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-row-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--bleu-marine);
    margin: 0;
}

.cart-row-volume {
    font-size: 0.8rem;
    color: var(--bleu-marine);
    opacity: 0.7;
}

.cart-row-unit {
    font-size: 0.9rem;
    color: var(--bleu-marine);
}

.cart-row-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-row-qty input[type="number"] {
    width: 60px;
    padding: 8px;
    border: 2px solid var(--bleu-marine);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: bold;
    text-align: center;
    background: #efe6db;
}

.cart-row-qty .btn-link {
    background: none;
    border: none;
    color: var(--bleu-marine);
    text-decoration: underline;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 4px 0;
}

.cart-row-qty .btn-link:hover {
    color: var(--jaune-vif);
}

.cart-row-total {
    font-weight: 600;
    color: var(--bleu-marine);
    min-width: 80px;
    text-align: right;
}

.cart-row-remove .btn-remove {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--bleu-marine);
    opacity: 0.4;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: var(--transition);
}

.cart-row-remove .btn-remove:hover {
    opacity: 1;
    color: #c33;
}

/* Récap + actions */
.cart-summary {
    border-top: 2px solid var(--bleu-marine);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--bleu-marine);
}

.cart-summary-total strong {
    font-size: 1.6rem;
    font-weight: 700;
}

.cart-summary-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cart-summary-actions form {
    margin: 0;
}

/* Pages success / cancel — layout split */
.checkout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
}

.checkout-split-image {
    display: flex;
    justify-content: flex-end;
}

.checkout-split-image img {
    width: 75%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.checkout-split-content {
    text-align: left;
}

.checkout-split-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #efe6db;
    margin-bottom: 16px;
}

.checkout-split-content p {
    color: #efe6db;
    font-size: 1.05rem;
    margin-bottom: 12px;
    max-width: 560px;
}

.checkout-split-content .checkout-amount {
    font-weight: 600;
    margin-bottom: 32px;
}

/* Legacy centered layout (cancel page) */
.checkout-status {
    text-align: center;
    padding: 80px 0;
}

.checkout-status-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--jaune-vif);
}

.checkout-status h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #efe6db;
    margin-bottom: 16px;
}

.checkout-status p {
    color: #efe6db;
    font-size: 1.05rem;
    margin-bottom: 12px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.checkout-status .checkout-amount {
    font-weight: 600;
    margin-bottom: 32px;
}

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

/* Modal "Produit ajouté au panier" */
.cart-added-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cart-added-fade 0.18s ease-out;
}

.cart-added-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 31, 63, 0.6);
    cursor: pointer;
}

.cart-added-modal-content {
    position: relative;
    z-index: 1;
    background: var(--creme);
    padding: 40px 36px 32px;
    width: calc(100% - 32px);
    max-width: 440px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.cart-added-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--bleu-marine);
    opacity: 0.5;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: var(--transition);
}

.cart-added-modal-close:hover {
    opacity: 1;
}

.cart-added-modal-icon {
    width: 150px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-added-modal-icon .logo-svg {
    width: 100%;
    height: auto;
}

.cart-added-modal-icon .logo-border {
    fill: var(--jaune-vif);
}

.cart-added-modal-icon .logo-letter {
    fill: var(--bleu-marine);
}

.cart-added-modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--bleu-marine);
    margin: 0 0 8px;
}

.cart-added-modal-product {
    font-size: 0.95rem;
    color: var(--bleu-marine);
    opacity: 0.85;
    margin: 0 0 24px;
}

.cart-added-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cart-added-modal-actions .btn {
    padding: 14px 24px;
}

.cart-added-modal--closing {
    animation: cart-added-fadeout 0.18s ease-in forwards;
}

@keyframes cart-added-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes cart-added-fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@media (max-width: 480px) {
    .cart-added-modal-content {
        padding: 32px 20px 24px;
    }
    .cart-added-modal-actions {
        flex-direction: column-reverse;
    }
    .cart-added-modal-actions .btn {
        width: 100%;
    }
}

/* Form add-to-cart sur produits */
.add-to-cart-form {
    margin: 0;
    display: flex;
    align-items: stretch;
    gap: 12px;
    flex-wrap: wrap;
}

.add-to-cart-qty input[type="number"] {
    width: 72px;
    padding: 0 12px;
    border: 2px solid var(--bleu-marine);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 900;
    text-align: center;
    background: #efe6db;
    height: 100%;
    box-sizing: border-box;
}

/* Mobile */
@media (max-width: 768px) {
    .cart-link {
        margin-left: 12px;
    }

    .cart-row {
        grid-template-columns: 64px 1fr auto;
        gap: 12px;
    }

    .cart-row-image img {
        width: 64px;
        height: 64px;
    }

    .cart-row-qty {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .cart-row-total {
        grid-column: 2 / 3;
        text-align: right;
    }

    .cart-row-remove {
        grid-column: 3 / 4;
    }

    .cart-summary-actions {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .cart-summary-actions .btn,
    .cart-summary-actions .btn-primary,
    .cart-summary-actions .btn-secondary {
        width: 100%;
        display: block;
    }

    .page-header--panier .container {
        margin-left: 0;
        max-width: 100%;
    }

    /* Panier : container scrollable pour accéder au bouton checkout */
    .section-light:has(.cart-list),
    .section-light:has(.cart-empty) {
        height: auto !important;
        min-height: 100vh;
        overflow: visible !important;
        padding-bottom: 40px;
    }

    .cart-summary {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        padding: 24px 0 40px;
        background: transparent;
    }

    .checkout-split {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 0;
    }
}


/* ==========================================================
   MOBILE OVERRIDES — Header, Hero, Produits, Cocktails
   ========================================================== */

@media (max-width: 768px) {

    /* --- 1. HEADER MOBILE : 3 colonnes (burger | logo | panier) --- */
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .burger-btn {
        position: static;
        transform: none;
        order: 1;
        margin-left: 0;
    }

    .header-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        order: 2;
    }

    .cart-link {
        order: 3;
        margin-left: auto;
        margin-right: 0;
    }

    .lang-switch {
        display: none;
    }

    /* --- 2. PAGE ACCUEIL — VIDEO BACKGROUND --- */
    .hero {
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        position: relative;
    }

    .hero video,
    .hero .hero-video,
    .hero-video {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* --- 3. PAGE NOS PRODUITS — Image & Texte centrés --- */
    .page-header--produits {
        background-position: center center;
        background-size: cover;
        text-align: center;
        justify-content: center;
    }

    .page-header--produits .container {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .page-header--produits .page-title,
    .page-header--produits .page-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .product-detail .container {
        text-align: center;
    }

    .product-info {
        text-align: center;
    }

    .product-info .product-desc,
    .product-info .product-name,
    .product-info .product-volume {
        margin-left: auto;
        margin-right: auto;
    }

    /* --- 4. PAGE PRODUITS — Ligne prix / quantité / bouton --- */
    .add-to-cart-form {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .product-price {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .add-to-cart-qty input[type="number"] {
        width: 50px;
        padding: 8px 4px;
    }

    .add-to-cart-form .btn {
        flex-shrink: 0;
        padding: 12px 20px;
        font-size: 0.75rem;
    }

    /* --- 5. PAGE COCKTAILS — Image & Texte centrés --- */
    .page-header--cocktails {
        background-image: url('/assets/images/design/bg-cocktails-hero-img-responsive.webp');
        background-position: center center;
        background-size: cover;
        text-align: center;
        justify-content: center;
    }

    .page-header--cocktails .container {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .page-header--cocktails .page-title,
    .page-header--cocktails .page-intro {
        margin-left: auto;
        margin-right: auto;
    }

    /* --- 6. VIDEO BACKGROUNDS — Full-cover mobile fix --- */

    /* Parent sections: position relative + overflow hidden */
    .timeline-fullscreen,
    .timeline-origines,
    .timeline-agedor,
    .section-visage,
    .cocktail-slider-section {
        position: relative;
        overflow: hidden;
    }

    /* Video wrappers: absolute, full-cover */
    .timeline-fs-video,
    .timeline-origines-video,
    .timeline-agedor-video,
    .visage-video-bg,
    .cocktail-section-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
        pointer-events: none;
    }

    /* Iframes inside: centered cover trick (16:9) */
    .timeline-fs-video iframe,
    .timeline-origines-video iframe,
    .timeline-agedor-video iframe,
    .visage-video-bg iframe,
    .cocktail-section-video iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 177.78vh;
        height: 56.25vw;
        min-width: 100%;
        min-height: 100%;
    }
}


/* ==========================================================
   PAGES LÉGALES
   ========================================================== */

.legal-page {
    background: #002b53;
    color: #a89880;
}

.legal-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 120px 24px 60px;
}

.legal-page .back-link {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a6a52;
    margin-bottom: 48px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.legal-page .back-link:hover {
    color: #c9b99a;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #f0e8d8;
    line-height: 1.2;
    margin-bottom: 16px;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    color: #f0e8d8;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: #c9b99a;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-page .update-date {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5a4e3a;
    margin-bottom: 32px;
}

.legal-page .divider {
    width: 40px;
    height: 1px;
    background: #7a6a52;
    margin-bottom: 48px;
}

.legal-page p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.85;
    color: #a89880;
    margin-bottom: 16px;
    max-width: 100%;
}

.legal-page ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.legal-page ul li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.85;
    color: #a89880;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.legal-page ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #7a6a52;
}

.legal-page .info-block {
    background: #141210;
    border: 1px solid #2a2520;
    padding: 24px 28px;
    margin: 20px 0 28px;
    border-radius: 2px;
}

.legal-page .info-block p {
    margin-bottom: 8px;
}

.legal-page .info-block p:last-child {
    margin-bottom: 0;
}

.legal-page .callout {
    border-left: 2px solid #7a6a52;
    padding: 16px 24px;
    margin: 24px 0;
    font-style: italic;
    color: #c9b99a;
    font-size: 0.9rem;
}

.legal-page .placeholder {
    color: #5a4e3a;
    font-style: italic;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.85rem;
}

.legal-page th {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #2a2520;
    color: #7a6a52;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.legal-page td {
    padding: 12px 16px;
    border-bottom: 1px solid #1a1815;
    color: #a89880;
}

.legal-page .cookie-category {
    border-left: 2px solid #2a2520;
    padding: 16px 24px;
    margin: 16px 0;
}

.legal-page .cookie-category strong {
    color: #c9b99a;
    font-weight: 400;
}

.legal-page .btn-cookie-manage {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #7a6a52;
    border: 1px solid #2a2520;
    padding: 12px 24px;
    background: transparent;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    margin: 16px 0;
}

.legal-page .btn-cookie-manage:hover {
    color: #c9b99a;
    border-color: #7a6a52;
}

.legal-page .legal-nav {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #2a2520;
}

.legal-page .legal-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-page .legal-nav-links li {
    padding-left: 0;
}

.legal-page .legal-nav-links li::before {
    display: none;
}

.legal-page .legal-nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5a4e3a;
    transition: color 0.3s ease;
    text-decoration: none;
}

.legal-page .legal-nav-links a:hover {
    color: #c9b99a;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 100px 16px 40px;
    }

    .legal-page .legal-nav-links {
        flex-direction: column;
        gap: 1rem;
    }
}

