/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 60px;      /* Ajuste selon tes besoins */
    height: auto;
    object-fit: contain;
}
.logo-text {
    font-size: 18px;
    font-weight: 600; /* facultatif */
}
:root {
    --primary: #2d7a3e;
    --primary-dark: #1a5028;
    --primary-light: #4a9d5f;
    --accent: #5cb574;
    --white: #ffffff;
    --black: #000000;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0f0d;
    --text-light: #212529;
    --text-dark: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.2);

    /* ===== HARMONISATION TYPOGRAPHIQUE ===== */
    /* Polices principales */
    --font-primary: 'Playfair Display', serif;        /* Titres élégants et sophistiqués */
    --font-secondary: 'Cormorant Garamond', serif;    /* Sous-titres et accents */
    --font-accent: 'Montserrat', sans-serif;          /* Éléments d'interface */
    --font-body: 'Inter', sans-serif;                 /* Corps de texte */
    --font-light: 'Raleway', sans-serif;              /* Texte léger et descriptions */

    /* Hiérarchie de titres */
    --font-heading: 'Playfair Display', serif;

}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-light);
    overflow-x: hidden;
    cursor: none;
    transition: background 0.5s ease, color 0.5s ease;
}

body.dark-mode {
    background: var(--bg-dark);
    color: var(--text-dark);
}

/* ===== HIÉRARCHIE TYPOGRAPHIQUE GLOBALE ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: inherit;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
}

h4 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    font-family: var(--font-secondary);
    letter-spacing: 0.01em;
    font-style: italic;
}

h5 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 500;
    font-family: var(--font-secondary);
}

h6 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    font-family: var(--font-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Style élégant de "Notre Histoire" appliqué globalement */
p {
    font-family: var(--font-light);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.lead {
    font-family: var(--font-light);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

/* Styles de texte spéciaux */
.text-accent {
    font-family: var(--font-accent);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.text-elegant {
    font-family: var(--font-light);
    font-style: italic;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.01em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.active {
    opacity: 0.03;
}

/* ===== CUSTOM CURSOR PREMIUM ===== */
.cursor {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    background: var(--white);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-follower {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border: 2px solid var(--primary);
    background: transparent;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.6;
}

/* Effet de traînée lumineuse */
.cursor::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(8px);
    opacity: 0.5;
}

/* Follower avec effet de gradient rotatif */
.cursor-follower::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--primary),
        var(--accent),
        #FFD700,
        var(--primary-light),
        var(--primary)
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotateCursor 3s linear infinite;
}

@keyframes rotateCursor {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* État hover - curseur agrandi */
.cursor.cursor-hover {
    width: 12px;
    height: 12px;
    background: var(--accent);
}

.cursor-follower.cursor-hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    opacity: 0.8;
    border-width: 3px;
}

.cursor-follower.cursor-hover::before {
    opacity: 0.3;
}

/* État cliqué */
.cursor.cursor-click {
    width: 6px;
    height: 6px;
}

.cursor-follower.cursor-click {
    width: 35px;
    height: 35px;
    border-width: 4px;
}

/* Curseur sur les liens et boutons */
.cursor.cursor-link {
    width: 50px;
    height: 50px;
    background: rgba(45, 122, 62, 0.1);
    border: 2px solid var(--primary);
    mix-blend-mode: normal;
}

.cursor.cursor-link::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: var(--primary);
    font-weight: bold;
}

.cursor-follower.cursor-link {
    width: 70px;
    height: 70px;
    border-style: dashed;
    animation: dashRotate 10s linear infinite;
}

@keyframes dashRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Curseur sur les images */
.cursor.cursor-view {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    mix-blend-mode: normal;
}

.cursor.cursor-view::after {
    content: 'Voir';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cursor-follower.cursor-view {
    opacity: 0;
}

/* Curseur texte */
.cursor.cursor-text {
    width: 3px;
    height: 25px;
    border-radius: 2px;
    background: var(--primary);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Masquer sur mobile */
@media (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none !important;
    }

    body {
        cursor: auto;
    }
}

/* Masquer quand la souris quitte la fenêtre */
.cursor.hidden,
.cursor-follower.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        var(--primary) 40%,
        var(--primary-light) 70%,
        var(--accent) 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: all;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Force hide after animation */
@keyframes forceHide {
    to {
        display: none;
    }
}

.loading-screen.hidden {
    animation: forceHide 0s 0.5s forwards;
}

.loader {
    text-align: center;
}

/* Plate Loader */
.plate-loader {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.plate {
    width: 150px;
    height: 150px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.3),
        0 0 0 12px rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.3);
    animation: plateRotate 3s ease-in-out infinite;
}

.food {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: foodPulse 2s ease-in-out infinite;
}

.food::before,
.food::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
}

.food::before {
    top: -10px;
    left: 10px;
    animation: garnish1 2s ease-in-out infinite;
}

.food::after {
    bottom: -10px;
    right: 10px;
    animation: garnish2 2s ease-in-out infinite 0.5s;
}

.utensils {
    position: absolute;
    width: 100%;
    height: 100%;
}

.fork {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    animation: forkMove 3s ease-in-out infinite;
}

.fork-handle {
    width: 8px;
    height: 80px;
    background: var(--white);
    border-radius: 4px;
}

.fork-tines {
    display: flex;
    gap: 4px;
    margin-top: -2px;
}

.fork-tines span {
    width: 6px;
    height: 25px;
    background: var(--white);
    border-radius: 3px;
}

.knife {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    animation: knifeMove 3s ease-in-out infinite;
}

.knife-handle {
    width: 10px;
    height: 80px;
    background: var(--white);
    border-radius: 5px;
}

.knife-blade {
    width: 8px;
    height: 50px;
    background: linear-gradient(to bottom, var(--white), rgba(255, 255, 255, 0.7));
    margin-top: -2px;
    border-radius: 0 0 4px 4px;
}

.loader-text {
    color: var(--white);
    margin-top: 3rem;
    text-align: center;
}

.restaurant-name {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-primary);
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2);
    animation: fadeInOut 2s ease-in-out infinite;
}

.loader-text .subtitle-loading {
    display: block;
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.08em;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 2rem;
}

.loading-dots span {
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes plateRotate {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

@keyframes foodPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes garnish1 {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

@keyframes garnish2 {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-180deg) scale(1.2); }
}

@keyframes forkMove {
    0%, 100% {
        left: -40px;
        transform: translateY(-50%) rotate(-45deg);
    }
    25% {
        left: 20px;
        transform: translateY(-50%) rotate(-25deg);
    }
    50% {
        left: -40px;
        transform: translateY(-50%) rotate(-45deg);
    }
}

@keyframes knifeMove {
    0%, 100% {
        right: -40px;
        transform: translateY(-50%) rotate(45deg);
    }
    25% {
        right: 20px;
        transform: translateY(-50%) rotate(25deg);
    }
    50% {
        right: -40px;
        transform: translateY(-50%) rotate(45deg);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.02);
        filter: brightness(1.1);
    }
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateY(-10px);
        opacity: 0.7;
    }
}

/* Animation du sous-titre */
.subtitle-loading {
    animation: subtitleSlide 2s ease-in-out infinite;
}

@keyframes subtitleSlide {
    0%, 100% {
        opacity: 0.9;
        transform: translateY(0);
        letter-spacing: 0.08em;
    }
    50% {
        opacity: 1;
        transform: translateY(-2px);
        letter-spacing: 0.12em;
    }
}

/* ===== PARTICLES BACKGROUND ===== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

/* ===== GLASSMORPHISM PREMIUM ===== */
.glass {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.15) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reflet liquide animé - PREMIUM */
.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 20%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.1) 60%,
        rgba(255, 255, 255, 0.03) 80%,
        transparent 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 10;
    animation: shimmerPulse 4s ease-in-out infinite;
}

.glass:hover::before {
    animation: shimmerSlide 0.8s ease forwards, shimmerGlow 0.8s ease forwards;
}

/* Bordure iridescente brillante */
.glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.6),
        rgba(45, 122, 62, 0.5),
        rgba(255, 215, 0, 0.5),
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.1)
    );
    background-size: 400% 100%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s ease;
    animation: borderShimmer 6s linear infinite;
}

.glass:hover::after {
    opacity: 1;
    animation: borderShimmer 2s linear infinite;
}

/* Shimmer pulse subtil en idle */
@keyframes shimmerPulse {
    0%, 100% {
        left: -150%;
        opacity: 0;
    }
    45%, 55% {
        opacity: 0;
    }
    50% {
        left: 150%;
        opacity: 0.5;
    }
}

/* Shimmer slide au hover */
@keyframes shimmerSlide {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

/* Glow effect au hover */
@keyframes shimmerGlow {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Bordure animée */
@keyframes borderShimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 400% 50%;
    }
}

/* ===== LIQUID GLASS PREMIUM EFFECTS ===== */

/* Liquid Glass Card - Effet de verre liquide PREMIUM */
.liquid-glass {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.08) 25%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 75%,
        rgba(255, 255, 255, 0.25) 100%
    );
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 24px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reflet principal qui traverse */
.liquid-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 100%
    );
    transform: skewX(-15deg);
    pointer-events: none;
    z-index: 5;
    transition: none;
    animation: liquidGlassIdle 5s ease-in-out infinite;
}

