        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800&display=swap');
        
        :root {
            --primary: #c24a2c;      /* Terracotta riche */
            --primary-dark: #9e3b22;
            --secondary: #e6b89c;    /* Pêche italienne */
            --dark: #2c1e16;         /* Brun profond */
            --light: #faf3eb;         /* Crème chaleureuse */
            --accent: #7c9a6e;        /* Vert olive doux */
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }

        /* Décalage pour que les ancres ne soient pas cachées par le header fixe */
        section[id],
        div[id] {
            scroll-margin-top: 90px;
        }

        #reservation::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('image/pattern-reservation.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.5;
            pointer-events: none;
            z-index: 0;
        }

        .hero-wave {
            bottom: -15px;
        }

        @media (min-width: 768px) {
            .hero-wave {
                bottom: -80px;
            }
        }

        .hero-bg-image {
            position: absolute;
            inset: 0;
            background-image: url('image/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            background-repeat: no-repeat;
            opacity: 0.32;
            pointer-events: none;
        }

        /* Effet fixe (parallaxe) uniquement sur desktop : buggé sur mobile */
        @media (min-width: 768px) {
            .hero-bg-image {
                background-attachment: fixed;
            }
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }
        
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        
        .title-font {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        .italian-pattern {
            background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNMzAgMTBhMjAgMjAgMCAwIDEgMjAgMjAgMjAgMjAgMCAwIDEtNDAgMCAyMCAyMCAwIDAgMSAyMC0yMHoiIGZpbGw9IiNjMjRhMmMiIG9wYWNpdHk9IjAuMDgiLz48cGF0aCBkPSJNMzAgMzBhMTAgMTAgMCAwIDEgMTAgMTAgMTAgMTAgMCAwIDEtMjAgMCAxMCAxMCAwIDAgMSAxMC0xMHoiIGZpbGw9IiM3YzlhNmUiIG9wYWNpdHk9IjAuMDgiLz48L3N2Zz4=');
            background-repeat: repeat;
            opacity: 0.4;
        }
        
        .dish-card:hover .dish-img {
            transform: scale(1.05);
        }
        
        .floating {
            animation: floating 4s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .spin {
            animation: spin 20s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .menu-item::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .menu-item:hover::after {
            width: 100%;
        }
        
        /* ANIMATIONS POUR LE HERO */
        @keyframes pasta-fall {
            0% { transform: translateY(-10%) rotate(0deg); opacity: 0.05; }
            100% { transform: translateY(100vh) rotate(360deg); opacity: 0.05; }
        }
        .animate-pasta-fall {
            animation: pasta-fall 15s linear infinite;
        }
        .animate-spin-slow {
            animation: spin 20s linear infinite;
        }
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .shadow-3xl {
            box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.5);
        }
        
        /* MENU MOBILE LATÉRAL AMÉLIORÉ */
        #mobile-menu {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: linear-gradient(145deg, #2c1e16 0%, #3d2c22 100%);
            z-index: 9999;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 80px 20px 30px;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
            overflow-y: auto;
            border-left: 4px solid var(--primary);
        }
        
        #mobile-menu.open {
            right: 0;
        }
        
        #mobile-menu a {
            display: flex;
            align-items: center;
            color: #f0e9e2;
            padding: 15px 20px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 1.1rem;
            border: 1px solid transparent;
        }
        
        #mobile-menu a:hover {
            background-color: rgba(194, 74, 44, 0.2);
            border-color: var(--primary);
            color: white;
            transform: translateX(6px);
        }
        
        #mobile-menu a i {
            margin-right: 15px;
            width: 24px;
            text-align: center;
            color: var(--secondary);
        }
        
        #mobile-menu .menu-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            margin: 20px 0;
        }
        
        #mobile-menu .language-selector {
            margin-top: 25px;
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        
        #mobile-menu .language-selector button {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(194, 74, 44, 0.4);
            color: #f0e9e2;
            padding: 8px 16px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 600;
            min-width: 60px;
        }
        
        #mobile-menu .language-selector button.active {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(194, 74, 44, 0.4);
        }
        
        #close-mobile-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(194, 74, 44, 0.2);
            border: none;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 20px;
        }
        
        #close-mobile-menu:hover {
            background: var(--primary);
            transform: rotate(90deg);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(4px);
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .menu-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(230, 184, 156, 0.2);
        }
        
        .menu-header h3 {
            color: white;
            font-size: 1.6rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            margin-bottom: 5px;
        }
        
        .menu-header p {
            color: var(--secondary);
            font-size: 0.9rem;
        }
        
        #mobile-menu-button {
            cursor: pointer;
            z-index: 10000;
            position: relative;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        /* Cache le bouton burger quand le menu est ouvert */
        body.menu-open #mobile-menu-button {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        
        /* Call button */
        .call-button {
            display: none;
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            font-size: 24px;
            box-shadow: 0 6px 15px rgba(194, 74, 44, 0.3);
            border: none;
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .call-button:hover {
            transform: scale(1.1);
        }
        
        @media (max-width: 768px) {
            .call-button {
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }
        
        /* Language switcher */
        .language-switcher {
            position: relative;
            display: inline-block;
            margin-left: 15px;
        }
        
        .language-button {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 5px 12px;
            border-radius: 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .language-button:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--secondary);
        }
        
        .language-dropdown {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            background-color: #2c1e16;
            min-width: 120px;
            box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
            z-index: 1;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--primary);
        }
        
        .language-dropdown a {
            color: #f0e9e2;
            padding: 10px 16px;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: background-color 0.3s ease;
        }
        
        .language-dropdown a:hover {
            background-color: var(--primary);
        }
        
        .language-switcher:hover .language-dropdown {
            display: block;
        }
        
        /* AMÉLIORATION DU CARROUSEL MENU */
        #menu-carousel {
            width: 100%;
            display: flex;
            align-items: flex-start;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .menu-column {
            width: 33.333% !important;
            flex-shrink: 0;
            min-height: 500px;
            height: auto;
            display: flex;
            flex-direction: column;
            padding: 0 12px;
            transition: all 0.3s ease;
        }
        
        .menu-column.expanded {
            min-height: 700px;
        }
        
        .menu-column-content {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            border-radius: 28px;
            padding: 28px 22px;
            box-shadow: 0 20px 35px -8px rgba(44, 30, 22, 0.15);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            border: 1px solid rgba(194, 74, 44, 0.2);
        }
        
        @media (max-width: 768px) {
            .menu-column {
                width: 20% !important;
                padding: 0 8px;
            }
            
            #menu-carousel {
                width: 500%;
            }
            
            .menu-column-content {
                padding: 20px 15px;
                margin: 0 3px;
            }
        }
        
        .menu-item-card {
            background: white;
            padding: 18px 16px;
            border-radius: 18px;
            margin-bottom: 14px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            border: 1px solid rgba(194, 74, 44, 0.1);
            transition: all 0.3s ease;
        }
        
        .menu-item-card:hover {
            box-shadow: 0 10px 25px -8px rgba(194, 74, 44, 0.2);
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        
        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 8px;
        }
        
        .menu-item-title {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark);
            flex: 1;
            margin-right: 12px;
            font-family: 'Playfair Display', serif;
        }
        
        .menu-item-price {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.1rem;
            white-space: nowrap;
            background: rgba(194, 74, 44, 0.1);
            padding: 4px 10px;
            border-radius: 30px;
        }
        
        .menu-item-description {
            color: #5f4d40;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .see-more-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            padding: 8px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(194, 74, 44, 0.3);
            margin-top: 16px;
            width: auto;
            min-width: 140px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            align-self: center;
        }
        
        .see-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(194, 74, 44, 0.4);
        }
        
        .more-items-section {
            background: #faf3eb;
            border-radius: 16px;
            padding: 16px;
            margin-top: 8px;
            border: 1px solid rgba(194, 74, 44, 0.2);
        }
        
        .indicator-dot {
            transition: all 0.3s ease;
            cursor: pointer;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #d4b8a8;
        }
        
        .indicator-dot.active {
            background-color: var(--primary);
            transform: scale(1.3);
            box-shadow: 0 0 0 3px rgba(194, 74, 44, 0.2);
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            border: 2px solid white;
            cursor: pointer;
        }
        
        .carousel-nav:hover:not(:disabled) {
            background-color: var(--primary-dark);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-nav:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        #prev-col {
            left: -20px;
        }
        
        #next-col {
            right: -20px;
        }
        
        @media (max-width: 768px) {
            #prev-col { left: 0px; }
            #next-col { right: 0px; }
            .carousel-nav { width: 40px; height: 40px; font-size: 1rem; }
        }
        
        @media (min-width: 769px) {
            .indicator-dot:nth-child(4),
            .indicator-dot:nth-child(5) {
                display: none !important;
            }
        }
        
        /* Badge végétarien */
        .vegetarian-badge {
            background: #7c9a6e;
            color: white;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 30px;
            display: inline-block;
            margin-left: 8px;
        }
        
        /* Carte de spécialité améliorée */
        .specialty-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
            transition: all 0.3s;
            border: 1px solid rgba(194, 74, 44, 0.1);
        }
        
        .specialty-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 40px -12px rgba(194, 74, 44, 0.25);
        }

        /* Animations pour le hero */
        @keyframes pasta-fall {
            0% { transform: translateY(-10%) rotate(0deg); opacity: 0.05; }
            100% { transform: translateY(100vh) rotate(360deg); opacity: 0.05; }
        }
        .animate-pasta-fall {
            animation: pasta-fall 15s linear infinite;
        }
        .animate-spin-slow {
            animation: spin 20s linear infinite;
        }
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .shadow-3xl {
            box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.5);
        }
        
        /* STYLES POUR LE FOOTER MOBILE - ADAPTÉ DE TI AMO MARIA */
        @media (max-width: 768px) {
            .mobile-footer-grid {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 32px !important;
            }
            .mobile-footer-full-width {
                grid-column: 1 / -1 !important;
            }
            .mobile-footer-contact-item {
                display: flex !important;
                align-items: center !important;
                margin-bottom: 12px !important;
            }
            .mobile-footer-contact-item i {
                margin-right: 10px !important;
                min-width: 20px !important;
                color: var(--primary) !important;
            }
            .mobile-footer-social-icons {
                display: flex !important;
                justify-content: center !important;
                gap: 20px !important;
                margin-top: 20px !important;
                margin-bottom: 20px !important;
            }
            .mobile-footer-copyright {
                text-align: center !important;
                font-size: 0.875rem !important;
                padding-top: 16px !important;
                border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
            }
            .mobile-footer-title {
                font-size: 1.125rem !important;
                margin-bottom: 16px !important;
                padding-bottom: 8px !important;
                border-bottom: 2px solid var(--primary) !important;
                display: inline-block !important;
            }
            .mobile-footer-brand {
                text-align: center !important;
                margin-bottom: 32px !important;
            }
            .mobile-footer-brand-title {
                font-size: 2rem !important;
                font-weight: bold !important;
                margin-bottom: 12px !important;
                display: inline-block !important;
                border-bottom: 2px solid var(--primary) !important;
                padding-bottom: 8px !important;
                font-family: 'Playfair Display', serif !important;
            }
            .mobile-footer-brand-description {
                text-align: center !important;
                font-size: 0.95rem !important;
                line-height: 1.5 !important;
                max-width: 90% !important;
                margin: 0 auto 16px auto !important;
                color: rgba(255, 255, 255, 0.7) !important;
            }
            .mobile-footer-contact-item span {
                word-break: break-all !important;
                overflow-wrap: break-word !important;
                word-wrap: break-word !important;
                hyphens: auto !important;
                display: inline-block !important;
                max-width: 100% !important;
            }
            .email-wrap {
                display: inline !important;
                word-break: break-word !important;
                overflow-wrap: anywhere !important;
                hyphens: auto !important;
            }
            .mobile-footer-grid > div {
                width: 100% !important;
                overflow: hidden !important;
            }
            .footer-link-hover {
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
            }
            .footer-link-hover:hover {
                color: white !important;
                transform: translateX(5px);
            }
        }
        
        /* Style pour les liens du footer */
        .footer-link {
            position: relative;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .footer-link:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-link i {
            transition: all 0.3s ease;
        }

        /* Classes pour le système de traduction */
        [data-i18n] {
            transition: opacity 0.2s ease;
        }
