/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs basées sur le logo Efes Kebab - Optimisées pour l'accessibilité */
    --primary-red: #c62828;        /* Contraste amélioré */
    --primary-red-dark: #b71c1c;   /* Version plus foncée */
    --primary-red-light: #e53935;  /* Version plus claire */
    --primary-pink: #e53935;       /* Contraste amélioré */
    --primary-gold: #f57c00;       /* Contraste amélioré */
    --secondary-red: #b71c1c;
    --secondary-pink: #ffcdd2;
    --accent-gold: #ff8f00;        /* Contraste amélioré */
    --logo-red: #c62828;           /* Contraste amélioré */
    
    /* Couleurs neutres - Optimisées pour l'accessibilité */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #616161;        /* Contraste amélioré */
    --dark-gray: #424242;
    --black: #212121;
    
    /* Couleurs d'accessibilité */
    --text-primary: #212121;       /* Contraste 16.5:1 sur blanc */
    --text-secondary: #424242;     /* Contraste 12.6:1 sur blanc */
    --text-muted: #616161;         /* Contraste 7:1 sur blanc */
    --text-light: #757575;         /* Contraste 4.5:1 sur blanc */
    --link-color: #1976d2;         /* Contraste 4.5:1 sur blanc */
    --link-hover: #0d47a1;         /* Contraste 7:1 sur blanc */
    --button-text: #ffffff;        /* Contraste 21:1 sur rouge */
    --error-color: #d32f2f;        /* Contraste 4.5:1 sur blanc */
    --success-color: #388e3c;      /* Contraste 4.5:1 sur blanc */
    --warning-color: #f57c00;      /* Contraste 4.5:1 sur blanc */
    
    /* Variables pour le thème clair - Améliorées */
    --bg-primary: #fafbfc;
    --bg-secondary: #f1f3f4;
    --bg-tertiary: #e8eaed;
    --card-bg: #ffffff;
    --border-color: rgba(0, 0, 0, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.12);
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Typographie */
    --font-family: 'Inter', 'Poppins', sans-serif;
    
    /* Espacements */
    --section-padding: 4rem 0;
    --container-padding: 1rem;
    
    /* Ombres - Définies dans les variables de thème */
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Thème sombre - Amélioré */
[data-theme="dark"] {
    /* Couleurs de fond - Plus douces */
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --card-bg: #1f1f1f;
    
    /* Couleurs de texte - Meilleur contraste */
    --text-primary: #f5f5f5;
    --text-secondary: #d1d1d1;
    --text-muted: #a0a0a0;
    --text-light: #808080;
    
    /* Couleurs de liens */
    --link-color: #60a5fa;
    --link-hover: #93c5fd;
    
    /* Couleurs de bordure et ombre - Plus subtiles */
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.4);
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.5);
    
    /* Couleurs neutres adaptées */
    --white: #1f1f1f;
    --light-gray: #2a2a2a;
    --medium-gray: #a0a0a0;
    --dark-gray: #d1d1d1;
    --black: #f5f5f5;
}

/* Améliorations spécifiques pour le thème sombre */
[data-theme="dark"] .navbar {
    background: rgba(15, 15, 15, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .nav-link {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .nav-link:hover {
    color: var(--primary-red) !important;
}

[data-theme="dark"] .logo-efes {
    color: var(--primary-red) !important;
}

[data-theme="dark"] .logo-kebab {
    color: var(--primary-pink) !important;
}

/* Amélioration de la visibilité des éléments de formulaire */
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background-color: var(--card-bg) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    border-color: var(--primary-red) !important;
    background-color: var(--bg-secondary) !important;
}

/* Amélioration de la visibilité des cartes */
[data-theme="dark"] .menu-item,
[data-theme="dark"] .review-card,
[data-theme="dark"] .info-card,
[data-theme="dark"] .gallery-item {
    background-color: var(--card-bg) !important;
    border-color: var(--border-color) !important;
}

/* Amélioration de la visibilité des boutons */
[data-theme="dark"] .filter-btn {
    background: var(--card-bg) !important;
    border-color: var(--primary-red) !important;
    color: var(--primary-red) !important;
}

[data-theme="dark"] .filter-btn:hover {
    background: var(--primary-red) !important;
    color: var(--white) !important;
}

[data-theme="dark"] .filter-btn.active {
    background: var(--primary-red) !important;
    color: var(--white) !important;
}

/* Amélioration de la visibilité des éléments de galerie */
[data-theme="dark"] .gallery-filter-btn {
    background: var(--card-bg) !important;
    border-color: var(--primary-red) !important;
    color: var(--primary-red) !important;
}

[data-theme="dark"] .gallery-filter-btn:hover,
[data-theme="dark"] .gallery-filter-btn.active {
    background: var(--primary-red) !important;
    color: var(--white) !important;
}


/* Particules interactives */
.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* S'assurer que le contenu du hero est au-dessus des particules */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Animation d'apparition pour le titre */
.hero-title {
    animation: fadeInUp 1s ease-out;
}

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

/* Styles pour les icônes du menu */
.menu-icon {
    font-size: 2.5rem !important;
    color: var(--primary-red) !important;
    margin-bottom: 0 !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    width: 100% !important;
    height: auto !important;
    object-fit: none !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}

.menu-item:hover .menu-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-red-dark);
    text-shadow: 0 4px 8px rgba(211, 47, 47, 0.3);
}

/* Animation d'apparition pour les icônes */
.menu-icon {
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Styles spécifiques pour le mode sombre */
[data-theme="dark"] .menu-icon {
    color: var(--primary-red) !important;
}

[data-theme="dark"] .menu-item:hover .menu-icon {
    color: var(--primary-red-light) !important;
    text-shadow: 0 4px 8px rgba(211, 47, 47, 0.5) !important;
}

[data-theme="dark"] .menu-image {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.2) 0%, rgba(31, 31, 31, 0.1) 100%) !important;
}

/* Section Options de Commande */
.delivery-options-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.delivery-options-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d32f2f" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d32f2f" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d32f2f" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23d32f2f" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23d32f2f" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.delivery-options-section .container {
    position: relative;
    z-index: 2;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.delivery-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.delivery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.delivery-card:hover::before {
    transform: scaleX(1);
}