.liquid-glass:hover::before {
    animation: liquidGlassShine 0.6s ease-out forwards;
}

/* Reflet secondaire - highlight en haut */
.liquid-glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        transparent 100%
    );
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 4;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.liquid-glass:hover::after {
    opacity: 1;
}

.liquid-glass:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

@keyframes liquidGlassIdle {
    0%, 100% {
        left: -100%;
        opacity: 0;
    }
    48%, 52% {
        opacity: 0;
    }
    50% {
        left: 150%;
        opacity: 0.6;
    }
}

@keyframes liquidGlassShine {
    0% {
        left: -100%;
        opacity: 0.5;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

/* Bulle liquide animée */
.liquid-bubble {
    position: relative;
    overflow: hidden;
}

.liquid-bubble::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 40%,
        transparent 70%
    );
    border-radius: 50%;
    top: -75px;
    right: -75px;
    animation: bubbleFloat 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 20px) scale(1.1);
        opacity: 0.8;
    }
}

/* Effet de vague liquide */
.liquid-wave {
    position: relative;
    overflow: hidden;
}

.liquid-wave::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 10px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    animation: waveMove 3s linear infinite;
    pointer-events: none;
}

@keyframes waveMove {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Reflet de lumière dynamique PREMIUM */
.light-reflect {
    position: relative;
    overflow: hidden;
}

/* Rayon de lumière rotatif */
.light-reflect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.05) 30deg,
        rgba(255, 255, 255, 0.2) 55deg,
        rgba(255, 255, 255, 0.5) 60deg,
        rgba(255, 255, 255, 0.2) 65deg,
        rgba(255, 255, 255, 0.05) 90deg,
        transparent 120deg,
        transparent 360deg
    );
    animation: lightRotateSlow 12s linear infinite;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.5s ease;
    z-index: 6;
}

.light-reflect:hover::before {
    opacity: 1;
    animation: lightRotateFast 4s linear infinite;
}

/* Point lumineux qui suit le rayon */
.light-reflect::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 30%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.2) 30%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    opacity: 0.4;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 7;
}

.light-reflect:hover::after {
    opacity: 0.8;
    animation: glowPulseIntense 1.5s ease-in-out infinite;
}

@keyframes lightRotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes lightRotateFast {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(10%, 10%) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes glowPulseIntense {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(15%, 15%) scale(1.2);
        opacity: 1;
    }
}

/* Dark mode adjustments for liquid glass */
body.dark-mode .liquid-glass {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.02) 25%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 75%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-color: rgba(255, 255, 255, 0.15);
}

body.dark-mode .glass {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    border-color: rgba(255, 255, 255, 0.15);
}

/* ===== LIQUID GLASS NAVBAR ===== */
.navbar {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 100%
    ) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Shimmer continu sur la navbar */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 20%,
        rgba(255, 255, 255, 0.08) 40%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 60%,
        rgba(255, 255, 255, 0.03) 80%,
        transparent 100%
    );
    pointer-events: none;
    animation: navbarShimmer 6s ease-in-out infinite;
    z-index: 1;
}

/* Highlight en haut de la navbar */
.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

@keyframes navbarShimmer {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}

.navbar.scrolled {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 100%
    ) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.5);
}

body.dark-mode .navbar.scrolled {
    background: linear-gradient(
        180deg,
        rgba(20, 25, 23, 0.98) 0%,
        rgba(15, 20, 18, 0.95) 100%
    ) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== LIQUID GLASS MENU FILTERS ===== */
.menu-filters {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.08) 30%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.08) 70%,
        rgba(255, 255, 255, 0.2) 100%
    );
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

/* Shimmer principal */
.menu-filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: filterShine 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Highlight en haut */
.menu-filters::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    pointer-events: none;
    z-index: 2;
}

@keyframes filterShine {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}

body.dark-mode .menu-filters {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    border-color: rgba(255, 255, 255, 0.15);
}

/* ===== LIQUID GLASS HERO BADGE ===== */
.hero-badge-new {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        rgba(255, 255, 255, 0.25) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Shimmer brillant */
.hero-badge-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 25%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: badgeShine 2.5s ease-in-out infinite;
    z-index: 1;
}

/* Highlight permanent en haut */
.hero-badge-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    z-index: 2;
}

@keyframes badgeShine {
    0% {
        left: -100%;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

/* ===== LIQUID GLASS WINE CARDS ===== */
.wine-item.glass {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.12) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.wine-item.glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 60%
    );
    animation: wineGlow 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes wineGlow {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate(25%, 25%);
        opacity: 1;
    }
}

/* Effet de profondeur multicouche */
.glass-deep {
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 8px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 16px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

/* Glow doré/vert subtil */
.glass-glow {
    box-shadow:
        0 0 20px rgba(45, 122, 62, 0.2),
        0 0 40px rgba(45, 122, 62, 0.1),
        0 8px 32px var(--shadow),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-glow:hover {
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.4),
        0 0 60px rgba(45, 122, 62, 0.3),
        0 12px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

/* Effet 3D de lévitation sur les cards */
.card-3d {
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.card-3d:hover {
    transform:
        translateY(-15px)
        translateZ(50px)
        rotateX(5deg)
        scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 15px 30px rgba(45, 122, 62, 0.2),
        0 5px 15px rgba(255, 215, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Animation de shimmer pour l'effet luxe */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.glass-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 3s infinite;
}

body.dark-mode .glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease !important;
}

/* Navbar initiale - texte blanc sur hero */
.navbar .logo {
    color: white;
}

.navbar .logo-svg {
    color: white;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar .nav-link:hover {
    color: #FFD700;
}

.navbar .theme-toggle {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Navbar scrolled - fond solide */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px var(--shadow);
    padding: 1rem 0;
}

.navbar.scrolled .logo {
    color: var(--primary);
}

.navbar.scrolled .logo-svg {
    color: var(--primary);
}

.navbar.scrolled .nav-link {
    color: var(--text-light);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

.navbar.scrolled .theme-toggle {
    border-color: var(--primary);
}

/* Dark mode */
body.dark-mode .navbar {
    background: rgba(0, 0, 0, 0.5);
}

body.dark-mode .navbar.scrolled {
    background: rgba(10, 15, 13, 0.95);
}

body.dark-mode .navbar.scrolled .logo {
    color: var(--accent);
}

body.dark-mode .navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    z-index: 10;
    transition: color 0.3s ease !important;
}

.logo-svg {
    width: 45px;
    height: 45px;
    color: var(--primary);
    transition: transform 0.3s ease, color 0.3s ease !important;
}

.logo:hover .logo-svg {
    transform: rotate(360deg);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease !important;
    overflow: hidden;
}

body.dark-mode .nav-link {
    color: var(--text-dark);
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    overflow: hidden;
    color: var(--primary);
    transition: width 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    background: none;
    border: 2px solid var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary);
}

.theme-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    transition: all 0.5s ease;
}

.theme-icon.sun {
    opacity: 1;
}

.theme-icon.moon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg);
}

body.dark-mode .theme-icon.sun {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-180deg);
}

body.dark-mode .theme-icon.moon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(18, 60, 30, 0.93) 0%, rgba(22, 70, 35, 0.90) 50%, rgba(20, 65, 32, 0.93) 100%);
    background-image:
        linear-gradient(135deg, rgba(18, 60, 30, 0.85) 0%, rgba(22, 70, 35, 0.80) 50%, rgba(20, 65, 32, 0.85) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, 50px) rotate(120deg); }
    66% { transform: translate(-50px, 30px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease;
}

.title-line.highlight {
    background: linear-gradient(90deg, #fff, var(--accent), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease, shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.tag {
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span,
.btn svg {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--white));
    animation: scrollLine 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

@keyframes scrollLine {
    0% { height: 0; }
    50% { height: 40px; }
    100% { height: 0; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 4rem 0;
    background: var(--bg-light);
}

body.dark-mode .stats {
    background: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

body.dark-mode .stat-label {
    color: var(--text-dark);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 8rem 0;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

body.dark-mode .section-title {
    color: var(--text-dark);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.8;
    max-width: 700px;
}

body.dark-mode .section-description {
    color: var(--text-dark);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-description {
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--bg-light);
}

body.dark-mode .about {
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 122, 62, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-icon {
    font-size: 2rem;
}

.feature-text {
    font-weight: 600;
    color: var(--text-light);
}

body.dark-mode .feature-text {
    color: var(--text-dark);
}

/* ===== MENU SECTION ===== */
.menu-section {
    background: var(--white);
}

body.dark-mode .menu-section {
    background: #0d120f;
}

.menu-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 122, 62, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.menu-card.hide {
    display: none;
}

.menu-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(45, 122, 62, 0.2);
}

.menu-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1) rotate(2deg);
}

.menu-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

body.dark-mode .menu-card-title {
    color: var(--text-dark);
}

.menu-card-description {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 1rem;
}

body.dark-mode .menu-card-description {
    color: var(--text-dark);
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.menu-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.menu-order-btn {
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.menu-order-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a5a2a 100%);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.5);
}

/* ===== WINE SECTION ===== */
.wine-section {
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

body.dark-mode .wine-section {
    background: var(--bg-dark);
}

.wine-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(45, 122, 62, 0.1), transparent);
}

.wine-slider-container {
    position: relative;
    padding: 0 60px;
}

.wine-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.3);
}

.wine-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(45, 122, 62, 0.5);
}

.wine-nav svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

.wine-nav-prev {
    left: 0;
}

.wine-nav-next {
    right: 0;
}

.wine-slider {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.wine-slider::-webkit-scrollbar {
    display: none;
}

.wine-track {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
}

.wine-item {
    flex: 0 0 350px;
    scroll-snap-align: start;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wine-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 122, 62, 0.3);
}

.wine-image {
    height: 400px;
    overflow: hidden;
}

.wine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wine-item:hover .wine-image img {
    transform: scale(1.1);
}

.wine-info {
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
}

.wine-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

body.dark-mode .wine-info h3 {
    color: var(--text-dark);
}

.wine-info p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 1rem;
}

body.dark-mode .wine-info p {
    color: var(--text-dark);
}

.wine-count {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== CHEESE SECTION ===== */
.cheese-section {
    background: var(--white);
}

body.dark-mode .cheese-section {
    background: #0d120f;
}

.cheese-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cheese-gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-img.active {
    opacity: 1;
}

.cheese-gallery-thumbs {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.thumb {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary);
    opacity: 0.3;
}

.thumb.active {
    border-color: var(--primary);
    opacity: 1;
}

.thumb:hover {
    transform: scale(1.1);
}

.cheese-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.category-tag {
    padding: 0.6rem 1.2rem;
    background: rgba(45, 122, 62, 0.1);
    border: 1px solid var(--primary);
    border-radius: 25px;
    color: var(--primary);
    font-weight: 500;
}

/* ===== GROCERY SECTION ===== */
.grocery-section {
    background: var(--bg-light);
}

body.dark-mode .grocery-section {
    background: var(--bg-dark);
}

.grocery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.grocery-card {
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.grocery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 122, 62, 0.2);
}

.grocery-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.grocery-icon-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 8px 20px rgba(45, 122, 62, 0.3);
    transition: all 0.3s ease;
}

.grocery-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grocery-card:hover .grocery-icon-img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(45, 122, 62, 0.5);
}

.grocery-card:hover .grocery-icon-img img {
    transform: scale(1.2);
}

.grocery-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

body.dark-mode .grocery-card h3 {
    color: var(--text-dark);
}

.grocery-card p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

body.dark-mode .grocery-card p {
    color: var(--text-dark);
}

.grocery-list {
    list-style: none;
    text-align: left;
}

.grocery-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

body.dark-mode .grocery-list li {
    color: var(--text-dark);
}

.grocery-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--white);
}

body.dark-mode .contact-section {
    background: #0d120f;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-detail:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(45, 122, 62, 0.2);
}

.detail-icon {
    font-size: 2.5rem;
    width: 60px;
    text-align: center;
}

.detail-content h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.detail-content p {
    color: var(--text-light);
    opacity: 0.8;
}

body.dark-mode .detail-content p {
    color: var(--text-dark);
}

.contact-whatsapp {
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-content {
    max-width: 400px;
}

.whatsapp-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #25D366;
}

.whatsapp-icon-large svg {
    width: 100%;
    height: 100%;
}

.whatsapp-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

body.dark-mode .whatsapp-content h3 {
    color: var(--text-dark);
}

.whatsapp-content p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 2rem;
}

body.dark-mode .whatsapp-content p {
    color: var(--text-dark);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(to bottom, rgba(45, 122, 62, 0.9), rgba(26, 80, 40, 0.95));
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(92, 181, 116, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column a {
    display: block;
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: floatWhatsapp 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #25D366;
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes floatWhatsapp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .about-content,
    .cheese-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
    }

    body.dark-mode .nav-links {
        background: var(--bg-dark);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 2rem;
    }

    section {
        padding: 5rem 0;
    }

    .menu-grid,
    .grocery-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    /* Hide wine navigation buttons on mobile */
    .wine-slider-container {
        padding: 0;
    }

    .wine-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== MENU GALLERY BUTTON ===== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.gallery-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 122, 62, 0.3);
}

.gallery-toggle-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* ===== MENU GALLERY MODAL ===== */
.menu-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-modal-content {
    position: relative;
    width: 90%;
    max-width: 1400px;
    height: 90%;
    margin: 5% auto;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 3rem;
    overflow-y: auto;
}

.gallery-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-close-btn:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--primary-dark);
}

.gallery-modal-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-item-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    margin-top: 2rem;
    color: var(--white);
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.lightbox-desc {
    font-size: 1.2rem;
    opacity: 0.8;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
}

/* ===== RESERVATION SECTION ===== */
.reservation-section {
    background: var(--bg-light);
}

body.dark-mode .reservation-section {
    background: var(--bg-dark);
}

.reservation-content {
    max-width: 800px;
    margin: 0 auto;
}