.delivery-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.delivery-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.delivery-card:hover .delivery-icon::before {
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.delivery-icon i {
    font-size: 1.5rem;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.delivery-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.delivery-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.delivery-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.delivery-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.delivery-features i {
    color: var(--primary-red);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.delivery-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-btn {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 12px rgba(211, 47, 47, 0.3);
    font-size: 0.9rem;
}

.delivery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
    color: var(--white);
}

.uber-eats-btn {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.uber-eats-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

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

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}


.info-card i {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.info-card p strong {
    color: var(--primary-red);
    font-weight: 600;
}

/* Mode sombre pour la section de livraison */
[data-theme="dark"] .delivery-options-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

[data-theme="dark"] .delivery-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .delivery-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

/* Responsive pour la section de livraison */
@media (max-width: 768px) {
    .delivery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .delivery-card {
        padding: 1.25rem;
    }
    
    .delivery-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .delivery-options-section {
        padding: 3rem 0;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-card {
        padding: 1rem;
    }
    
    .delivery-icon {
        width: 50px;
        height: 50px;
    }
    
    .delivery-icon i {
        font-size: 1.2rem;
    }
    
    .delivery-content h3 {
        font-size: 1.2rem;
    }
    
    .delivery-content p {
        font-size: 0.9rem;
    }
}

/* Amélioration de la visibilité des éléments de contact */
[data-theme="dark"] .contact-form {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
}

[data-theme="dark"] .social-link {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
}

/* Amélioration de la visibilité des éléments de météo */
[data-theme="dark"] .weather-spices-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
}

[data-theme="dark"] .spice-suggestions {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
}

/* Amélioration de la visibilité des éléments de bannière */
[data-theme="dark"] .banner-item {
    background: linear-gradient(145deg, var(--card-bg) 0%, var(--bg-secondary) 100%) !important;
    border: 2px solid var(--border-color) !important;
}

[data-theme="dark"] .banner-reviews .banner-item {
    background: linear-gradient(145deg, var(--card-bg) 0%, var(--bg-secondary) 100%) !important;
    border: 2px solid var(--border-color) !important;
}

/* Amélioration de la visibilité des éléments de footer */
[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
}

[data-theme="dark"] .footer-bottom {
    background: var(--black) !important;
    border-top: 1px solid var(--border-color) !important;
}

/* Amélioration de la visibilité des éléments de statut */
[data-theme="dark"] .status-indicator {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
}

[data-theme="dark"] .status-text {
    color: var(--text-primary) !important;
}

/* Amélioration de la visibilité des éléments de notification */
[data-theme="dark"] .notification {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

/* Amélioration de la visibilité des éléments de scroll */
[data-theme="dark"] .scroll-to-top {
    background: var(--primary-red) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-red) !important;
}

[data-theme="dark"] .scroll-to-top:hover {
    background: var(--secondary-red) !important;
    border-color: var(--secondary-red) !important;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Améliorations d'accessibilité */
*:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Amélioration du contraste pour les liens */
a {
    color: var(--link-color);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

a:hover, a:focus {
    color: var(--link-hover);
    text-decoration-thickness: 3px;
}

/* Amélioration du contraste pour les boutons */
button, .btn, .cta-button {
    color: var(--button-text);
    border: 2px solid transparent;
}

button:hover, .btn:hover, .cta-button:hover {
    border-color: var(--white);
}

button:focus, .btn:focus, .cta-button:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Amélioration du contraste pour les textes */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}

p, span, div {
    color: var(--text-secondary);
}

/* Support pour les utilisateurs préférant moins d'animations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Amélioration du contraste pour les éléments de formulaire */
input, textarea, select {
    border: 2px solid var(--medium-gray);
    color: var(--text-primary);
    background-color: var(--white);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary-red);
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Amélioration du contraste pour les cartes et sections */
.card, .menu-item, .hero-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

/* Amélioration du contraste pour les textes sur fond coloré */
.hero, .footer {
    color: var(--white);
}

.hero h1, .hero h2, .hero h3,
.footer h1, .footer h2, .footer h3 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p, .footer p {
    color: rgba(255, 255, 255, 0.9);
}

/* Lazy Loading Styles */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.lazy-load.loaded {
    opacity: 1;
    background: none;
    animation: none;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Placeholder pour les images en cours de chargement */
.menu-image {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Désactiver l'effet de chargement pour les icônes */
.menu-image::before {
    display: none !important;
}

.menu-image img.loaded + ::before {
    display: none;
}

/* Amélioration de l'image principale du hero */
.hero-main-image {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-main-image.loaded {
    opacity: 1;
}

/* Animations de scroll améliorées */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animations spécifiques pour différents éléments */
.menu-item.animate-on-scroll {
    transform: translateY(50px) scale(0.95);
}

.menu-item.animate-on-scroll.animate-in {
    transform: translateY(0) scale(1);
}

.hero-card.animate-on-scroll {
    transform: translateX(-30px);
}

.hero-card.animate-on-scroll.animate-in {
    transform: translateX(0);
}

.weather-spices-card.animate-on-scroll {
    transform: translateY(40px) rotateX(10deg);
}

.weather-spices-card.animate-on-scroll.animate-in {
    transform: translateY(0) rotateX(0deg);
}

.sauce-item.animate-on-scroll {
    transform: translateY(20px) scale(0.9);
}

.sauce-item.animate-on-scroll.animate-in {
    transform: translateY(0) scale(1);
}

.section-title.animate-on-scroll {
    transform: translateY(-20px);
    opacity: 0;
}

.section-title.animate-on-scroll.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.category-title.animate-on-scroll {
    transform: translateX(-30px);
    opacity: 0;
}

.category-title.animate-on-scroll.animate-in {
    transform: translateX(0);
    opacity: 1;
}

/* Animation en cascade pour les éléments de menu */
.menu-grid .menu-item:nth-child(1) { animation-delay: 0ms; }
.menu-grid .menu-item:nth-child(2) { animation-delay: 100ms; }
.menu-grid .menu-item:nth-child(3) { animation-delay: 200ms; }
.menu-grid .menu-item:nth-child(4) { animation-delay: 300ms; }
.menu-grid .menu-item:nth-child(5) { animation-delay: 400ms; }
.menu-grid .menu-item:nth-child(6) { animation-delay: 500ms; }

/* Animation pour les features du hero */
.hero-features .feature-item.animate-on-scroll {
    transform: translateY(30px) scale(0.8);
}

.hero-features .feature-item.animate-on-scroll.animate-in {
    transform: translateY(0) scale(1);
}

/* Animation pour les stats du hero */
.hero-stats .stat.animate-on-scroll {
    transform: translateY(20px);
    opacity: 0;
}

.hero-stats .stat.animate-on-scroll.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Animation pour les éléments du footer */
.footer-content > div.animate-on-scroll {
    transform: translateY(30px);
    opacity: 0;
}

.footer-content > div.animate-on-scroll.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Optimisation des performances */
.animate-on-scroll {
    will-change: transform, opacity;
}

.animate-on-scroll.animate-in {
    will-change: auto;
}

/* Galerie Photo Section */
.gallery-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

[data-theme="dark"] .gallery-section {
    background: var(--bg-secondary);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: var(--card-bg);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

[data-theme="dark"] .gallery-filter-btn {
    background: var(--card-bg);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .gallery-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.8) 0%, rgba(244, 67, 54, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-overlay p {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
    animation: pulse 2s infinite;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 2rem;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

#lightbox-image {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--white);
}

.lightbox-caption h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.lightbox-caption p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--white);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

.lightbox-prev {
    margin-left: 2rem;
}

.lightbox-next {
    margin-right: 2rem;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .gallery-filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .lightbox-content {
        padding: 1rem;
        width: 95%;
        height: 95%;
    }
    
    .lightbox-close {
        top: 0.5rem;
        right: 1rem;
        font-size: 2rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
    
    .lightbox-prev {
        margin-left: 1rem;
    }
    
    .lightbox-next {
        margin-right: 1rem;
    }
}

/* Bannières Défilantes */
.banners-section {
    padding: 2rem 0;
    background: var(--bg-primary);
    overflow: hidden;
    position: relative;
}

[data-theme="dark"] .banners-section {
    background: var(--bg-primary);
}

.banner-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(211, 47, 47, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .banner-item {
    background: linear-gradient(145deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(211, 47, 47, 0.2);
    border: 2px solid var(--border-color);
}

.banner-reviews .banner-item {
    background: linear-gradient(145deg, #fff8e1 0%, #ffffff 100%);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(255, 193, 7, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .banner-reviews .banner-item {
    background: linear-gradient(145deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(255, 193, 7, 0.2);
}

.banner-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Contrôles tactiles pour mobile - Animation conservée */
@media (max-width: 768px) {
    .banner-container {
        overflow: hidden;
    }
    
    .banner-content {
        animation: scrollBanner 15s linear infinite;
        gap: 1rem;
    }
    
    .banner-reviews .banner-content {
        animation: scrollBannerReverse 12s linear infinite;
    }
}

.banner-content {
    display: flex;
    animation: scrollBanner 30s linear infinite;
    gap: 2rem;
    padding: 1rem 0;
}

.banner-reviews .banner-content {
    animation: scrollBannerReverse 25s linear infinite;
}

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

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

.banner-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    min-width: 320px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(211, 47, 47, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-gold) 100%);
    border-radius: 24px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.banner-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 60%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--primary-gold) 100%);
    border-radius: 0 6px 6px 0;
    transform: translateY(-50%) scaleY(0);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.3);
}

.banner-item:hover::before {
    opacity: 1;
}

.banner-item:hover::after {
    transform: translateY(-50%) scaleY(1);
}

.banner-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(211, 47, 47, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.banner-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 12px rgba(211, 47, 47, 0.3));
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.banner-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.banner-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.banner-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
    opacity: 0.9;
}

.banner-price {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffb300 100%);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 
        0 6px 20px rgba(255, 193, 7, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 193, 7, 0.3);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.banner-badge {
    background: linear-gradient(135deg, var(--primary-red) 0%, #e53935 100%);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 
        0 6px 20px rgba(211, 47, 47, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(211, 47, 47, 0.3);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.banner-price:hover,
.banner-badge:hover {
    transform: scale(1.05);
    box-shadow: 
        0 8px 25px rgba(211, 47, 47, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.banner-stars {
    font-size: 1.2rem;
    animation: twinkle 1.5s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Style spécial pour les avis */
.banner-reviews .banner-item {
    background: linear-gradient(145deg, #fff8e1 0%, #ffffff 100%);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(255, 193, 7, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.banner-reviews .banner-item::before {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffb300 100%);
}

.banner-reviews .banner-item::after {
    background: linear-gradient(180deg, var(--primary-gold) 0%, #ffb300 100%);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.banner-reviews .banner-text h3 {
    color: var(--primary-gold);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 193, 7, 0.1);
}

.banner-reviews .banner-text p {
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 500;
}

.banner-reviews .banner-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(255, 193, 7, 0.3));
}

/* Responsive Banners */
@media (max-width: 768px) {
    /* Animation accélérée pour mobile */
    .banner-content {
        animation: scrollBanner 15s linear infinite;
    }
    
    .banner-reviews .banner-content {
        animation: scrollBannerReverse 12s linear infinite;
    }
    
    .banner-item {
        min-width: 280px;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .banner-icon {
        font-size: 1.8rem;
    }
    
    .banner-text h3 {
        font-size: 1rem;
    }
    
    .banner-text p {
        font-size: 0.85rem;
    }
    
    .banner-stars {
        font-size: 1.1rem;
    }
    
    /* Masquer les commentaires clients en mode mobile */
    .banner-reviews {
        display: none;
    }
}

@media (max-width: 480px) {
    .banner-item {
        min-width: 240px;
        padding: 0.8rem 1.2rem;
        gap: 0.8rem;
    }
    
    .banner-icon {
        font-size: 1.5rem;
    }
    
    .banner-text h3 {
        font-size: 0.95rem;
    }
    
    .banner-text p {
        font-size: 0.8rem;
    }
    
    /* Cartes de prévisualisation encore plus larges sur mobile portrait */
    .categories-scroll-container .category-preview-card {
        flex: 0 0 350px;
        min-width: 350px;
        padding: 3rem 2.5rem;
    }
    
    /* Masquer les scroll-indicators en mode mobile */
    .scroll-indicators {
        display: none !important;
    }
    
    /* Masquer la flèche de scroll vers le bas en mode mobile */
    .scroll-indicator {
        display: none !important;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .navbar {
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.2),
        0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-red);
    font-size: 1.1rem;
}

.theme-toggle:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

[data-theme="dark"] .theme-toggle {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

[data-theme="dark"] .theme-toggle:hover {
    background: var(--primary-gold);
    color: var(--black);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    border-radius: 8px;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.logo-flames {
    position: absolute;
    top: -8px;
    right: -8px;
    color: var(--primary-pink);
    font-size: 0.8rem;
    animation: logoFlame 2s ease-in-out infinite;
}

@keyframes logoFlame {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-efes {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1px;
}

.logo-kebab {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-pink);
    letter-spacing: 0.5px;
}

[data-theme="dark"] .logo-efes {
    color: var(--primary-red);
}

[data-theme="dark"] .logo-kebab {
    color: var(--primary-pink);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

[data-theme="dark"] .nav-link {
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section - Design moderne inspiré du logo */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 25%, #e53935 50%, #d32f2f 75%, #b71c1c 100%);
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Nouveau background hero */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(231, 76, 60, 0.1) 0%, 
        rgba(52, 152, 219, 0.1) 25%, 
        rgba(155, 89, 182, 0.1) 50%, 
        rgba(231, 76, 60, 0.1) 75%, 
        rgba(52, 152, 219, 0.1) 100%);
    animation: gradientShift 8s ease-in-out infinite;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
    animation: patternFloat 12s ease-in-out infinite;
}

/* Éléments décoratifs */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), rgba(52, 152, 219, 0.1));
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

/* Badges de qualité */
.hero-quality-badges {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.quality-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.quality-badge:hover {
    background: rgba(231, 76, 60, 0.2);
    border-color: rgba(231, 76, 60, 0.5);
    transform: translateY(-2px);
}

.quality-badge i {
    color: #ffd700;
}

.quality-badge span {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Bouton tertiaire */
.cta-button.tertiary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.cta-button.tertiary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Particules animées */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 10%; left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { top: 70%; left: 10%; animation-delay: 5s; }
.particle:nth-child(7) { top: 40%; left: 90%; animation-delay: 1.5s; }
.particle:nth-child(8) { top: 90%; left: 30%; animation-delay: 2.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Flames décoratives */
.hero-flames {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flame {
    position: absolute;
    width: 60px;
    height: 80px;
    background: linear-gradient(45deg, #d32f2f, #f44336, #e57373);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.3;
    animation: flameFlicker 3s ease-in-out infinite;
}

.flame-1 { top: 10%; left: 5%; animation-delay: 0s; }
.flame-2 { top: 20%; right: 10%; animation-delay: 1s; }
.flame-3 { bottom: 30%; left: 15%; animation-delay: 2s; }
.flame-4 { bottom: 10%; right: 20%; animation-delay: 1.5s; }

@keyframes flameFlicker {
    0%, 100% { transform: scale(1) rotate(-2deg); opacity: 0.3; }
    25% { transform: scale(1.1) rotate(2deg); opacity: 0.5; }
    50% { transform: scale(0.9) rotate(-1deg); opacity: 0.4; }
    75% { transform: scale(1.05) rotate(1deg); opacity: 0.6; }
}

/* Container principal */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    z-index: 2;
    position: relative;
    min-height: calc(100vh - 8rem);
}

/* Contenu principal */
.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    animation: slideInLeft 1s ease-out;
}

.hero-badge i {
    color: var(--primary-gold);
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge span {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: slideInLeft 1s ease-out 0.2s both;
}

.title-line-1 {
    display: block;
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.title-line-2 {
    display: block;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.title-line-3 {
    display: block;
    color: var(--white);
    font-size: 0.8em;
    opacity: 0.9;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.4s both;
}

/* Features */
.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-gold);
    animation: bounce 2s ease-in-out infinite;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: slideInLeft 1s ease-out 0.8s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    background: linear-gradient(45deg, var(--primary-red), #e53935);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
}

[data-theme="dark"] .cta-button {
    background: linear-gradient(45deg, var(--primary-red), #e53935);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.4);
}

[data-theme="dark"] .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.5);
}

.cta-button.primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: var(--black);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    animation: slideInLeft 1s ease-out 1s both;
    margin-top: 2rem;
    justify-content: center;
}

/* Media queries consolidées pour .hero-stats */
@media (max-width: 1200px) {
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-stats {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (min-width: 1400px) {
    .hero-stats {
        gap: 4rem;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Section visuelle */
.hero-visual {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out 0.5s both;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotate(5deg);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-main-image:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Éléments flottants */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatIcon 4s ease-in-out infinite;
}

.icon-1 { top: 10%; right: 10%; animation-delay: 0s; }
.icon-2 { bottom: 20%; left: 5%; animation-delay: 1.5s; }
.icon-3 { top: 60%; right: 5%; animation-delay: 3s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* Cartes hero */
.hero-cards {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInUp 1s ease-out 1.2s both;
}

.hero-card i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: slideInUp 1s ease-out 1.5s both;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%) scale(1.1);
}

/* Animations d'entrée */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Sections communes */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-red);
    position: relative;
}

[data-theme="dark"] .section-title {
    color: var(--primary-red);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d32f2f, #f44336);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    position: relative;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-red));
    border-radius: 1px;
    opacity: 0.6;
}

/* Météo des saveurs Section */
.weather-spices-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

[data-theme="dark"] .weather-spices-section {
    background: var(--bg-secondary);
}

.weather-spices-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .weather-spices-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.weather-spices-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d32f2f, #f44336, #ffc107);
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.weather-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffc107, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    animation: weatherPulse 3s ease-in-out infinite;
}

@keyframes weatherPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.weather-details {
    position: relative;
}

.weather-details h3 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.weather-location {
    color: var(--medium-gray);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.weather-temp {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

#temperature {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

#weather-description {
    color: var(--medium-gray);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: capitalize;
}

.weather-refresh-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.weather-refresh-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(180deg);
}

.weather-refresh-btn i {
    font-size: 0.9rem;
}

/* Recommandations d'épices */
.spice-recommendation {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spice-level h4,
.spice-suggestions h4 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.spice-meter {
    position: relative;
    height: 20px;
    background: linear-gradient(90deg, #4caf50, #ffeb3b, #ff9800, #f44336);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.spice-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: all 0.5s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.spice-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--medium-gray);
    font-weight: 600;
}

.spice-explanation {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.spice-suggestions {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item i {
    font-size: 1.2rem;
    color: var(--primary-red);
    width: 20px;
    text-align: center;
}

.suggestion-item span {
    color: var(--dark-gray);
    font-weight: 600;
}

/* Responsive pour météo des saveurs */
@media (max-width: 768px) {
    .weather-spices-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .weather-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .weather-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    #temperature {
        font-size: 2rem;
    }
}

/* Menu Section */
.menu-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

/* Grille des catégories */
.menu-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Cartes de catégories */
.category-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 6px 20px rgba(211, 47, 47, 0.2);
    border-color: rgba(211, 47, 47, 0.3);
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-red-dark);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.category-count {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffb300 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Bouton retour aux catégories */
.back-to-categories {
    margin: 2rem 0;
    text-align: center;
}

.back-btn {
    background: linear-gradient(45deg, var(--primary-red), #e53935);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

.back-btn i {
    font-size: 1.1rem;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(211, 47, 47, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

[data-theme="dark"] .menu-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .category-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
}

[data-theme="dark"] .category-card:hover {
    border-color: rgba(211, 47, 47, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 6px 20px rgba(211, 47, 47, 0.3);
}

[data-theme="dark"] .category-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .category-card p {
    color: var(--text-secondary);
}

/* Cacher les catégories de produits par défaut */
.menu-category {
    display: none;
}

/* Afficher les catégories actives sur la page d'accueil */
.menu-section .menu-category.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

/* Styles pour la page du menu */
.menu-page-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Navigation des catégories */
.category-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.category-nav-btn {
    background: var(--card-bg);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.category-nav-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;
}

.category-nav-btn:hover::before {
    left: 100%;
}

.category-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.category-nav-btn.active {
    background: linear-gradient(45deg, var(--primary-red), #e53935);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.category-nav-btn i {
    font-size: 1.2rem;
}

.category-nav-btn span {
    font-size: 0.9rem;
}

/* Afficher les catégories actives sur la page du menu */
.menu-page-section .menu-category {
    display: none;
}

.menu-page-section .menu-category.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

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

/* Mode sombre pour la page du menu */
[data-theme="dark"] .menu-page-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

[data-theme="dark"] .page-title {
    color: var(--primary-red);
}

[data-theme="dark"] .page-subtitle {
    color: var(--text-secondary);
}

[data-theme="dark"] .category-nav-btn {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .category-nav-btn:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
}

[data-theme="dark"] .category-nav-btn.active {
    background: linear-gradient(45deg, var(--primary-red), #e53935);
    color: var(--white);
    border-color: var(--primary-red);
}

/* Responsive pour la navigation des catégories */
@media (max-width: 768px) {
    .category-navigation {
        gap: 0.5rem;
        margin: 2rem 0;
    }
    
    .category-nav-btn {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    .category-nav-btn i {
        font-size: 1rem;
    }
    
    .category-nav-btn span {
        display: none;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .category-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .category-nav-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .category-nav-btn span {
        display: block;
    }
}

/* Filtres Menu */
.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.filter-btn {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

[data-theme="dark"] .filter-btn {
    background: var(--card-bg);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.filter-btn:hover {
    background: linear-gradient(145deg, var(--primary-red) 0%, #e53935 100%);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 6px 20px rgba(211, 47, 47, 0.3),
        0 2px 8px rgba(211, 47, 47, 0.2);
    border-color: var(--primary-red);
}

.filter-btn.active {
    background: linear-gradient(145deg, var(--primary-red) 0%, #e53935 100%);
    color: var(--white);
    box-shadow: 
        0 4px 15px rgba(211, 47, 47, 0.25),
        0 2px 6px rgba(211, 47, 47, 0.15);
    transform: translateY(-1px);
}

.filter-btn.active:hover {
    background: var(--secondary-red);
}

.menu-category {
    margin-bottom: 4rem;
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}

.menu-category.hidden {
    opacity: 0;
    transform: translateY(20px);
    height: 0;
    margin-bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d32f2f, #f44336);
    border-radius: 2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item::after {
    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;
    z-index: 1;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item:hover::after {
    left: 100%;
}

[data-theme="dark"] .menu-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(211, 47, 47, 0.15);
    border-color: rgba(211, 47, 47, 0.2);
}

.menu-image {
    height: 80px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Masquer les images quand il y a des icônes */
.menu-image img {
    display: none !important;
}

/* S'assurer que les icônes sont visibles */
.menu-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
    border-radius: 12px !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Forcer l'affichage des icônes dans les conteneurs */
.menu-image .menu-icon {
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.menu-item:hover .menu-image img {
    transform: scale(1.1);
}

.menu-content {
    padding: 1rem;
    position: relative;
    z-index: 10;
}

.menu-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.menu-content p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(245, 124, 0, 0.1) 0%, rgba(255, 143, 0, 0.05) 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(245, 124, 0, 0.2);
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.menu-item:hover .price {
    background: linear-gradient(135deg, rgba(245, 124, 0, 0.2) 0%, rgba(255, 143, 0, 0.1) 100%);
    border-color: rgba(245, 124, 0, 0.4);
    transform: scale(1.05);
}

/* Section Sauces */
.sauces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.sauce-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.sauce-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d32f2f, #f44336, #ffc107);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sauce-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.sauce-item:hover::before {
    transform: scaleX(1);
}

.sauce-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
}

.sauce-item:hover .sauce-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.sauce-content {
    flex: 1;
}

.sauce-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.sauce-content p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.spice-indicator {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.spice-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.spice-dot.active {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.spice-dot.active:nth-child(1) { background: linear-gradient(45deg, #4caf50, #66bb6a); }
.spice-dot.active:nth-child(2) { background: linear-gradient(45deg, #ffeb3b, #fff176); }
.spice-dot.active:nth-child(3) { background: linear-gradient(45deg, #ff9800, #ffb74d); }
.spice-dot.active:nth-child(4) { background: linear-gradient(45deg, #f44336, #ef5350); }

/* Animation pour les points d'épice */
.sauce-item:hover .spice-dot.active {
    animation: spicePulse 1s ease-in-out infinite;
}

@keyframes spicePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Responsive pour les sauces */
@media (max-width: 768px) {
    .sauces-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sauce-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .sauce-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .sauce-content h4 {
        font-size: 1.2rem;
    }
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.feature:hover {
    background: var(--primary-gold);
    color: var(--black);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* Hours Section - Design Amélioré */
.hours-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(211, 47, 47, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

[data-theme="dark"] .hours-section {
    background: var(--bg-secondary);
}

.hours-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hours-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(211, 47, 47, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .hours-card {
    background: linear-gradient(145deg, #1f1f1f 0%, #252525 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-gold) 50%, var(--primary-red) 100%);
    border-radius: 32px 32px 0 0;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid rgba(211, 47, 47, 0.15);
    position: relative;
}

.hours-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.hours-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
}

.hours-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin: 0;
}

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

.hours-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.8rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    border: 2px solid rgba(211, 47, 47, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(211, 47, 47, 0.08);
}

[data-theme="dark"] .hours-day {
    background: linear-gradient(145deg, #252525 0%, #1f1f1f 100%);
    border: 2px solid rgba(211, 47, 47, 0.2);
}

.hours-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--primary-gold) 100%);
    transition: all 0.4s ease;
    border-radius: 0 4px 4px 0;
}

.hours-day:hover::before {
    width: 8px;
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.5);
}

.hours-day:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 32px rgba(211, 47, 47, 0.2);
    border-color: rgba(211, 47, 47, 0.3);
    background: linear-gradient(145deg, #ffffff 0%, #f0f2f5 100%);
}

/* Hover pour le mode sombre */
[data-theme="dark"] .hours-day:hover {
    background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%) !important;
    border-color: rgba(211, 47, 47, 0.4) !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(211, 47, 47, 0.3) !important;
}

.day-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.day-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 80px;
}

.day-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.day-status.open {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

[data-theme="dark"] .day-status.open {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.day-hours {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
    width: 100%;
}

.time-slot {
    background: linear-gradient(135deg, var(--primary-red) 0%, #e53935 100%);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(211, 47, 47, 0.2);
    min-width: 100px;
    text-align: center;
}

[data-theme="dark"] .time-slot {
    background: linear-gradient(135deg, var(--primary-red) 0%, #e53935 100%);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(211, 47, 47, 0.3);
}

.hours-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
    gap: 1rem;
}

.hours-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.hours-note i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.current-status {
    display: flex;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-gold);
    animation: pulse 2s infinite;
}

.status-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.8rem;
}

/* Responsive pour les horaires */
@media (max-width: 768px) {
    .hours-card {
        padding: 1.2rem 1rem;
    }
    
    .hours-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .hours-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .hours-header h3 {
        font-size: 1.3rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .hours-day {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        padding: 0.8rem 1rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .day-info {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .day-hours {
        align-items: center;
    }
    
    .hours-footer {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hours-card {
        padding: 1rem 0.8rem;
    }
    
    .hours-day {
        padding: 0.6rem 0.8rem;
    }
    
    .day-name {
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .time-slot {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        min-width: 90px;
    }
    
    .day-status {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: var(--section-padding);
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reviewer {
    font-weight: 600;
    color: var(--primary-red);
}

.google-review {
    text-align: center;
}

.google-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.google-button:hover {
    background: var(--secondary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}


/* Info Section */
.info-section {
    padding: var(--section-padding);
    background: var(--white);
}

[data-theme="dark"] .info-section {
    background: var(--bg-primary);
}

.info-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}


.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.info-text h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.info-text a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
}

/* Section Maps améliorée */
.map-section {
    margin-bottom: 3rem;
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.map-container iframe {
    border-radius: 20px;
    transition: var(--transition);
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* Boutons d'action Maps */
.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Centrer le bouton unique */
.map-actions:has(.map-button:only-child) {
    justify-content: center;
}

.map-actions .map-button:only-child {
    min-width: 200px;
    justify-content: center;
}

/* Largeur identique au bouton d'appel en mode mobile */
@media (max-width: 768px) {
    .map-actions .map-button:only-child {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.map-button.primary {
    background: linear-gradient(45deg, #d32f2f, #f44336);
    color: white !important;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.map-button.primary span {
    color: white !important;
}

.map-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.map-button.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.map-button.secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.map-button.tertiary {
    background: var(--primary-gold);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.map-button.tertiary:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Informations de localisation */
.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.location-card i {
    font-size: 2rem;
    color: var(--primary-red);
    width: 50px;
    text-align: center;
}

.location-card h4 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.location-card p {
    color: var(--medium-gray);
    font-weight: 600;
    margin: 0;
}

.cta-bottom {
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-red);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-family);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.submit-button {
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-family);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.submit-button:hover {
    background: var(--secondary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.social-links h3,
.contact-details h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.social-link.facebook {
    background: linear-gradient(45deg, #1877f2, #42a5f5);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-link.instagram {
    background: linear-gradient(45deg, #e4405f, #fd1d1d, #fcb045);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-link span {
    font-size: 1rem;
    font-weight: 700;
}

.social-stats {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Feed Instagram */
.instagram-feed {
    margin-top: 2rem;
}

.instagram-feed h4 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.instagram-post {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(228, 64, 95, 0.8), rgba(252, 176, 69, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--white);
    text-align: center;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.instagram-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
}

.instagram-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #e4405f, #fd1d1d, #fcb045);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
    width: 100%;
}

.instagram-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

.instagram-cta i {
    font-size: 1.3rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

.contact-details a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
}

/* Footer complet */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d32f2f, #f44336, #ffc107);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Logo et description */
.footer-logo {
    max-width: 300px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.footer-logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d32f2f, #f44336);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.footer-logo-flames {
    position: absolute;
    top: -5px;
    right: -5px;
    color: var(--primary-gold);
    font-size: 0.8rem;
    animation: logoFlame 2s ease-in-out infinite;
}

.footer-logo-text h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
}

.footer-logo-text p {
    color: var(--primary-pink);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-feature i {
    color: var(--primary-red);
    width: 16px;
}

/* Navigation */
.footer-nav h4,
.footer-menu h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-nav h4::after,
.footer-menu h4::after,
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-nav ul,
.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li,
.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-nav a,
.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-nav a:hover,
.footer-menu a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

/* Contact */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
    width: 20px;
    margin-top: 0.2rem;
}

.contact-item strong {
    color: var(--white);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-item a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-red);
}

/* Réseaux sociaux */
.social-links-footer {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link-footer.facebook {
    background: linear-gradient(45deg, #1877f2, #42a5f5);
    color: var(--white);
}

.social-link-footer.instagram {
    background: linear-gradient(45deg, #e4405f, #fd1d1d, #fcb045);
    color: var(--white);
}

.social-link-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-cta {
    margin-bottom: 2rem;
}

.footer-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #d32f2f, #f44336);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.footer-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

/* Newsletter */
.footer-newsletter h5 {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--dark-gray);
    border-radius: 25px;
    background: var(--dark-gray);
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--black);
}

.newsletter-input::placeholder {
    color: var(--medium-gray);
}

.newsletter-btn {
    background: var(--primary-gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.newsletter-btn:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

/* Footer bottom */
.footer-bottom {
    background: var(--black);
    padding: 2rem 0;
    border-top: 1px solid var(--dark-gray);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-red);
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
}

.badge i {
    color: var(--primary-gold);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .social-links-footer {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        align-self: center;
    }
}

/* Responsive Design - Tablette */
@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
    }
    
    .hero {
        padding: 8rem 0 2rem;
    }
    
    .hero-container {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }
    
    .hero-content {
        flex: 1;
        max-width: 500px;
    }
    
    .hero-visual {
        flex: 1;
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .hero-actions {
        gap: 1rem;
    }
    
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .menu-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero-container {
        gap: 4rem;
        max-width: 1200px;
    }
    
    .hero-content {
        flex: 1;
        max-width: 600px;
    }
    
    .hero-visual {
        flex: 1;
        max-width: 500px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-features {
        gap: 2rem;
    }
    
    .hero-actions {
        gap: 1.5rem;
    }
    
    
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .category-title {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav-toggle {
        display: none;
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

    [data-theme="dark"] .nav-menu {
        background-color: var(--card-bg);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding: 6rem 0 2rem;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        min-height: auto;
    }
    
    .hero-content {
        flex: none;
        max-width: none;
    }
    
    .hero-visual {
        flex: none;
        max-width: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    
    .hero-cards {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero-card {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .logo-container {
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
    
    .logo-efes {
        font-size: 1rem;
    }
    
    .logo-kebab {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        max-width: 500px;
    }
    
    
    .menu-filters {
        gap: 0.3rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 20px;
    }
}

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

.menu-item,
.review-card,
.info-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Print styles */
@media print {
    .navbar,
    .cta-button,
    .google-button,
    .submit-button {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 18pt;
        color: black;
    }
}

/* Améliorations pour très petits écrans */
@media (max-width: 320px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    
    .hero-cards {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        max-width: 300px;
    }
    
    .container {
        padding: 0 0.5rem;
    }
}

/* Améliorations pour très grands écrans */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-container {
        gap: 5rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-features {
        gap: 2.5rem;
    }
    
    .hero-actions {
        gap: 2rem;
    }
    
}

/* ===== NOUVEAUX STYLES POUR LES PAGES DE MENU ===== */

/* Styles améliorés pour les pages de menu */
.menu-page-section {
    padding: 2rem 0;
    background: var(--bg-primary);
    min-height: 100vh;
    position: relative;
}

.menu-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(198, 40, 40, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 124, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.menu-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.menu-header::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    border-radius: 2px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 5px rgba(198, 40, 40, 0.3)); }
    100% { filter: drop-shadow(0 0 15px rgba(245, 124, 0, 0.3)); }
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    border-radius: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.breadcrumb {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
}

.breadcrumb-link:hover {
    color: var(--primary-red);
    background: var(--bg-secondary);
    transform: translateX(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.menu-item {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.menu-item:hover::before {
    transform: scaleX(1);
}

/* Animation de survol simplifiée supprimée */

/* Animation du prix supprimée */

.menu-image {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.menu-icon {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.menu-content {
    position: relative;
    z-index: 50;
    background: transparent;
}

.menu-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.menu-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.menu-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 60;
}

.menu-details span {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-red) !important;
    display: block;
    text-align: right;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 100;
    opacity: 1 !important;
    visibility: visible !important;
}

.price::before {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-item:hover .price::before {
    transform: scaleX(1);
}

.menu-cta {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.menu-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(180deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.95;
    font-size: 1.1rem;
}

.other-categories {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.other-categories h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
}

.other-categories h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    border-radius: 2px;
}

.category-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--card-bg);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    transition: left 0.3s ease;
    z-index: -1;
}

.category-link:hover::before {
    left: 0;
}

.category-link:hover {
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

/* Styles pour les cartes de catégories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.category-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: block;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-red);
}

.category-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.category-icon i {
    font-size: 4rem;
    color: var(--primary-red);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-icon i {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-gold);
    filter: drop-shadow(0 0 15px rgba(245, 124, 0, 0.4));
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.category-content p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.category-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.item-count, .price-range {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.category-card:hover .item-count,
.category-card:hover .price-range {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

/* Styles pour les sauces */
.sauces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.sauce-item {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.sauce-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.sauce-icon {
    margin-bottom: 1rem;
}

.sauce-icon i {
    font-size: 2.5rem;
    color: var(--primary-red);
    transition: var(--transition);
}

.sauce-item:hover .sauce-icon i {
    transform: scale(1.1);
    color: var(--primary-gold);
}

.sauce-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.sauce-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.spice-indicator {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.spice-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.spice-dot.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: 0 0 8px rgba(198, 40, 40, 0.3);
}

.spice-legend {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.spice-legend h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.legend-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.special-note {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.special-note::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

.note-content {
    position: relative;
    z-index: 2;
}

.note-content i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.note-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.note-content p {
    opacity: 0.95;
    line-height: 1.6;
}

/* Styles pour les cartes de prévisualisation de menu sur la page d'accueil */
.menu-categories-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Styles pour la liste scrollable de catégories */
.menu-categories-scrollable {
    position: relative;
    margin-bottom: 3rem;
}

.categories-scroll-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.categories-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.categories-scroll-container .category-preview-card {
    flex: 0 0 280px;
    min-width: 280px;
}

.scroll-indicators {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.scroll-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.scroll-btn:hover {
    background: var(--primary-red);
    color: white;
    box-shadow: var(--shadow-medium);
}

.scroll-left {
    left: -20px;
}

.scroll-right {
    right: -20px;
}

.scroll-btn i {
    font-size: 1rem;
    color: var(--primary-red);
    transition: var(--transition);
}

.scroll-btn:hover i {
    color: white;
}

/* Indicateurs de scroll en bas */
.scroll-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

.category-preview-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.category-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.category-preview-card:hover::before {
    transform: scaleX(1);
}

.category-preview-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-red);
}

.category-preview-icon {
    margin-bottom: 1.5rem;
}

.category-preview-icon i {
    font-size: 3.5rem;
    color: var(--primary-red);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-preview-card:hover .category-preview-icon i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-gold);
    filter: drop-shadow(0 0 10px rgba(245, 124, 0, 0.3));
}

.category-preview-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.category-preview-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.category-preview-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

/* Masquer les prix en mode mobile */
@media (max-width: 768px) {
    .category-preview-stats {
        display: none;
    }
}

.category-preview-stats span {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.category-preview-card:hover .category-preview-stats span {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

.category-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-red);
    border-radius: 25px;
    background: transparent;
}

.category-preview-link:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.menu-cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-categories-preview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-categories-scrollable {
        margin: 0 -1rem;
    }
    
    .categories-scroll-container {
        padding: 1rem;
    }
    
    .categories-scroll-container .category-preview-card {
        flex: 0 0 320px;
        min-width: 320px;
        padding: 2.5rem 2rem;
    }
    
    .scroll-btn {
        width: 35px;
        height: 35px;
    }
    
    .scroll-left {
        left: -17px;
    }
    
    .scroll-right {
        right: -17px;
    }
    
    .sauces-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .legend-items {
        gap: 1rem;
    }
    
    .category-links {
        gap: 1rem;
    }
    
    .category-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .menu-page-section {
        padding: 1rem 0;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .menu-item {
        padding: 1.5rem;
    }
    
    .category-card {
        padding: 2.5rem 2rem;
    }
    
    .menu-cta {
        padding: 2rem 1.5rem;
    }
    
    .special-note {
        padding: 2rem 1.5rem;
    }
    
    /* Responsive pour la page de catégories */
    .title-word {
        font-size: 2.5rem;
    }
    
    .header-stats {
        gap: 2rem;
    }
    
    
    .header-decoration {
        gap: 1rem;
    }
    
    .decoration-line {
        width: 40px;
    }
    
    .decoration-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .category-image {
        height: 150px;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .category-content {
        padding: 1.5rem;
    }
    
    .category-content h3 {
        font-size: 1.3rem;
    }
    
    .category-details {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* Styles pour la nouvelle structure de menu */
.menu-categories-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Éléments de fond stylés */
.categories-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-flame {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.bg-flame-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-flame-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.bg-flame-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(245, 124, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(198, 40, 40, 0.05) 0%, transparent 50%);
    animation: patternMove 20s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
}

/* Header stylé */
.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    border-radius: 1px;
}

.decoration-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.page-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.title-word {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.title-word.highlight {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-word.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    border-radius: 2px;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Cartes de catégories stylées */
.category-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color);
    position: relative;
    backdrop-filter: blur(10px);
    display: block;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.category-card:hover::before {
    transform: scaleX(1);
}

/* Animation de survol supprimée */

.category-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-icon-container {
    position: relative;
    z-index: 2;
}

.category-icon {
    font-size: 4rem;
    color: var(--primary-red);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.9), rgba(245, 124, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: var(--shadow-light);
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.category-content p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.category-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-count,
.category-price-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-count {
    color: var(--text-secondary);
}

.category-price-range {
    color: var(--primary-red);
    font-weight: 600;
}

.category-count i,
.category-price-range i {
    font-size: 0.8rem;
}

[data-theme="dark"] .menu-categories-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

[data-theme="dark"] .category-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 6px 20px rgba(211, 47, 47, 0.2);
    border-color: rgba(211, 47, 47, 0.3);
}

[data-theme="dark"] .category-card:hover {
    border-color: rgba(211, 47, 47, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 6px 20px rgba(211, 47, 47, 0.3);
}

.category-image {
    height: 120px;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .category-image {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.2) 0%, rgba(31, 31, 31, 0.1) 100%);
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
    z-index: 2;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-red-dark);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.8) 0%, rgba(244, 67, 54, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay i {
    font-size: 2rem;
    color: var(--white);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.category-content {
    padding: 1.5rem;
    text-align: center;
}

.category-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

[data-theme="dark"] .category-content h3 {
    color: var(--primary-red);
}

.category-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.category-count {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffb300 100%);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.category-price-range {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1rem;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    background: rgba(211, 47, 47, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.breadcrumb-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateX(-5px);
    border-color: var(--primary-red);
}

.breadcrumb-link i {
    font-size: 1rem;
}

/* Menu details */
.menu-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.menu-details span {
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.popularity {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--black);
}

.premium {
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    color: var(--white);
}

.allergens {
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    color: var(--white);
}

.spicy {
    background: linear-gradient(135deg, #f44336 0%, #ef5350 100%);
    color: var(--white);
}

.grilled {
    background: linear-gradient(135deg, #795548 0%, #8d6e63 100%);
    color: var(--white);
}

.crispy {
    background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
    color: var(--white);
}

.fresh {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: var(--white);
}

.generous {
    background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
    color: var(--white);
}

.cheese {
    background: linear-gradient(135deg, #ffc107 0%, #ffca28 100%);
    color: var(--black);
}

.authentic {
    background: linear-gradient(135deg, #3f51b5 0%, #5c6bc0 100%);
    color: var(--white);
}

.wrap {
    background: linear-gradient(135deg, #00bcd4 0%, #26c6da 100%);
    color: var(--white);
}

/* Menu CTA */
.menu-cta {
    margin: 4rem 0;
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, var(--primary-red) 0%, #e53935 100%);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(211, 47, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-content .cta-button {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: var(--black);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-content .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

/* Other Categories */
.other-categories {
    margin-top: 4rem;
    text-align: center;
}

.other-categories h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

[data-theme="dark"] .other-categories h3 {
    color: var(--primary-red);
}

.category-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.category-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 120px;
}

[data-theme="dark"] .category-link {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.category-link:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.2);
}

.category-link i {
    font-size: 2rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.category-link:hover i {
    transform: scale(1.1);
}

.category-link span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive pour les catégories */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .category-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .category-image {
        height: 100px;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .category-content {
        padding: 1.2rem;
    }
    
    .category-content h3 {
        font-size: 1.2rem;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .category-links {
        gap: 1rem;
    }
    
    .category-link {
        padding: 1.2rem 1.5rem;
        min-width: 100px;
    }
    
    .category-link i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        max-width: none;
        width: 95%;
        min-height: 200px;
        margin: 0 auto;
    }
    
    .category-image {
        height: 80px;
    }
    
    .category-icon {
        font-size: 2rem;
    }
    
    .category-content {
        padding: 1rem;
    }
    
    .category-content h3 {
        font-size: 1.1rem;
    }
    
    .category-content p {
        font-size: 0.9rem;
    }
    
    .cta-content {
        padding: 1.5rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-content .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .category-links {
        flex-direction: column;
        align-items: center;
    }
    
    .category-link {
        width: 100%;
        max-width: 200px;
        flex-direction: row;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

/* Améliorations pour l'accessibilité */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mode sombre géré par JavaScript uniquement */

/* Améliorations pour les écrans haute résolution */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image img,
    .menu-image img,
    .gallery-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ===== DESIGN SIMPLE POUR LES PAGES DE MENU ===== */

/* Liste de menu simple */
.simple-menu-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.menu-item-simple {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    transition: box-shadow 0.2s ease;
}

.menu-item-simple:hover {
    box-shadow: var(--shadow-medium);
}

.item-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.item-content {
    flex: 1;
    min-width: 0;
}

.item-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.item-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.tag.spicy {
    background: rgba(255, 87, 34, 0.1);
    color: #ff5722;
    border-color: rgba(255, 87, 34, 0.2);
}

.tag.very-spicy {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border-color: rgba(244, 67, 54, 0.2);
}

.tag.popular {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.2);
}

.tag.premium {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
    border-color: rgba(156, 39, 176, 0.2);
}

.tag.grilled {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border-color: rgba(255, 152, 0, 0.2);
}

.tag.crispy {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border-color: rgba(76, 175, 80, 0.2);
}

.tag.fresh {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
    border-color: rgba(33, 150, 243, 0.2);
}

.tag.generous {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border-color: rgba(255, 152, 0, 0.2);
}

.tag.cheese {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.2);
}

.item-price {
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-red);
    background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive pour le design simple */
@media (max-width: 768px) {
    .menu-item-simple {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .item-content {
        order: 2;
    }
    
    .item-price {
        order: 3;
    }
    
    .item-icon {
        order: 1;
    }
    
    .item-tags {
        justify-content: center;
    }
}

/* ========================================
   NOUVEAU DESIGN HERO - PROFESSIONNEL
   ======================================== */

/* Hero Section Redesignée */
.hero-new {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
        background: 
            linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
            radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(255, 193, 7, 0.02) 0%, transparent 50%);
    overflow: hidden;
    padding: 6rem 0 2rem 0;
}

/* Background avec effet de particules */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(185, 28, 28, 0.02) 0%, transparent 50%);
}

/* Particules animées */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Container principal */
.hero-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Contenu gauche */
.hero-content-new {
    color: #2c3e50;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.25);
    position: relative;
    overflow: hidden;
}

.hero-badge-new::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;
}

.hero-badge-new:hover::before {
    left: 100%;
}

.hero-title-new {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #1a202c 0%, #dc2626 25%, #ffc107 50%, #dc2626 75%, #1a202c 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    position: relative;
    animation: gradientShift 4s ease-in-out infinite;
}

.hero-title-new::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes underlineGlow {
    0% { 
        box-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
        transform: scaleX(1);
    }
    100% { 
        box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
        transform: scaleX(1.1);
    }
}

.hero-subtitle-new {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 500px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Features avec icônes */
.hero-features-new {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item-new {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(255, 193, 7, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-item-new:hover::before {
    opacity: 1;
}

.feature-item-new i {
    font-size: 1.2rem;
    color: #dc2626;
    position: relative;
    z-index: 2;
}

.feature-item-new span {
    font-weight: 500;
    color: #2d3748;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

/* Boutons CTA redesignés */
.hero-actions-new {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button-new {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.cta-primary-new {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.cta-primary-new::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.6s;
}

.cta-primary-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.cta-primary-new:hover::before {
    left: 100%;
}

.cta-secondary-new {
    background: transparent;
    color: #2d3748;
    border: 2px solid #e2e8f0;
    backdrop-filter: blur(10px);
}

.cta-secondary-new:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Stats redesignées */
.hero-stats-new {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item-new {
    text-align: center;
}

.stat-number-new {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
}

.stat-label-new {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* Image hero redesignée */
.hero-visual-new {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container-new {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-main-image-new {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.hero-main-image-new:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Effet de glow autour de l'image */
.image-glow-new {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(135deg, #dc2626, #ffc107, #dc2626);
    border-radius: 50px;
    opacity: 0.08;
    filter: blur(40px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.08; transform: scale(1); }
    50% { opacity: 0.12; transform: scale(1.05); }
}

/* Éléments flottants */
.floating-elements-new {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon-new {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    animation: floatIcon 4s ease-in-out infinite;
}

.floating-icon-new:nth-child(1) {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-icon-new:nth-child(2) {
    bottom: 20%;
    left: -15%;
    animation-delay: 1.5s;
}

.floating-icon-new:nth-child(3) {
    top: 60%;
    right: -5%;
    animation-delay: 3s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

/* Cards flottantes */
.hero-cards-new {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-card-new {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: cardFloat 5s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.hero-card-new:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-card-new:nth-child(2) {
    bottom: 15%;
    right: 5%;
    animation-delay: 2.5s;
}

.hero-card-new i {
    font-size: 1.5rem;
    color: #dc2626;
}

.hero-card-new span {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Indicateur de scroll */
.scroll-indicator-new {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #6c757d;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container-new {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-features-new {
        justify-content: center;
    }

    .hero-actions-new {
        justify-content: center;
    }

    .hero-stats-new {
        justify-content: center;
    }

    .hero-image-container-new {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-container-new {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-features-new {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions-new {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats-new {
        gap: 2rem;
    }

    .hero-image-container-new {
        max-width: 300px;
    }

    .floating-icon-new,
    .hero-card-new {
        display: none;
    }
}

/* ========================================
   NOUVEAU DESIGN HORAIRES - MODERNE
   ======================================== */

/* Section Horaires Redesignée */
.hours-section-new {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hours-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Header de section */
.section-header-new {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.section-icon-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25);
}

.section-icon-new i {
    font-size: 1.5rem;
    color: white;
}

.section-title-new {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle-new {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Container principal */
.hours-container-new {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Card principale */
.hours-card-new {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hours-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Header de la card */
.hours-header-new {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    padding: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.hours-header-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.hours-card-new:hover .hours-header-new::before {
    transform: translateX(100%);
}

.hours-icon-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.hours-icon-new i {
    font-size: 1.2rem;
}

.hours-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.hours-status-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.status-indicator-new {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    animation: pulseHours 2s ease-in-out infinite;
}

.status-text-new {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Grid des horaires */
.hours-grid-new {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.hours-day-new {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hours-day-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.hours-day-new:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(3px);
}

.hours-day-new:hover::before {
    transform: scaleY(1);
}

.day-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.day-name-new {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

.day-status-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.day-status-new.open {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.day-status-new i {
    font-size: 0.8rem;
}

.day-hours-new {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.time-slot-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.time-slot-new:hover {
    background: #f8fafc;
    transform: translateX(3px);
}

.time-slot-new i {
    color: #dc2626;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.time-slot-new span {
    font-weight: 500;
    color: #374151;
}

/* Footer */
.hours-footer-new {
    background: #f8fafc;
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hours-note-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.hours-note-new i {
    color: #dc2626;
    font-size: 1rem;
}

.current-status-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.status-dot-new {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulseHours 2s ease-in-out infinite;
}

.status-text-new {
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
}

/* Animations */
@keyframes pulseHours {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.05); 
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hours-section-new {
        padding: 3rem 0;
    }
    
    .section-title-new {
        font-size: 2rem;
    }
    
    .hours-header-new {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hours-status-new {
        align-self: center;
    }
    
    .hours-grid-new {
        padding: 1.5rem;
        gap: 1rem;
    }
}

/* ========================================
   SECTION HORAIRES MODERNE - NOUVEAU DESIGN
   ======================================== */

/* Section principale */
.hours-section-modern {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hours-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Thème sombre */
[data-theme="dark"] .hours-section-modern {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

[data-theme="dark"] .hours-section-modern::before {
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
}

/* Header moderne */
.hours-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.hours-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Icône avec animation */
.hours-icon-modern {
    position: relative;
    width: 80px;
    height: 80px;
}

.icon-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 
        0 8px 32px rgba(220, 38, 38, 0.3),
        0 4px 16px rgba(220, 38, 38, 0.2);
    position: relative;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 20px;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}

/* Titre et sous-titre */
.hours-title-section {
    flex: 1;
}

.hours-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hours-subtitle-modern {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

/* Statut en temps réel */
.hours-status-modern {
    position: relative;
}

.status-card-modern {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.status-indicator-modern {
    position: relative;
    width: 50px;
    height: 50px;
}

.status-dot-modern {
    width: 20px;
    height: 20px;
    background: #4caf50;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: statusPulse 2s infinite;
}

.status-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid #4caf50;
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 2s infinite;
}

@keyframes statusPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.status-content-modern {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-text-modern {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.status-time-modern {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Grille des horaires */
.hours-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Carte jour */
.hours-day-modern {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hours-day-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-gold) 100%);
}

.hours-day-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

/* Jour actuel */
.hours-day-modern.current-day {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 2px solid var(--primary-red);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
        0 8px 32px rgba(220, 38, 38, 0.2),
        0 4px 16px rgba(255, 193, 7, 0.1);
}

.hours-day-modern.current-day::before {
    height: 6px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-gold) 50%, var(--primary-red) 100%);
    animation: currentDayGlow 3s ease-in-out infinite;
}

@keyframes currentDayGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Statut ouvert/fermé */
.status-indicator-modern.open .status-dot-modern {
    background: #4caf50 !important;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.status-indicator-modern.closed .status-dot-modern {
    background: #f44336 !important;
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.5);
}

.status-indicator-modern.open .status-ripple {
    border-color: #4caf50;
}

.status-indicator-modern.closed .status-ripple {
    border-color: #f44336;
}

/* Header du jour */
.day-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.day-info-modern {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.day-name-modern {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.day-date-modern {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Statut du jour */
.day-status-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.day-status-modern.open {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.day-status-modern.closed {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.status-icon-modern {
    font-size: 0.9rem;
}

/* Horaires du jour */
.day-hours-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Créneau horaire */
.time-slot-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.time-slot-modern:hover {
    background: var(--bg-tertiary);
    transform: translateX(4px);
}

.time-icon-modern {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
}

.time-slot-modern.lunch .time-icon-modern {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.time-slot-modern.dinner .time-icon-modern {
    background: linear-gradient(135deg, #673ab7 0%, #512da8 100%);
}

.time-info-modern {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.time-label-modern {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.time-range-modern {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Informations supplémentaires */
.hours-info-modern {
    margin-top: 2rem;
}

.info-cards-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card-modern {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.info-card-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.info-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content-modern {
    flex: 1;
}

.info-content-modern h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.info-content-modern p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.phone-link-modern {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.phone-link-modern:hover {
    color: var(--primary-red-dark);
}

.delivery-info-modern {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .hours-section-modern {
        padding: 3rem 0;
    }
    
    .hours-header-modern {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hours-header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hours-title-modern {
        font-size: 2rem;
    }
    
    .hours-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .icon-background {
        font-size: 1.5rem;
        border-radius: 15px;
    }
    
    .status-card-modern {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .hours-grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hours-day-modern {
        padding: 1.2rem;
    }
    
    .day-header-modern {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .info-cards-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card-modern {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hours-title-modern {
        font-size: 1.8rem;
    }
    
    .hours-subtitle-modern {
        font-size: 1rem;
    }
    
    .time-slot-modern {
        padding: 0.8rem;
    }
    
    .time-icon-modern {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ========================================
   BARRE DE RECHERCHE ET FILTRES
   ======================================== */

/* Section de recherche et filtres */
.search-filters-section {
    margin: 2rem 0 3rem 0;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

/* Barre de recherche */
.search-container {
    margin-bottom: 1.5rem;
}

.search-input-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    background: var(--card-bg);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
}

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-muted);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.search-clear:hover {
    background: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

/* Filtres */
.filters-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.filter-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-red);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-gold) 100%);
    border-color: var(--primary-red);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.filter-btn i {
    font-size: 0.9rem;
}

/* Animation pour les cartes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   IMAGES DE PLATS DANS MENU-ASSIETTES
   ======================================== */

/* Container pour les images de plats */
.item-image {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.item-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Images des plats */
.dish-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.item-image:hover .dish-image {
    transform: scale(1.1);
}

/* Responsive pour les images de plats */
@media (max-width: 768px) {
    .item-image {
        width: 100px;
        height: 100px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .item-image {
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }
}

/* ========================================
   DESIGN MODERNE ALTERNATIF - GLASSMORPHISM
   ======================================== */

/* Carte moderne avec glassmorphism */
.modern-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(220, 38, 38, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Effet de glow */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.modern-card:hover .card-glow {
    opacity: 1;
}

/* Contenu interne */
.card-inner {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Header moderne */
.card-header-modern {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Container d'icône */
.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.assiettes-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
}

.sandwichs-icon {
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.3);
}

.burgers-icon {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    box-shadow: 0 8px 32px rgba(233, 30, 99, 0.3);
}

.icon-container i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modern-card:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
}

/* Éléments flottants */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.dot-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Contenu moderne */
.card-content-modern {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Section titre */
.card-title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.modern-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badge trending */
.trending-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Description moderne */
.modern-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* Statistiques modernes */
.modern-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.stat-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.stat-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bouton d'action */
.action-button {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-gold) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
}

.action-button i {
    transition: transform 0.3s ease;
}

.modern-card:hover .action-button i {
    transform: translateX(4px);
}

/* ========================================
   CARTES PROFESSIONNELLES - NOUVEAU DESIGN
   ======================================== */

/* Carte professionnelle */
.pro-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

/* Header de la carte */
.card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 3;
}

.prep-time {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    backdrop-filter: blur(10px);
}

.prep-time i {
    font-size: 0.7rem;
}

/* Body de la carte */
.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Header de catégorie */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

/* Indicateur de popularité */
.popularity-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.stars {
    display: flex;
    gap: 0.1rem;
}

.stars i {
    color: #ffc107;
    font-size: 0.8rem;
}

.rating-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Description */
.category-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Statistiques */
.category-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.8rem 0.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.stat-item i {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.2rem;
}

/* Tags */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tag {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-gold) 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Overlay amélioré */
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(255, 193, 7, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.pro-card:hover .category-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.pro-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.overlay-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   VISUELS DE CATÉGORIES (REMPLACEMENT DES IMAGES)
   ======================================== */

/* Visual de catégorie */
.category-visual {
    width: 100%;
    height: 200px;
    border-radius: 12px 12px 0 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Image de fond pour les assiettes */
.background-dish-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

/* Overlay pour l'image de fond */
.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.7) 0%, rgba(247, 147, 30, 0.7) 100%);
    z-index: 2;
}

/* Overlay spécifique pour les tacos */
.tacos-visual .visual-overlay {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.7) 0%, rgba(3, 169, 244, 0.7) 100%);
}

/* Overlay spécifique pour les burgers */
.burgers-visual .visual-overlay {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.7) 0%, rgba(255, 193, 7, 0.7) 100%);
}

/* Overlay spécifique pour les salades */
.salades-visual .visual-overlay {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.7) 0%, rgba(139, 195, 74, 0.7) 100%);
}

/* Overlay spécifique pour les durums */
.durums-visual .visual-overlay {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.7) 0%, rgba(233, 30, 99, 0.7) 100%);
}

/* Overlay spécifique pour les paninis */
.paninis-visual .visual-overlay {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.7) 0%, rgba(255, 152, 0, 0.7) 100%);
}

/* Overlay spécifique pour les plats Tex-Mex */
.texmex-visual .visual-overlay {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.7) 0%, rgba(255, 69, 0, 0.7) 100%);
}

/* Overlay spécifique pour les desserts */
.desserts-visual .visual-overlay {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.7) 0%, rgba(255, 152, 0, 0.7) 100%);
}

/* Overlay spécifique pour le menu enfant */
.kids-visual .visual-overlay {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.7) 0%, rgba(255, 20, 147, 0.7) 100%);
}

/* Overlay spécifique pour les sauces */
.sauces-visual .visual-overlay {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.7) 0%, rgba(255, 140, 0, 0.7) 100%);
}

/* Overlay spécifique pour les suppléments */
.supplements-visual .visual-overlay {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.7) 0%, rgba(41, 128, 185, 0.7) 100%);
}

.category-card:hover .category-visual {
    transform: scale(1.05);
}

/* Icône du visual */
.visual-icon {
    font-size: 4rem;
    color: white;
    z-index: 3;
    position: relative;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pattern de fond */
.visual-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Couleurs spécifiques pour chaque catégorie */
.assiettes-visual {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffc107 100%);
}

.sandwichs-visual {
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 50%, #cddc39 100%);
}

.burgers-visual {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
}

.tacos-visual {
    background: linear-gradient(135deg, #2196f3 0%, #03a9f4 50%, #00bcd4 100%);
}

.boissons-visual {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 50%, #006064 100%);
}

.sauces-visual {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 50%, #b71c1c 100%);
}

.salades-visual {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 50%, #2e7d32 100%);
}

.durums-visual {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 50%, #ef6c00 100%);
}

.paninis-visual {
    background: linear-gradient(135deg, #795548 0%, #5d4037 50%, #3e2723 100%);
}

.tex-mex-visual {
    background: linear-gradient(135deg, #f44336 0%, #ff5722 50%, #ff9800 100%);
}

.desserts-visual {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 50%, #880e4f 100%);
}

.kids-visual {
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 50%, #ff9800 100%);
}

.supplements-visual {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 50%, #424242 100%);
}

/* Overlay pour les images */
.category-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8) 0%, rgba(255, 193, 7, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    text-align: center;
}

.overlay-content i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Badge sur les images */
.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-gold) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Types de badges */
.category-badge.popular {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    animation: popularPulse 2s ease-in-out infinite;
}

.category-badge.fresh {
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    animation: freshPulse 2.5s ease-in-out infinite;
}

.category-badge.gourmand {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    animation: gourmandPulse 2.2s ease-in-out infinite;
}

.category-badge.varied {
    background: linear-gradient(135deg, #2196f3 0%, #03a9f4 100%);
    animation: variedPulse 2.8s ease-in-out infinite;
}

.category-badge.healthy {
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    animation: healthyPulse 2.3s ease-in-out infinite;
}

/* Animations spécifiques pour chaque badge */
@keyframes popularPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    }
}

@keyframes freshPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
    }
}

@keyframes gourmandPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
    }
}

@keyframes variedPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
    }
}

@keyframes healthyPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    }
}

/* Responsive pour la recherche et filtres */
@media (max-width: 768px) {
    .search-filters-section {
        margin: 1.5rem 0 2rem 0;
        padding: 1.5rem;
    }
    
    .search-input {
        padding: 0.8rem 2.5rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .search-icon {
        left: 0.8rem;
        font-size: 1rem;
    }
    
    .search-clear {
        right: 0.8rem;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .filter-btn i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .search-filters-section {
        margin: 1rem 0 1.5rem 0;
        padding: 1rem;
    }
    
    .search-input {
        padding: 0.7rem 2rem 0.7rem 2rem;
        font-size: 0.85rem;
    }
    
    .filter-buttons {
        gap: 0.3rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .filter-btn span {
        display: none;
    }
    
    .filter-btn i {
        font-size: 0.9rem;
    }
}

/* Responsive pour les cartes modernes */
@media (max-width: 768px) {
    .modern-card {
        border-radius: 20px;
    }
    
    .card-inner {
        padding: 1.5rem;
    }
    
    .card-header-modern {
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .icon-container {
        width: 70px;
        height: 70px;
    }
    
    .icon-container i {
        font-size: 2rem;
    }
    
    .modern-title {
        font-size: 1.3rem;
    }
    
    .modern-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .action-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modern-card {
        border-radius: 16px;
    }
    
    .card-inner {
        padding: 1.2rem;
    }
    
    .card-header-modern {
        height: 80px;
        margin-bottom: 0.8rem;
    }
    
    .icon-container {
        width: 60px;
        height: 60px;
    }
    
    .icon-container i {
        font-size: 1.8rem;
    }
    
    .card-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .modern-title {
        font-size: 1.2rem;
    }
    
    .trending-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .modern-stats {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .stat-modern {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .action-button {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
}

/* Responsive pour les cartes professionnelles */
@media (max-width: 768px) {
    .pro-card {
        border-radius: 16px;
    }
    
    .card-header {
        height: 160px;
    }
    
    .card-body {
        padding: 1.2rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .category-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 0.6rem 0.4rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .overlay-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .overlay-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pro-card {
        border-radius: 12px;
    }
    
    .card-header {
        height: 140px;
    }
    
    .card-body {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .popularity-indicator {
        align-items: flex-start;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .category-stats {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .stat-item {
        flex-direction: row;
        text-align: left;
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .stat-item i {
        margin-bottom: 0;
        font-size: 1rem;
    }
    
    .category-tags {
        gap: 0.3rem;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .overlay-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .overlay-text {
        font-size: 0.9rem;
    }
}

/* Responsive pour les visuels */
@media (max-width: 768px) {
    .category-visual {
        height: 150px;
    }
    
    .visual-icon {
        font-size: 3rem;
    }
    
    .category-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .overlay-content i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .category-visual {
        height: 120px;
    }
    
    .visual-icon {
        font-size: 2.5rem;
    }
    
    .category-badge {
        top: 0.3rem;
        right: 0.3rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
    }
    
    .category-badge span {
        display: none;
    }
    
    .category-badge i {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hours-day-new {
        padding: 1rem;
    }
    
    .day-header-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .hours-footer-new {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .section-icon-new i {
        font-size: 1.5rem;
    }
    
    .section-title-new {
        font-size: 1.8rem;
    }
    
    .hours-header-new {
        padding: 1.5rem;
    }
    
    .hours-title-new {
        font-size: 1.5rem;
    }
}


.breadcrumb-link{
margin: 1rem !important;
}
@media (max-width: 668px) {
    .breadcrumb-link {
      margin: 2rem !important;
    }
  }