.reservation-form {
    padding: 3rem;
    border-radius: 30px;
    animation: fadeInUp 0.8s ease;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

body.dark-mode .form-group label {
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(45, 122, 62, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
    border-color: rgba(255, 255, 255, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    background: #25D366;
}

.btn-submit:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ===== MAP SECTION ===== */
.map-container {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.btn-directions {
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.3);
}

.btn-directions:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 122, 62, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

/* ===== IMPROVED TRANSITIONS ===== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: radial-gradient(circle at center, var(--primary) 0%, rgba(45, 122, 62, 0.8) 50%, transparent 100%);
    backdrop-filter: blur(0px);
    transform: scale(0.95);
}

.page-transition.active {
    opacity: 0.4;
    backdrop-filter: blur(10px);
    transform: scale(1);
}

/* Animated overlay shapes */
.page-transition::before,
.page-transition::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulseTransition 1.2s ease-out;
}

.page-transition::before {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
}

.page-transition::after {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: 15%;
    animation-delay: 0.2s;
}

@keyframes pulseTransition {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Section entrance animations */
section {
    animation: sectionFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced scroll-based parallax effect */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

section:hover::before {
    opacity: 1;
}

/* Smooth content reveal on scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for child elements */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(30px);
    animation: staggerFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes staggerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cinematic section transitions */
.section-transition-wrapper {
    position: relative;
    overflow: hidden;
}

.section-transition-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    animation: slideLineAcross 2s ease-in-out;
}

@keyframes slideLineAcross {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ===== HARMONISATION TYPOGRAPHIQUE PAR SECTION ===== */

/* HERO - Majestueux et imposant */
.hero h1 {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: clamp(3.5rem, 8vw, 7rem);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.95;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-family: var(--font-light);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.9;
}

/* MENU - Élégant et raffiné */
.menu-section h1,
.menu-section h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.menu-section h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.02em;
}

.menu-section p,
.menu-section .menu-description {
    font-family: var(--font-light);
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.01em;
}

/* CAVE À VIN - Élégant et sophistiqué */
.wine-section h1,
.wine-section h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.wine-section h3,
.wine-section h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.02em;
}

.wine-section p,
.wine-section .wine-description {
    font-family: var(--font-light);
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.01em;
    font-style: italic;
}

/* CRÉMERIE - Artisanal et chaleureux */
.cheese-section h1,
.cheese-section h2 {
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cheese-section h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.01em;
}

.cheese-section p {
    font-family: var(--font-light);
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.01em;
}

/* ÉPICERIE - Frais et élégant */
.grocery-section h1,
.grocery-section h2 {
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.grocery-section h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 0.01em;
    font-style: italic;
}

.grocery-section p {
    font-family: var(--font-light);
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.01em;
}

/* À PROPOS - Chaleureux et personnel (style original préservé) */
.about-section h1,
.about-section h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about-section p {
    font-family: var(--font-light);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.01em;
}

/* RÉSERVATION - Professionnel et élégant */
.reservation-section h1,
.reservation-section h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.reservation-section label {
    font-family: var(--font-light);
    font-weight: 400;
    font-size: 1rem;
}

.reservation-section input,
.reservation-section select,
.reservation-section textarea {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5;
}

.reservation-section button {
    font-family: var(--font-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CONTACT - Élégant et accessible */
.contact-section h1,
.contact-section h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-section p,
.contact-section a {
    font-family: var(--font-light);
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.01em;
}

/* Navigation - Élégant et lisible */
nav a {
    font-family: var(--font-light);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

/* Boutons globaux - Cohérence */
button,
.btn,
.cta-button {
    font-family: var(--font-accent);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== CUSTOM CURSOR ICONS ===== */
.cursor.cursor-wine::before {
    content: '🍷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.cursor.cursor-cheese::before {
    content: '🧀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.cursor.cursor-grocery::before {
    content: '🌶️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
}

.cursor.cursor-menu::before {
    content: '🍽️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.cursor.cursor-reservation::before {
    content: '📅';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
}

.cursor.cursor-contact::before {
    content: '📞';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
}

/* Hide default cursor shapes when using icons */
.cursor.cursor-wine,
.cursor.cursor-cheese,
.cursor.cursor-grocery,
.cursor.cursor-menu,
.cursor.cursor-reservation,
.cursor.cursor-contact {
    background: transparent !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 0 !important;
}

.cursor-follower.cursor-wine,
.cursor-follower.cursor-cheese,
.cursor-follower.cursor-grocery,
.cursor-follower.cursor-menu,
.cursor-follower.cursor-reservation,
.cursor-follower.cursor-contact {
    width: 50px;
    height: 50px;
    border-width: 3px;
}

/* Smooth scroll behavior enhancements */
body.is-scrolling {
    pointer-events: none;
}

body.is-scrolling * {
    pointer-events: auto;
}

/* Enhanced section positioning */
section {
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add depth to sections on hover */
section:hover {
    z-index: 1;
}

/* Smooth body transitions */
body {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* ===== ANIMATIONS & MICROINTERACTIONS PREMIUM ===== */

/* Bouton avec effet de remplissage liquide */
.btn-liquid {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-liquid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-liquid:hover::before {
    width: 300%;
    height: 300%;
}

/* Effet magnetic hover sur les boutons */
.btn-magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-magnetic:hover {
    transform: scale(1.05);
}

/* Animation de gradient sur les textes */
.text-gradient {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--accent),
        #FFD700,
        var(--primary-light)
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.text-gradient-animated {
    animation: gradientFlow 6s ease infinite;
}

/* Text-stroke pour grands titres */
.text-stroke {
    -webkit-text-stroke: 2px var(--primary);
    -webkit-text-fill-color: transparent;
    text-stroke: 2px var(--primary);
    font-weight: 900;
}

.text-stroke-gold {
    -webkit-text-stroke: 2px #FFD700;
    -webkit-text-fill-color: transparent;
}

/* Lettres animées à l'apparition (stagger) */
.text-stagger {
    display: inline-block;
}

.text-stagger span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: letterFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.text-stagger span:nth-child(1) { animation-delay: 0.1s; }
.text-stagger span:nth-child(2) { animation-delay: 0.15s; }
.text-stagger span:nth-child(3) { animation-delay: 0.2s; }
.text-stagger span:nth-child(4) { animation-delay: 0.25s; }
.text-stagger span:nth-child(5) { animation-delay: 0.3s; }
.text-stagger span:nth-child(6) { animation-delay: 0.35s; }
.text-stagger span:nth-child(7) { animation-delay: 0.4s; }
.text-stagger span:nth-child(8) { animation-delay: 0.45s; }
.text-stagger span:nth-child(9) { animation-delay: 0.5s; }
.text-stagger span:nth-child(10) { animation-delay: 0.55s; }

@keyframes letterFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation de compteur pour les stats */
.counter {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

/* Icônes animées */
.icon-bounce {
    display: inline-block;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.icon-rotate {
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-rotate:hover {
    transform: rotate(360deg) scale(1.2);
}

/* Effet de pulsation */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(45, 122, 62, 0.4),
            0 0 40px rgba(45, 122, 62, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 30px rgba(255, 215, 0, 0.6),
            0 0 60px rgba(255, 215, 0, 0.3);
        transform: scale(1.05);
    }
}

/* Card flip effect pour menu */
.card-flip {
    perspective: 1000px;
    position: relative;
}

.card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card-flip:hover .card-flip-inner {
    transform: rotateY(180deg);
}

.card-flip-front,
.card-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: inherit;
}

.card-flip-back {
    transform: rotateY(180deg);
}

/* Hover zoom sur images */
.image-zoom {
    overflow: hidden;
}

.image-zoom img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.image-zoom:hover img {
    transform: scale(1.15) rotate(2deg);
}

/* Effet Ken Burns sur images */
@keyframes kenBurns {
    0% {
        transform: scale(1) translateX(0) translateY(0);
    }
    100% {
        transform: scale(1.2) translateX(-5%) translateY(-5%);
    }
}

.ken-burns {
    animation: kenBurns 20s ease-in-out infinite alternate;
}

/* Badge animé */
.badge-animated {
    position: relative;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Effet de brillance sur badges */
.badge-shine {
    position: relative;
    overflow: hidden;
}

.badge-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* Effet néon pour boutons CTA */
.btn-neon {
    position: relative;
    border: 2px solid var(--primary);
    box-shadow:
        0 0 10px var(--primary),
        0 0 20px var(--primary),
        0 0 40px var(--primary),
        inset 0 0 10px var(--primary);
    animation: neonGlow 1.5s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        box-shadow:
            0 0 10px var(--primary),
            0 0 20px var(--primary),
            0 0 40px var(--primary),
            inset 0 0 10px var(--primary);
    }
    to {
        box-shadow:
            0 0 20px #FFD700,
            0 0 30px #FFD700,
            0 0 60px #FFD700,
            inset 0 0 20px #FFD700;
    }
}

/* Bouton flottant avec badge de notification */
.floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    z-index: 1000;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-btn .notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid white;
    animation: badgePulse 1s infinite;
}

/* Indicateur de progression du scroll */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #FFD700, var(--accent));
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 400px;
    }

    /* Reduce parallax on tablets */
    section {
        transform: none !important;
    }

    /* Simplify transitions on smaller screens */
    .page-transition::before,
    .page-transition::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .gallery-modal-content {
        padding: 2rem 1rem;
    }

    .gallery-modal-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .reservation-form {
        padding: 2rem 1.5rem;
    }

    .map-container {
        height: 300px;
    }
}

/* ===== AM�LIORATIONS UI/UX MON BERGER ===== */

/* Prix FCFA - Style Premium */
.menu-price {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.menu-price::after {
    content: 'CFA';
    font-size: 0.7rem;
    font-weight: 500;
    margin-left: 3px;
    opacity: 0.7;
    background: var(--primary);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Filtres am�lior�s */
.menu-filters {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 1rem;
    background: var(--glass-bg);
    border-radius: 50px;
    backdrop-filter: blur(15px);
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid transparent;
    background: transparent;
    color: var(--text-light);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body.dark-mode .filter-btn {
    color: var(--text-dark);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.4);
    border-color: var(--primary);
}

/* Badge anim� pour les cat�gories */
.menu-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(45, 122, 62, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(45, 122, 62, 0.6);
    }
}

/* Barre de progression de d�filement am�lior�e */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), #FFD700);
    background-size: 200% 100%;
    animation: progressGradient 3s ease infinite;
    z-index: 10001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(45, 122, 62, 0.5);
}

@keyframes progressGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Bouton flottant retour en haut am�lior� */
.floating-btn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(45, 122, 62, 0.4);
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(45, 122, 62, 0.6);
}

/* Am�lioration des cartes menu au survol */
.menu-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.menu-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(45, 122, 62, 0.25),
        0 0 0 1px rgba(45, 122, 62, 0.1);
    border-color: rgba(45, 122, 62, 0.2);
}

.menu-card:hover .menu-card-badge {
    animation: none;
    transform: scale(1.1);
}

/* Bouton commander am�lior� */
.menu-order-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.menu-order-btn:hover::before {
    left: 100%;
}

.menu-order-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.5);
}

/* Animation d'entr�e pour les cartes menu */
.menu-card {
    animation: cardFadeIn 0.6s ease backwards;
}

.menu-card:nth-child(1) { animation-delay: 0.1s; }
.menu-card:nth-child(2) { animation-delay: 0.15s; }
.menu-card:nth-child(3) { animation-delay: 0.2s; }
.menu-card:nth-child(4) { animation-delay: 0.25s; }
.menu-card:nth-child(5) { animation-delay: 0.3s; }
.menu-card:nth-child(6) { animation-delay: 0.35s; }
.menu-card:nth-child(7) { animation-delay: 0.4s; }
.menu-card:nth-child(8) { animation-delay: 0.45s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Effet n�on pour WhatsApp */
.btn-neon {
    box-shadow: 
        0 0 5px #25D366,
        0 0 10px #25D366,
        0 0 20px rgba(37, 211, 102, 0.5),
        0 0 40px rgba(37, 211, 102, 0.3);
}

.btn-neon:hover {
    box-shadow: 
        0 0 10px #25D366,
        0 0 20px #25D366,
        0 0 40px rgba(37, 211, 102, 0.8),
        0 0 80px rgba(37, 211, 102, 0.5);
}

/* Am�lioration responsive pour les filtres */
@media (max-width: 768px) {
    .menu-filters {
        padding: 0.8rem;
        gap: 0.5rem;
        border-radius: 20px;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .floating-btn {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Mode sombre am�lior� pour les cartes */
body.dark-mode .menu-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .menu-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(45, 122, 62, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(45, 122, 62, 0.2);
}

/* Indicateur de scroll avec animation */
.scroll-indicator {
    animation: scrollIndicate 2s ease-in-out infinite;
}

@keyframes scrollIndicate {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-50%) translateY(10px);
    }
}

/* Tooltip pour les prix avec variation */
.menu-price[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: var(--primary-dark);
    color: white;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-price[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: 120%;
}
/* ===== MENU DISPOSITION PREMIUM ===== */

/* Grille du menu avec disposition masonry */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

/* Carte featured plus grande */
.menu-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.menu-card.featured .menu-card-image {
    height: 350px;
}

.menu-card.featured .menu-card-title {
    font-size: 2.2rem;
}

/* Style des cartes ameliore */
.menu-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

body.dark-mode .menu-card {
    background: rgba(30, 40, 35, 0.8);
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(45, 122, 62, 0.15),
        0 0 0 1px rgba(45, 122, 62, 0.1);
}

/* Image de la carte */
.menu-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

/* Overlay gradient sur l'image */
.menu-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card:hover .menu-card-image::after {
    opacity: 1;
}

/* Badge ameliore */
.menu-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.4);
    backdrop-filter: blur(10px);
}

/* Contenu de la carte */
.menu-card-content {
    padding: 1.5rem;
    position: relative;
}

.menu-card-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

body.dark-mode .menu-card-title {
    color: var(--text-dark);
}

.menu-card-description {
    font-family: var(--font-light);
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.75;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.dark-mode .menu-card-description {
    color: var(--text-dark);
}

/* Footer de la carte */
.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(45, 122, 62, 0.1);
}

/* Prix stylise */
.menu-price {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bouton commander */
.menu-order-btn {
    position: relative;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.3);
}

.menu-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.menu-order-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.4);
}

.menu-order-btn:hover::before {
    left: 100%;
}

/* ===== FILTRES PREMIUM ===== */

.menu-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 3rem;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

body.dark-mode .menu-filters {
    background: linear-gradient(135deg, rgba(30,40,35,0.9) 0%, rgba(20,30,25,0.7) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Ligne decorative animee */
.menu-filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    animation: filterLine 4s ease-in-out infinite;
}

@keyframes filterLine {
    0%, 100% { left: -50%; }
    50% { left: 100%; }
}

/* Style des boutons de filtre */
.filter-btn {
    position: relative;
    padding: 14px 28px;
    background: transparent;
    color: var(--text-light);
    border: 2px solid transparent;
    border-radius: 40px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

body.dark-mode .filter-btn {
    color: var(--text-dark);
}

/* Fond anime au hover */
.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 200%;
    height: 200%;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.35);
}

/* Animation d'apparition des cartes filtrees */
.menu-card.show {
    animation: cardShow 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.menu-card.hide {
    animation: cardHide 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardShow {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes cardHide {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
        height: 0;
        padding: 0;
        margin: 0;
    }
}

/* Responsive pour les filtres */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .menu-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .menu-card.featured .menu-card-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .menu-filters {
        padding: 15px 20px;
        gap: 8px;
        border-radius: 20px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .menu-filters {
        padding: 12px 15px;
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

/* Section header du menu ameliore */
.menu-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.menu-section .section-header .section-title {
    position: relative;
    display: inline-block;
}

.menu-section .section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* Bouton galerie ameliore */
.gallery-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.1), rgba(92, 181, 116, 0.1));
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 40px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.gallery-toggle-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.3);
}

.gallery-toggle-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.gallery-toggle-btn:hover svg {
    transform: rotate(90deg);
}

/* ===== HERO IMPACTANT - NOUVEAU DESIGN ===== */
.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image de fond */
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        to bottom,
        rgba(0,0,0,.65),
        rgba(0,0,0,.55),
        rgba(0,0,0,.80)
    );
}

/* Contenu centré */
.hero-content-centered {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

/* Badge localisation */
.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: white;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease 0.3s both;
}

.badge-icon {
    color: #FFD700;
    font-size: 1rem;
}

/* Titre principal impactant */
.hero-title-impact {
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-title-impact .title-main {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff  !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Tagline "La différence" */
.hero-tagline {
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    font-style: italic;
    color: #FFD700;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.7s both;
}

/* Services en ligne */
.hero-services {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.9s both;
}

.service-pill {
    font-family: var(--font-light);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.service-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6rem;
}

/* Boutons Hero */
.hero-cta-centered {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.1s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: white;
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: var(--primary);
    color: white;
}

.btn-hero-primary .btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

.btn-hero-whatsapp:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.btn-hero-whatsapp .whatsapp-icon {
    width: 22px;
    height: 22px;
}

/* Scroll indicator nouveau */
.scroll-indicator-new {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

.scroll-indicator-new span {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-title-impact .title-main {
        font-size: clamp(2.5rem, 15vw, 4rem);
    }

    .hero-tagline {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }

    .hero-services {
        gap: 10px;
    }

    .service-pill {
        font-size: 0.8rem;
    }

    .hero-cta-centered {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-whatsapp {
        padding: 16px 32px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .scroll-indicator-new {
        bottom: 25px;
    }
}

@media (max-width: 480px) {
    .hero-badge-new {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .hero-services .service-divider {
        display: none;
    }

    .hero-services {
        gap: 8px 15px;
    }
}

/* ===== SECTION CRÈMERIE - GLACES ===== */
.cremerie-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #fff5f8 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.dark-mode .cremerie-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a0a10 50%, var(--bg-dark) 100%);
}

.cremerie-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    animation: floatBg 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-2%, 2%) rotate(5deg); }
}

.glaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.glace-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dark-mode .glace-card {
    background: rgba(30, 30, 35, 0.95);
}

.glace-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.2);
}

.glace-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.glace-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.glace-card:hover .glace-image img {
    transform: scale(1.1);
}

.glace-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #E91E63, #FF5722);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.glace-content {
    padding: 25px;
}

.glace-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.dark-mode .glace-title {
    color: var(--text-dark);
}

.glace-description {
    font-family: var(--font-light);
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dark-mode .glace-description {
    color: #aaa;
}

.btn-glace {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-glace:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.whatsapp-icon-sm {
    width: 18px;
    height: 18px;
}

/* ===== ABOUT SECTION - NOTRE HISTOIRE AMÉLIORATION ===== */
.about-quote {
    font-family: var(--font-secondary);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--primary);
    padding: 25px 30px;
    margin: 30px 0;
    border-left: 4px solid var(--primary);
    background: linear-gradient(90deg, rgba(45, 122, 62, 0.08), transparent);
    border-radius: 0 12px 12px 0;
    line-height: 1.8;
}

.about-quote strong {
    display: block;
    margin-top: 10px;
    font-family: var(--font-accent);
    font-style: normal;
    font-weight: 700;
    color: var(--primary-dark);
}

.dark-mode .about-quote {
    background: linear-gradient(90deg, rgba(92, 181, 116, 0.1), transparent);
    color: var(--accent);
}

.dark-mode .about-quote strong {
    color: var(--accent);
}

/* ===== CONTACT SECTION - ADRESSE AMÉLIORATION ===== */
.address-directions {
    font-size: 0.95rem !important;
    color: #666;
    margin-top: 8px;
    line-height: 1.7 !important;
    font-style: italic;
}

.dark-mode .address-directions {
    color: #aaa;
}

.closed-day {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: rgba(244, 67, 54, 0.1);
    color: #e53935;
    border-radius: 15px;
    font-size: 0.85rem !important;
    font-weight: 500;
}

.dark-mode .closed-day {
    background: rgba(244, 67, 54, 0.2);
    color: #ff6659;
}

/* ===== RESPONSIVE CRÈMERIE ===== */
@media (max-width: 768px) {
    .cremerie-section {
        padding: 80px 0;
    }

    .glaces-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .glace-image {
        height: 180px;
    }

    .glace-content {
        padding: 20px;
    }

    .glace-title {
        font-size: 1.2rem;
    }

    .glace-description {
        font-size: 0.85rem;
    }

    .btn-glace {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .glaces-grid {
        grid-template-columns: 1fr;
    }

    .hero-slogan {
        font-size: 1.2rem;
    }
}
/* ===== SECTION BIENVENUE ===== */
.welcome-section {
    background: var(--white);
    padding: 6rem 0;
}

body.dark-mode .welcome-section {
    background: #0d120f;
}

.welcome-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.welcome-text {
    font-family: var(--font-light);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 2;
    color: var(--text-light);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

body.dark-mode .welcome-text {
    color: var(--text-dark);
}

/* ===== SECTION NOS UNIVERS ===== */
.univers-section{
    padding:120px 0;
}

.univers-item{
    display:flex;
    align-items:center;
    gap:70px;

    margin-bottom:80px;
    padding:25px;

    border-radius:30px;
}

.reverse{
    flex-direction:row-reverse;
}

.univers-image{
    flex:1;
}

.univers-image img{

    width:100%;
    height:380px;

    object-fit:cover;

    border-radius:25px;
}

.univers-content{

    flex:1;
}

.univers-category{

    display:inline-block;

    color:var(--primary);

    font-weight:600;

    margin-bottom:15px;

    text-transform:uppercase;

    letter-spacing:2px;
}

.univers-content h3{

    font-size:3rem;

    margin-bottom:20px;
}

.univers-content p{

    margin-bottom:35px;

    line-height:1.9;

    opacity:.8;
}

.univers-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    color:white;

    background:var(--primary);

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    transition:.35s;
}

.univers-btn span{

    transition:.3s;
}

.univers-btn:hover{

    transform:translateY(-4px);
}

.univers-btn:hover span{

    transform:translateX(8px);
}

.univers-item:hover img{

    transform:scale(1.05);
}

.univers-image{

    overflow:hidden;

    border-radius:25px;
}

.univers-image img{

    transition:.6s;
}

@media(max-width:991px){

.univers-item{

flex-direction:column;

}

.reverse{

flex-direction:column;

}

.univers-content{

text-align:center;

}

}
/* ===== SECTION CAVE A VIN ===== */
.cave-section {
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

body.dark-mode .cave-section {
    background: var(--bg-dark);
}

.cave-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cave-card {
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cave-card:hover {
    transform: translateY(-10px);
}

.cave-image {
    height: 260px;
    overflow: hidden;
}

.cave-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cave-card:hover .cave-image img {
    transform: scale(1.1);
}

.cave-content {
    padding: 1.8rem;
    text-align: center;
}

.cave-content h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

body.dark-mode .cave-content h3 {
    color: var(--text-dark);
}

.cave-content p {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

body.dark-mode .cave-content p {
    color: var(--text-dark);
}

.cave-note {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

body.dark-mode .cave-note {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
}

.cave-cta {
    text-align: center;
}

.boissons-section {
    background: var(--white);
}
 
body.dark-mode .boissons-section {
    background: #0d120f;
}
 
.boisson-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}
 
.boisson-filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
 
body.dark-mode .boisson-filter-btn {
    color: var(--accent);
    border-color: var(--accent);
}
 
.boisson-filter-btn:hover,
.boisson-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
 
.boisson-category {
    display: none;
    margin-bottom: 3rem;
}
 
.boisson-category.visible {
    display: block;
}
 
.boisson-category-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--white);
    background: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    margin-top: 2rem;
}
 
.boisson-category-title:first-child {
    margin-top: 0;
}
 /* ============================================= */
/* STYLE ELEGANT MENU & BOISSONS (2 colonnes,      */
/* points de suite, typographie Playfair)          */
/* Remplace le style .boisson-list/.boisson-row     */
/* precedent - a ajouter a la fin de styles.css     */
/* ============================================= */

.elegant-menu-wrap {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: var(--bg-light);
    background-image:
        radial-gradient(circle at 0% 0%, rgba(45, 122, 62, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(45, 122, 62, 0.05) 0%, transparent 40%);
    border: 1px solid rgba(45, 122, 62, 0.15);
    border-radius: 6px;
}

body.dark-mode .elegant-menu-wrap {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
}

/* En-tete de categorie */
.category-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.4rem;
}

.category-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.category-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
}

body.dark-mode .category-name {
    color: var(--accent);
}

.category-line {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(to right, var(--primary) 0, var(--primary) 4px, transparent 4px, transparent 9px);
    opacity: 0.5;
}

/* Grille 2 colonnes de plats */
.dish-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
}

.dish-col {
    display: flex;
    flex-direction: column;
}

.dish-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 0.65rem 0;
}

.dish-name-wrap {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    max-width: 65%;
}

.dish-name {
    font-family: var(--font-primary);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: normal;
    line-height: 1.3;
}

body.dark-mode .dish-name {
    color: var(--text-dark);
}

.dish-desc {
    display: block;
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 0.82rem;
    color: var(--text-light);
    opacity: 0.65;
    margin-top: 2px;
    line-height: 1.3;
}

body.dark-mode .dish-desc {
    color: var(--text-dark);
}

.dish-leader {
    flex: 1;
    border-bottom: 1.5px dotted rgba(45, 122, 62, 0.4);
    transform: translateY(-5px);
    min-width: 15px;
}

body.dark-mode .dish-leader {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.dish-price {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

body.dark-mode .dish-price {
    color: var(--accent);
}

/* Sous-titres (Plats Locaux : Pates / Foufou / Autres) */
.menu-sublabel {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--primary);
    margin: 1.3rem 0 0.8rem;
}

body.dark-mode .menu-sublabel {
    color: var(--accent);
}

/* NB inline (Grillades) */
.menu-nb-inline {
    font-family: var(--font-light);
    font-size: 0.88rem;
    opacity: 0.7;
    margin-top: 0.8rem;
    text-align: center;
}

/* Separateur decoratif entre categories */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 2rem 0;
    font-size: 1.1rem;
    opacity: 0.6;
}

.ornament-divider::before,
.ornament-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--primary);
    opacity: 0.25;
    max-width: 120px;
}

body.dark-mode .ornament-divider::before,
body.dark-mode .ornament-divider::after {
    background: var(--accent);
}


.boisson-row:hover {
    background: rgba(45, 122, 62, 0.04);
}
 
body.dark-mode .boisson-row {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
 
body.dark-mode .boisson-row:hover {
    background: rgba(255, 255, 255, 0.04);
}
 
.boisson-name {
    color: var(--text-light);
    font-size: 1rem;
    flex: 1;
}
 
body.dark-mode .boisson-name {
    color: var(--text-dark);
}
 
.boisson-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}
 
body.dark-mode .boisson-price {
    color: var(--accent);
}
 
/* Responsive */
@media (max-width: 768px) {
    .univers-grid {
        grid-template-columns: 1fr 1fr;
    }
 
    .cave-grid {
        grid-template-columns: 1fr 1fr;
    }
 
    .boisson-filters {
        gap: 0.5rem;
    }
 
    .boisson-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
 
    .boisson-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}
 
@media (max-width: 480px) {
    .univers-grid,
    .cave-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== SECTION EVENEMENTS ===== */
.evenements-section {
    background: var(--white);
}

body.dark-mode .evenements-section {
    background: #0d120f;
}

.evenements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.evenement-card {
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.evenement-card:hover {
    transform: translateY(-12px);
}

.evenement-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.evenement-card h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

body.dark-mode .evenement-card h3 {
    color: var(--text-dark);
}

.evenement-card p {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 1rem;
}

body.dark-mode .evenement-card p {
    color: var(--text-dark);
}

.evenements-cta {
    text-align: center;
}

/* ===== SECTION LIVRAISON ===== */
.livraison-section {
    background: var(--bg-light);
}

body.dark-mode .livraison-section {
    background: var(--bg-dark);
}

.livraison-content {
    max-width: 700px;
    margin: 0 auto;
}

.livraison-form {
    padding: 3rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.livraison-form .form-group {
    display: flex;
    flex-direction: column;
}

.livraison-form label {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

body.dark-mode .livraison-form label {
    color: var(--text-dark);
}

.livraison-form input,
.livraison-form textarea {
    padding: 1rem;
    border: 2px solid rgba(45, 122, 62, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

body.dark-mode .livraison-form input,
body.dark-mode .livraison-form textarea {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
    border-color: rgba(255, 255, 255, 0.1);
}

.livraison-form input:focus,
.livraison-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
    transform: translateY(-2px);
}

.livraison-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== SECTION AVIS CLIENTS ===== */
.avis-section {
    background: var(--white);
}

body.dark-mode .avis-section {
    background: #0d120f;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.avis-card {
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.avis-card:hover {
    transform: translateY(-10px);
}

.avis-stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.avis-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

body.dark-mode .avis-text {
    color: var(--text-dark);
}

.avis-author {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

body.dark-mode .avis-author {
    color: var(--accent);
}

.avis-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.avis-cta .btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.avis-cta .btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

body.dark-mode .avis-cta .btn-secondary {
    color: var(--accent);
    border-color: var(--accent);
}

body.dark-mode .avis-cta .btn-secondary:hover {
    background: var(--accent);
    color: var(--bg-dark);
}
/* ===== CTA CROISE BOISSONS -> CAVE A VIN ===== */
.boisson-wine-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(139, 69, 19, 0.06);
    border-radius: 24px;
}
 
body.dark-mode .boisson-wine-cta {
    background: rgba(255, 255, 255, 0.04);
}
 
.boisson-wine-text {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}
 
body.dark-mode .boisson-wine-text {
    color: var(--text-dark);
}

.btn-univers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 2rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-univers:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

body.dark-mode .btn-univers {
    border-color: var(--accent);
    color: var(--accent);
}

body.dark-mode .btn-univers:hover {
    background: var(--accent);
    color: var(--bg-dark);
}
 
/* ===== SECTION GALERIE PAR UNIVERS ===== */
.galerie-section {
    background: var(--bg-light);
}

body.dark-mode .galerie-section {
    background: var(--bg-dark);
}

.galerie-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.galerie-filter-btn {
    padding: 0.7rem 1.6rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.dark-mode .galerie-filter-btn {
    color: var(--accent);
    border-color: var(--accent);
}

.galerie-filter-btn:hover,
.galerie-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

body.dark-mode .galerie-filter-btn.active,
body.dark-mode .galerie-filter-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.galerie-grid .gallery-item {
    display: block;
    position: relative;
    aspect-ratio: 1;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.galerie-grid .gallery-item.gallery-hidden {
    display: none;
}

.galerie-grid .gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(45, 122, 62, 0.2);
}

.galerie-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galerie-grid .gallery-item:hover img {
    transform: scale(1.08);
}

.galerie-grid .gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galerie-grid .gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.galerie-grid .gallery-item-overlay h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    margin: 0;
}

/* Animation d'entree lors du filtrage */
.galerie-grid .gallery-item.gallery-show {
    animation: galerieItemShow 0.4s ease forwards;
}
/* ===== MENU EN ACCORDEON ===== */
.menu-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(45, 122, 62, 0.1);
}

body.dark-mode .accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 1.8rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    transition: background 0.3s ease;
}

body.dark-mode .accordion-header {
    color: var(--text-dark);
}

.accordion-header:hover {
    background: rgba(45, 122, 62, 0.05);
}

body.dark-mode .accordion-header:hover {
    background: rgba(255, 255, 255, 0.04);
}

.accordion-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
    color: var(--primary);
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

body.dark-mode .accordion-icon {
    color: var(--accent);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.8rem;
}

.accordion-item.active .accordion-content {
    padding: 0 1.8rem 1.5rem;
}

.menu-sublabel {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    color: var(--primary);
    margin: 1.5rem 0 0.8rem;
}

body.dark-mode .menu-sublabel {
    color: var(--accent);
}

.menu-sublabel:first-child {
    margin-top: 0.5rem;
}

.menu-list {
    display: flex;
    flex-direction: column;
}

.menu-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(45, 122, 62, 0.08);
}

body.dark-mode .menu-list-row {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.menu-list-row:last-child {
    border-bottom: none;
}

.menu-list-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.menu-list-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
}

body.dark-mode .menu-list-name {
    color: var(--text-dark);
}

.menu-list-desc {
    font-family: var(--font-light);
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.65;
}

body.dark-mode .menu-list-desc {
    color: var(--text-dark);
}

.menu-list-action {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.menu-list-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    white-space: nowrap;
}

body.dark-mode .menu-list-price {
    color: var(--accent);
}

.menu-order-btn-sm {
    padding: 0.4rem 0.9rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.menu-order-btn-sm:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Tableau NB (poissons/viandes disponibles) pour Grillades */
.menu-nb-table {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(45, 122, 62, 0.15);
}

.menu-nb-header {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-nb-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.menu-nb-col {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
}

.menu-nb-col:first-child {
    border-right: 1px solid rgba(45, 122, 62, 0.15);
}

.menu-nb-col strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

body.dark-mode .menu-nb-col strong {
    color: var(--accent);
}

.menu-nb-col p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}
/* ===== MENU EN LISTE SIMPLE - FILTRES (identiques au style Boissons) ===== */
.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.menu-filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.dark-mode .menu-filter-btn {
    color: var(--accent);
    border-color: var(--accent);
}

.menu-filter-btn:hover,
.menu-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

body.dark-mode .menu-filter-btn.active,
body.dark-mode .menu-filter-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.menu-category {
    margin-bottom: 2.5rem;
}

.menu-nb-inline {
    font-family: var(--font-light);
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.8rem;
    text-align: center;
}

/* ===== HERO SLIDESHOW (remplace le fond statique) ===== */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: brightness(35%);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* La regle @keyframes slowZoom existe deja dans styles.css (reutilisee) */
@media (max-width: 600px) {
    .accordion-header {
        padding: 1.1rem 1.3rem;
        font-size: 1.1rem;
    }

    .accordion-content {
        padding: 0 1.3rem;
    }

    .accordion-item.active .accordion-content {
        padding: 0 1.3rem 1.2rem;
    }

    .menu-list-row {
        flex-wrap: wrap;
    }

    .menu-nb-content {
        grid-template-columns: 1fr;
    }

    .menu-nb-col:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(45, 122, 62, 0.15);
    }
}

@keyframes galerieItemShow {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .galerie-filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .galerie-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .evenements-grid,
    .avis-grid {
        grid-template-columns: 1fr;
    }

    .livraison-form {
        padding: 2rem 1.5rem;
    }

    .avis-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .univers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cave-grid {
        grid-template-columns: 1fr 1fr;
    }

    .boisson-filters {
        gap: 0.5rem;
    }

    .boisson-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .boisson-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}

@media (max-width: 1200px) {
    .univers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .univers-grid {
        grid-template-columns: 1fr;
    }
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== CONTACT SIMPLIFIE (sans carte) - ajustement grille ===== */
.contact-grid-simple {
    grid-template-columns: 1.2fr 1fr !important;
    align-items: stretch;
}

.contact-grid-simple .contact-whatsapp {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .contact-grid-simple {
        grid-template-columns: 1fr !important;
    }
}
/* ============================================= */
/* ESPACEMENT COMPACT - a ajouter TOUT A LA FIN    */
/* de styles.css (apres tout le reste) pour que     */
/* ces regles aient la priorite et reduisent les    */
/* grands espaces vides entre sections, SANS         */
/* toucher au contenu ni aux textes.                 */
/* ============================================= */

/* Espacement vertical des sections : 8rem -> 4.5rem */
section {
    padding: 4.5rem 0 !important;
}

/* Le hero garde sa hauteur pleine page (inchange) */
.hero-fullscreen {
    padding: 0 !important;
}

/* Marge sous les en-tetes de section : 4rem -> 2rem */
.section-header {
    margin-bottom: 2rem !important;
}

.section-header.center {
    margin-bottom: 2.5rem !important;
}

/* Reduit l'espace au-dessus des titres */
.section-title {
    margin-bottom: 1rem !important;
}

.section-label {
    margin-bottom: 0.5rem !important;
}

/* Stats section un peu plus compacte */
.stats {
    padding: 2.5rem 0 !important;
}

/* Bienvenue section */
.welcome-section {
    padding: 3.5rem 0 !important;
}

/* Espace entre les paragraphes du texte Bienvenue / Notre Histoire */
.welcome-text,
.about p,
.section-description {
    margin-bottom: 1rem !important;
}

/* Grilles avec un peu moins d'ecart vertical */
.menu-grid,
.univers-grid,
.cave-grid,
.grocery-grid,
.glaces-grid,
.evenements-grid,
.avis-grid {
    gap: 1.5rem !important;
}

/* Reduit l'espace au-dessus des sous-listes du menu / plats locaux */
.menu-category {
    margin-bottom: 1.5rem !important;
}

.boisson-category-title {
    margin: 1.2rem 0 0.8rem !important;
}

/* Cave a vin CTA et autres blocs CTA */
.cave-cta,
.evenements-cta,
.avis-cta {
    margin-top: 1.5rem !important;
}
/* ============================================= */
/* STYLE ELEGANT MENU & BOISSONS - VERSION 2       */
/* (icones SVG, nav collante, badges, repli,       */
/* effet survol) - remplace style-elegant.css      */
/* precedent en entier                              */
/* ============================================= */

.elegant-menu-wrap {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: var(--bg-light);
    background-image:
        radial-gradient(circle at 0% 0%, rgba(45, 122, 62, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(45, 122, 62, 0.05) 0%, transparent 40%);
    border: 1px solid rgba(45, 122, 62, 0.15);
    border-radius: 6px;
}

body.dark-mode .elegant-menu-wrap {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
}

/* ===== NAVIGATION COLLANTE (mini table des matieres) ===== */
.menu-sticky-nav {
    position: sticky;
    top: 90px;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 auto 2.5rem;
    max-width: 950px;
    padding: 0.6rem;
}

body.dark-mode .menu-sticky-nav {
    background: rgba(20, 25, 23, 0.92);
}

.menu-sticky-nav-inner {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 0.3rem;
}

.menu-sticky-nav-inner::-webkit-scrollbar {
    display: none;
}

.menu-nav-pill {
    flex-shrink: 0;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

body.dark-mode .menu-nav-pill {
    color: var(--text-dark);
}

.menu-nav-pill:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== ICONES DE CATEGORIE ===== */
.category-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.4rem;
    scroll-margin-top: 160px;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--primary);
    background: rgba(45, 122, 62, 0.08);
    border-radius: 50%;
}

body.dark-mode .category-icon {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
}

.category-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
}

body.dark-mode .category-name {
    color: var(--accent);
}

.category-line {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(to right, var(--primary) 0, var(--primary) 4px, transparent 4px, transparent 9px);
    opacity: 0.5;
}

/* ===== GRILLE 2 COLONNES DE PLATS ===== */
.dish-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
}

.dish-col {
    display: flex;
    flex-direction: column;
}

.dish-name-wrap {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    max-width: 65%;
}

.dish-name {
    font-family: var(--font-primary);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
}

body.dark-mode .dish-name {
    color: var(--text-dark);
}

/* ===== BADGES POPULAIRE / SIGNATURE ===== */
.dish-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    font-family: var(--font-accent);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    background: var(--primary);
    vertical-align: middle;
    transform: translateY(-1px);
}

.dish-badge.badge-signature {
    background: #b8860b;
}

.dish-desc {
    display: block;
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 0.82rem;
    color: var(--text-light);
    opacity: 0.65;
    margin-top: 2px;
    line-height: 1.3;
}

body.dark-mode .dish-desc {
    color: var(--text-dark);
}

.dish-leader {
    flex: 1;
    border-bottom: 1.5px dotted rgba(45, 122, 62, 0.4);
    transform: translateY(-5px);
    min-width: 15px;
}

body.dark-mode .dish-leader {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.dish-price {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

body.dark-mode .dish-price {
    color: var(--accent);
}

/* ===== SOUS-TITRES (Plats Locaux) ===== */
.menu-sublabel {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--primary);
    margin: 1.3rem 0 0.8rem;
}

body.dark-mode .menu-sublabel {
    color: var(--accent);
}

.menu-nb-inline {
    font-family: var(--font-light);
    font-size: 0.88rem;
    opacity: 0.7;
    margin-top: 0.8rem;
    text-align: center;
}

/* ===== SEPARATEUR DECORATIF ===== */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 2rem 0;
    font-size: 1.1rem;
    opacity: 0.6;
}

.ornament-divider::before,
.ornament-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--primary);
    opacity: 0.25;
    max-width: 120px;
}

body.dark-mode .ornament-divider::before,
body.dark-mode .ornament-divider::after {
    background: var(--accent);
}
/* ============================================= */
/* STYLE PREMIUM MENU & BOISSONS - VERSION 3       */
/* (cadre dore, coins ornementaux, typographie      */
/* fine-dining, badges discrets) - remplace         */
/* style-final.css en entier                        */
/* ============================================= */

:root {
    --gold: #b8860b;
    --gold-light: #d4a94e;
}

/* ===== CADRE GENERAL DE LA CARTE ===== */
.menu-frame {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

body.dark-mode .menu-frame {
    background: rgba(255, 255, 255, 0.03);
}

.menu-frame-inner {
    position: relative;
    border: 1px solid rgba(184, 134, 11, 0.4);
    padding: 3.5rem 3rem;
}

.menu-frame-inner::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(45, 122, 62, 0.2);
    pointer-events: none;
}

body.dark-mode .menu-frame-inner {
    border-color: rgba(212, 169, 78, 0.35);
}

body.dark-mode .menu-frame-inner::before {
    border-color: rgba(92, 181, 116, 0.2);
}

/* Coins ornementaux */
.corner {
    position: absolute;
    width: 30px;
    height: 30px;
    color: var(--gold);
    opacity: 0.8;
    z-index: 2;
}

.corner-tl { top: 8px; left: 8px; }
.corner-tr { top: 8px; right: 8px; transform: scaleX(-1); }
.corner-bl { bottom: 8px; left: 8px; transform: scaleY(-1); }
.corner-br { bottom: 8px; right: 8px; transform: scale(-1, -1); }

/* ===== NAVIGATION COLLANTE - style tabs fins ===== */
.menu-sticky-nav {
    position: sticky;
    top: 90px;
    z-index: 50;
    background: rgba(250, 247, 240, 0.94);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(184, 134, 11, 0.25);
    border-bottom: 1px solid rgba(184, 134, 11, 0.25);
    margin: 0 auto 2.5rem;
    max-width: 950px;
    padding: 0.9rem 0.5rem;
}

body.dark-mode .menu-sticky-nav {
    background: rgba(15, 20, 18, 0.94);
}

.menu-sticky-nav-inner {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: center;
    padding: 0 0.5rem;
}

.menu-sticky-nav-inner::-webkit-scrollbar {
    display: none;
}

.menu-nav-link {
    flex-shrink: 0;
    position: relative;
    padding: 0.3rem 0.1rem;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

body.dark-mode .menu-nav-link {
    color: var(--text-dark);
}

.menu-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.menu-nav-link:hover {
    color: var(--gold);
}

.menu-nav-link:hover::after {
    width: 100%;
}

/* ===== EN-TETE DE CATEGORIE ===== */
.category-heading {
    text-align: center;
    margin-bottom: 1.8rem;
    scroll-margin-top: 170px;
}

.category-eyebrow {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

body.dark-mode .category-eyebrow {
    color: var(--accent);
}

.category-name {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-light);
}

body.dark-mode .category-name {
    color: var(--text-dark);
}

/* ===== GRILLE DE PLATS ===== */
.dish-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
}

.dish-col {
    display: flex;
    flex-direction: column;
}

.dish-top {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.dish-name {
    font-family: var(--font-primary);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
}

body.dark-mode .dish-name {
    color: var(--text-dark);
}

/* ===== ETIQUETTES CHEF (Populaire / Signature) ===== */
.chef-tag {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 8px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-accent);
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    vertical-align: middle;
    transform: translateY(-1px);
    white-space: nowrap;
}

.dish-desc {
    display: block;
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 0.82rem;
    color: var(--text-light);
    opacity: 0.6;
    margin-top: 2px;
    line-height: 1.3;
}

body.dark-mode .dish-desc {
    color: var(--text-dark);
}

.dish-leader {
    flex: 1;
    border-bottom: 1px dotted rgba(45, 122, 62, 0.35);
    transform: translateY(-4px);
    min-width: 12px;
}

body.dark-mode .dish-leader {
    border-bottom-color: rgba(255, 255, 255, 0.18);
}

.dish-price {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

body.dark-mode .dish-price {
    color: var(--accent);
}

/* ===== SOUS-TITRES (Plats Locaux) ===== */
.menu-sublabel {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary);
    text-align: center;
    margin: 1.5rem 0 1rem;
}

body.dark-mode .menu-sublabel {
    color: var(--accent);
}

.menu-nb-inline {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
    text-align: center;
}

/* ===== REPLI PLATS LOCAUX ===== */
.menu-toggle-locaux {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0.9rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

body.dark-mode .menu-toggle-locaux {
    border-color: var(--accent);
    color: var(--accent);
}

.menu-toggle-locaux:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

body.dark-mode .menu-toggle-locaux:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

.menu-toggle-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.menu-toggle-locaux[data-expanded="true"] .menu-toggle-icon {
    transform: rotate(180deg);
}

.menu-locaux-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.menu-locaux-content.expanded {
    max-height: 4000px;
    padding-top: 1.2rem;
}

/* ===== SEPARATEUR FLEURI (SVG, plus d'emoji) ===== */
.flourish-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 2.5rem 0;
    color: var(--gold);
}

.flourish-divider svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.flourish-divider .line {
    height: 1px;
    width: 90px;
    background: linear-gradient(to right, transparent, rgba(184, 134, 11, 0.6));
}

.flourish-divider .line.right {
    background: linear-gradient(to left, transparent, rgba(184, 134, 11, 0.6));
}

.dish-row {
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    border-bottom: 1px solid rgba(45, 122, 62, 0.1);
    transition: background 0.25s ease;
}

.dish-row:last-child {
    border-bottom: none;
}

.dish-row:hover {
    background: rgba(45, 122, 62, 0.06);
}

body.dark-mode .dish-row {
    border-bottom-color: rgba(255, 255, 255, 0.07);
}

body.dark-mode .dish-row:hover {
    background: rgba(255, 255, 255, 0.05);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-frame-inner {
        padding: 2.2rem 1.4rem;
    }

    .dish-grid {
        grid-template-columns: 1fr;
    }

    .category-name {
        font-size: 1.4rem;
    }

    .menu-sticky-nav {
        top: 70px;
    }

    .menu-sticky-nav-inner {
        justify-content: flex-start;
        gap: 1.3rem;
    }

    .flourish-divider .line {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .dish-name {
        font-size: 0.92rem;
    }

    .dish-price {
        font-size: 0.82rem;
    }

    .chef-tag {
        display: block;
        margin-left: 0;
        margin-top: 4px;
        width: fit-content;
    }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .elegant-menu-wrap {
        padding: 2rem 1.3rem;
    }

    .dish-grid {
        grid-template-columns: 1fr;
    }

    .category-name {
        font-size: 1.3rem;
    }

    .dish-name-wrap {
        max-width: 60%;
    }

    .menu-sticky-nav {
        top: 70px;
    }
}

@media (max-width: 480px) {
    .dish-name-wrap {
        max-width: 55%;
    }

    .dish-name {
        font-size: 0.92rem;
    }

    .dish-price {
        font-size: 0.85rem;
    }

    .dish-badge {
        display: block;
        margin-left: 0;
        margin-top: 4px;
        width: fit-content;
    }
}
@media (max-width: 768px) {
    section {
        padding: 3rem 0 !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .elegant-menu-wrap {
        padding: 2rem 1.3rem;
    }

    .dish-grid {
        grid-template-columns: 1fr;
    }

    .category-name {
        font-size: 1.3rem;
    }

    .dish-name-wrap {
        max-width: 60%;
    }
}

@media (max-width: 480px) {
    .dish-name-wrap {
        max-width: 55%;
    }

    .dish-name {
        font-size: 0.92rem;
    }

    .dish-price {
        font-size: 0.85rem;
    }
}
 
/* ===== LISTE DE PRIX PAR FORMAT (Glaces / Yaourt) ===== */
.glace-price-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.glace-price-list span {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-light);
    opacity: 0.75;
    white-space: nowrap;
}

body.dark-mode .glace-price-list span {
    color: var(--text-dark);
}

.glace-price-list strong {
    color: var(--primary);
    font-weight: 700;
    opacity: 1;
}

body.dark-mode .glace-price-list strong {
    color: var(--accent);
}

.detail-content a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-content a:hover {
    color: var(--primary);
}

body.dark-mode .detail-content a:hover {
    color: var(--accent);
}