
/* === Programme fidélité === */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link-fidelity {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff !important;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

.nav-link-fidelity::after {
    display: none;
}

.nav-link-fidelity:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(249, 115, 22, 0.35);
}

.nav-link-fidelity:active {
    transform: translateY(-1px) scale(0.98);
}

.loyalty-nav-btn {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.loyalty-nav-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.loyalty-nav-btn small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.loyalty-inline-tip {
    margin-top: 1.25rem;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    color: #9a3412;
}

.loyalty-inline-tip p {
    margin: 0.35rem 0 0;
    line-height: 1.5;
}

.loyalty-inline-tip p:first-of-type {
    margin-top: 0.5rem;
}

.loyalty-inline-badge {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    background: #f97316;
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
}

.loyalty-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
    font-weight: 600;
    font-size: 0.85rem;
}

.loyalty-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 1rem 0;
    color: #111827;
}

.loyalty-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

.loyalty-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: #374151;
}

.loyalty-features li::before {
    content: "✓";
    color: #10b981;
    margin-right: 0.6rem;
}

.loyalty-cta-btn {
    background: #111827;
    color: #fff;
    border: none;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.loyalty-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(17, 24, 39, 0.15);
}

.loyalty-card {
    background: linear-gradient(135deg, #111827, #1f2937);
    border-radius: 24px;
    padding: 2rem;
    color: #f9fafb;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.35);
    position: relative;
    overflow: hidden;
}

.loyalty-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 55%);
    pointer-events: none;
}

.loyalty-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.loyalty-card-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: rgba(249, 250, 251, 0.7);
    margin-bottom: 0.4rem;
}

.loyalty-card-logo {
    font-size: 2.2rem;
}

.loyalty-card-email {
    font-size: 0.95rem;
    color: rgba(249, 250, 251, 0.8);
}

.loyalty-progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.loyalty-status-badge {
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.85rem;
}

.loyalty-status-badge.ready {
    background: rgba(16, 185, 129, 0.18);
    color: #6ee7b7;
}

.loyalty-stamps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
    gap: 0.6rem;
}

.loyalty-stamp {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px dashed rgba(249, 250, 251, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.loyalty-stamp.filled {
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    border-style: solid;
}

.loyalty-reward-text {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: rgba(249, 250, 251, 0.85);
}

.loyalty-logout-btn {
    margin-top: 1.5rem;
    background: rgba(15, 23, 42, 0.65);
    color: #f9fafb;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    font-size: 0.9rem;
    cursor: pointer;
    display: none;
}

.loyalty-logout-btn:hover {
    background: rgba(15, 23, 42, 0.85);
}

.loyalty-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.loyalty-modal.active {
    display: block;
}

.loyalty-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
}

.loyalty-modal-panel {
    position: relative;
    max-width: 480px;
    margin: 5vh auto;
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.35);
}

.loyalty-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1f2937;
}

.loyalty-modal-eyebrow {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    color: #9ca3af;
    margin-bottom: 0.6rem;
}

.loyalty-modal-alert {
    margin-top: 1rem;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    display: none;
}

.loyalty-modal-alert.loyalty-alert-success,
.loyalty-modal-alert.loyalty-alert-error,
.loyalty-modal-alert.loyalty-alert-info {
    display: block;
}

.loyalty-modal-alert.loyalty-alert-success {
    background: rgba(16, 185, 129, 0.15);
    color: #065f46;
}

.loyalty-modal-alert.loyalty-alert-error {
    background: rgba(239, 68, 68, 0.15);
    color: #991b1b;
}

.loyalty-modal-alert.loyalty-alert-info {
    background: rgba(59, 130, 246, 0.15);
    color: #1d4ed8;
}

.loyalty-step {
    display: none;
    margin-top: 1.5rem;
}

.loyalty-step.active {
    display: block;
}

.loyalty-step label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.loyalty-step input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
}

.loyalty-primary-btn,
.loyalty-secondary-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
}

.loyalty-primary-btn {
    background: #111827;
    color: #fff;
}

.loyalty-secondary-btn {
    background: #f3f4f6;
    color: #1f2937;
}

.loyalty-profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.loyalty-forms.hidden {
    display: none;
}

.loyalty-modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: calc(80vh - 2rem);
    overflow-y: auto;
    padding-right: 0.25rem;
}

.loyalty-modal-body::-webkit-scrollbar {
    width: 6px;
}

.loyalty-modal-body::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.25);
    border-radius: 999px;
}

.loyalty-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.loyalty-modal-body {
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 23, 42, 0.25) transparent;
}

.loyalty-modal-card-wrapper {
    margin-top: 1.5rem;
}

.loyalty-modal-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1.25rem;
}

.loyalty-hint {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.loyalty-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translate(-50%, 20px);
    background: #111827;
    color: #fff;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    opacity: 0;
    transition: all 0.25s ease;
    z-index: 10000;
}

.loyalty-toast.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }
}

@media (max-width: 640px) {
    .loyalty-modal-panel {
        width: calc(100% - 1rem);
        margin: 0.5rem auto;
        min-height: calc(100vh - 1rem);
        border-radius: 18px;
        padding: 1.25rem;
        max-width: 100%;
    }

    .loyalty-modal-body {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }

    .loyalty-profile-grid {
        grid-template-columns: 1fr;
    }

    .loyalty-card {
        padding: 1.25rem;
    }

    .loyalty-modal-footer {
        font-size: 0.85rem;
    }

    .loyalty-modal-close {
        top: 0.75rem;
        right: 0.75rem;
    }
}

@media (max-width: 480px) {
    .loyalty-card {
        padding: 1.25rem;
    }
}
/* Reset et Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e74c3c;
    --secondary-color: #c0392b;
    --accent-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --white: #ffffff;
    --text-dark: #34495e;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    
    /* Thème clair (par défaut) */
    --bg-color: #ffffff;
    --bg-secondary: #ecf0f1;
    --text-color: #34495e;
    --text-light: #7f8c8d;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --button-bg-color: #e74c3c;
    --button-text-color: #ffffff;
    --button-hover-bg: #c0392b;
    --radius-global: 16px;
    --section-spacing: 80px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --app-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --font-scale: 1;
}

[data-theme="dark"] {
    /* Thème sombre */
    --bg-color: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-color: #e0e0e0;
    --text-light: #b0b0b0;
    --card-bg: #2d2d2d;
    --border-color: #404040;
    --dark-color: #e0e0e0;
    --light-color: #2d2d2d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.7);
    --button-bg-color: #3b82f6;
    --button-text-color: #ffffff;
    --button-hover-bg: #2563eb;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    --card-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.55);
}

body {
    font-family: var(--app-font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: calc(0.875rem * var(--font-scale, 1));
}

/* Transitions améliorées pour le changement de thème */
.navbar, .pizza-card, .menu-main-btn, .menu-sub-btn, .section-title, 
.section-subtitle, .about-section, .commitment-card, .hours-card, 
.review-card, .footer, .promotion-popup, .note-popup,
button, a, input, textarea, select, .card-bg, .bg-color {
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Transitions supplémentaires pour les éléments interactifs */
button, a, .pizza-card, .menu-main-btn, .menu-sub-btn {
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Classe pour appliquer Poppins uniquement si les cookies sont acceptés */
body.fonts-loaded {
    font-family: var(--app-font-family, 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif);
}

html {
    font-size: 14px; /* Base réduite de 16px à 14px (87.5%) */
}

.section-spacing {
    padding: var(--section-spacing, 80px) 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    align-items: center;
}

.nav-menu li.nav-spacer {
    width: 1.5rem;
    pointer-events: none;
    display: block;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

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

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

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

/* Lien actif (section visible) */
.nav-link.active {
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(231, 76, 60, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    display: block;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

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

/* Overlay pour fermer le menu en cliquant en dehors - Positionné en dehors du media query pour être accessible */
.nav-menu-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
    pointer-events: none;
    backdrop-filter: blur(2px);
}

.nav-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

@media (max-width: 768px) {
    /* Animation d'apparition des liens du menu */
    .nav-menu.active .nav-link {
        animation: slideInLeft 0.4s ease forwards;
        opacity: 0;
    }
    
    .nav-menu.active .nav-link:nth-child(1) {
        animation-delay: 0.05s;
    }
    
    .nav-menu.active .nav-link:nth-child(2) {
        animation-delay: 0.1s;
    }
    
    .nav-menu.active .nav-link:nth-child(3) {
        animation-delay: 0.15s;
    }
    
    .nav-menu.active .nav-link:nth-child(4) {
        animation-delay: 0.2s;
    }
    
    .nav-menu.active .nav-link:nth-child(5) {
        animation-delay: 0.25s;
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Bouton de changement de thème (bas à droite, discret) */
.theme-toggle-fixed {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background: rgba(231, 76, 60, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(231, 76, 60, 0.15);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    color: var(--text-color);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    opacity: 0.7;
}

.theme-toggle-fixed:hover {
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.25);
    transform: scale(1.05);
    opacity: 1;
}

.theme-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

[data-theme="dark"] .theme-icon {
    content: '☀️';
}

.theme-toggle-fixed:hover .theme-icon {
    transform: rotate(15deg);
    opacity: 1;
}

@media (max-width: 768px) {
    .theme-toggle-fixed {
        bottom: 50px;
        right: 15px;
        width: 36px;
        height: 36px;
    }
}

/* Section À propos de nous */
.about-section {
    padding: var(--section-spacing, 80px) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.3), transparent);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out;
}

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

.about-main-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.about-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-description {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.8;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.about-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 3px;
    height: calc(100% - 1rem);
    background: linear-gradient(180deg, var(--primary-color), #ff6b6b);
    border-radius: 2px;
}

.about-description:first-child {
    font-weight: 500;
    color: var(--text-color);
}

.about-description:last-child {
    color: var(--text-light);
}

/* Responsive pour la section About */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-header {
        margin-bottom: 40px;
    }
    
    .about-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1.2rem;
    }
    
    .about-main-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .about-subtitle {
        font-size: 0.95rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 40px;
    }
    
    .about-description {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }
    
    .about-description::before {
        width: 2px;
    }
}

/* Hero Section - Design Moderne */
.hero {
    position: relative;
    height: 70vh;
    min-height: 450px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Arrière-plan avec vidéo */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background.hero-has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background.hero-has-image .hero-video {
    display: none;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-video.loading,
.hero-video.error {
    opacity: 0;
}

/* Fallback si la vidéo ne charge pas */
.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hero-fallback.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 25%, #d63031 50%, #e74c3c 75%, #c0392b 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

/* Particules animées */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 20s infinite linear;
}

.hero-particles .particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.hero-particles .particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.hero-particles .particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.hero-particles .particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.hero-particles .particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.hero-particles .particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.hero-particles .particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 21s;
}

.hero-particles .particle:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 16s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(1);
        opacity: 0;
    }
}

/* Overlay gradient pour fondre la vidéo avec le style */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

/* Contenu hero */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: heroFadeIn 1.2s ease-out;
}

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

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    animation: slideDown 0.8s ease-out 0.3s both;
}

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

/* Titre */
.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-title-line {
    display: block;
    font-size: 0.4em;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    animation: fadeInLeft 1s ease-out 0.5s both;
}

.hero-title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInRight 1s ease-out 0.7s both;
    text-shadow: none;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Sous-titre */
.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-subtitle-text {
    display: inline-block;
}

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

/* Bouton CTA moderne */
.hero-cta-wrapper {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: var(--button-bg-color, var(--primary-color));
    border: 2px solid transparent;
    border-radius: var(--radius-global, 16px);
    color: var(--button-text-color, #ffffff);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow, 0 8px 32px rgba(0, 0, 0, 0.2));
}

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

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

.hero-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: var(--button-hover-bg, var(--secondary-color));
    box-shadow: var(--card-shadow-hover, 0 12px 40px rgba(0, 0, 0, 0.3));
}

.hero-cta-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.hero-cta-icon {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover .hero-cta-icon {
    transform: translateX(5px);
}

.hero-cta-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-cta-btn:hover .hero-cta-shine {
    opacity: 1;
}


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

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 400px;
        max-height: 500px;
    }
    
    .hero-video {
        object-position: center center;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-title-line {
        font-size: 0.5em;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
        font-size: 1rem;
    }
    
    .hero-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-particles .particle {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 55vh;
        min-height: 350px;
        max-height: 450px;
    }
    
    .hero-video {
        object-position: center center;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        /* Ajuster le cadrage pour mobile - centrer verticalement */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    .hero-background {
        overflow: hidden;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }
    
    .hero-cta-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.btn {
    display: inline-block;
    padding: 11px 30px;
    text-decoration: none;
    border-radius: var(--radius-global, 16px);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--button-bg-color, var(--primary-color));
    color: var(--button-text-color, #ffffff);
    box-shadow: var(--shadow, var(--card-shadow));
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--button-hover-bg, var(--secondary-color));
    box-shadow: var(--shadow-hover, var(--card-shadow-hover));
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: fadeInUp 1s ease-out 1.5s both, bounce 2s infinite 2s;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 30px;
    border-right: 3px solid rgba(255, 255, 255, 0.9);
    border-bottom: 3px solid rgba(255, 255, 255, 0.9);
    transform: rotate(45deg);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.scroll-indicator:hover span {
    border-color: rgba(255, 255, 255, 1);
    transform: rotate(45deg) scale(1.2);
}

/* Sections communes */
section {
    padding: 38px 0;
}

.section-title {
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* Menu Section */
.menu-section {
    background: var(--light-color);
}

/* Anciens styles de filtres (remplacés par menu-sub-btn) */
.menu-filters {
    display: contents;
}

.filter-btn {
    display: none;
}

/* ============================================
   BOUTONS PRINCIPAUX DU MENU - VARIANTES
   ============================================
   
   VARIANTE 1 (ACTIVE) : Style moderne avec fond dégradé
   VARIANTE 2 : Style minimaliste avec bordure fine
   VARIANTE 3 : Style glassmorphism avec effet de verre
   VARIANTE 4 : Style outline avec remplissage au survol
   
   Pour changer de variante, décommentez la variante souhaitée
   et commentez la variante actuelle.
   ============================================ */

/* VARIANTE 1 (ACTIVE) : Style moderne avec fond dégradé */
.menu-main-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.menu-main-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    border: none;
    color: var(--text-color);
    border-radius: var(--radius-global, 16px);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow, var(--card-shadow));
}

.menu-main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.menu-main-btn > * {
    position: relative;
    z-index: 1;
}

.menu-main-icon {
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.menu-main-text {
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}

.menu-main-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.25);
}

.menu-main-btn:hover::before {
    opacity: 1;
}

.menu-main-btn:hover .menu-main-icon {
    transform: scale(1.1) rotate(5deg);
}

.menu-main-btn.active {
    color: var(--white);
    box-shadow: 0 4px 14px rgba(231, 76, 60, 0.3);
    transform: translateY(-1px);
}

.menu-main-btn.active::before {
    opacity: 1;
}

.menu-main-btn.active .menu-main-icon {
    transform: scale(1.05);
}

/* Barre de recherche du menu - Discrète par défaut, s'agrandit vers la gauche */
.menu-search-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.menu-search-container {
    position: relative;
    width: 40px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    cursor: pointer;
    transform-origin: right center;
}

.menu-search-container.expanded {
    width: 280px;
    background: var(--card-bg);
    border-color: var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-search-container.expanded:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.menu-search-icon {
    position: absolute;
    right: 12px;
    width: 16px;
    height: 16px;
    color: var(--text-light);
    opacity: 0.7;
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.menu-search-container.expanded .menu-search-icon {
    right: auto;
    left: 12px;
}

.menu-search-container.expanded .menu-search-icon {
    opacity: 1;
}

.menu-search-container:focus-within .menu-search-icon {
    color: var(--primary-color);
    opacity: 1;
}

.menu-search-input {
    width: 0;
    padding: 0;
    font-size: 0.85rem;
    border: none;
    background: transparent;
    color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    opacity: 0;
    pointer-events: none;
}

.menu-search-container.expanded .menu-search-input {
    width: 100%;
    padding: 10px 36px 10px 36px;
    opacity: 1;
    pointer-events: all;
    text-align: left;
}

.menu-search-input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.menu-search-clear {
    position: absolute;
    left: 8px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 3;
    opacity: 0.6;
    width: 24px;
    height: 24px;
}

.menu-search-container.expanded .menu-search-clear {
    display: flex;
}

.menu-search-clear svg {
    width: 14px;
    height: 14px;
}

.menu-search-clear:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

.menu-search-results {
    margin-top: 0.4rem;
    padding: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    opacity: 0.8;
}

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

[data-theme="dark"] .menu-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

[data-theme="dark"] .menu-search-icon {
    color: var(--text-light);
}

/* Wrapper pour les sous-boutons */
.menu-sub-buttons-wrapper {
    margin-bottom: 2rem;
    padding: 0 1rem;
    animation: fadeInDown 0.4s ease-out;
}

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

/* Sous-boutons (catégories) - Style discret avec fond subtil */
.menu-sub-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

/* Barre de recherche dans le flux normal avec les filtres */
.menu-search-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.menu-sub-btn {
    padding: 6px 14px;
    background: var(--bg-secondary);
    border: none;
    color: var(--text-color);
    border-radius: var(--radius-global, 16px);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.menu-sub-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.menu-sub-btn:hover {
    background: var(--card-bg);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow, var(--card-shadow));
}

.menu-sub-btn:hover::after {
    width: 80%;
}

.menu-sub-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.25);
    transform: translateY(-1px);
}

.menu-sub-btn.active::after {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive pour les boutons du menu */
@media (max-width: 768px) {
    .menu-main-buttons {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .menu-sub-buttons {
        justify-content: center;
    }
    
    .menu-search-wrapper {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .menu-search-container.expanded {
        width: 100%;
        max-width: 400px;
    }
    
    .menu-main-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .menu-main-icon {
        font-size: 1.1rem;
    }
    
    .menu-sub-buttons {
        gap: 0.5rem;
    }
    
    .menu-sub-btn {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .menu-main-buttons {
        gap: 0.6rem;
    }
    
    .menu-main-btn {
        padding: 7px 14px;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .menu-main-icon {
        font-size: 1rem;
    }
    
    .menu-sub-buttons {
        gap: 0.4rem;
    }
    
    .menu-sub-btn {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
}

/* Ancien style pour compatibilité (à supprimer progressivement) */
.menu-type-tabs {
    display: none;
}

.menu-type-tab {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.1rem;
    margin-top: 1.1rem;
}

/* Styles pour le thème sombre */
[data-theme="dark"] .navbar {
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

[data-theme="dark"] .pizza-description {
    color: var(--text-light);
}

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

[data-theme="dark"] .about-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

[data-theme="dark"] .about-description {
    color: var(--text-light);
}

/* Section Nos Engagements */
.commitments-section {
    margin-top: 50px;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.commitment-card {
    background: var(--card-bg);
    border-radius: var(--radius-global, 16px);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow, var(--card-shadow));
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.commitment-icon {
    margin-bottom: 15px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.15);
}

.icon-symbol {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.commitment-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.commitment-description {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
}

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

[data-theme="dark"] .commitment-title {
    color: var(--text-color);
}

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

@media (max-width: 768px) {
    .commitments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .commitment-card {
        padding: 15px;
    }
    
    .icon-circle {
        width: 45px;
        height: 45px;
    }
    
    .icon-symbol {
        font-size: 1.3rem;
    }
    
    .commitment-title {
        font-size: 0.85rem;
    }
    
    .commitment-description {
        font-size: 0.7rem;
    }
}

.pizza-card {
    background: var(--white);
    border-radius: var(--radius-global, 16px);
    overflow: hidden;
    box-shadow: var(--shadow, var(--card-shadow));
    transition: var(--transition);
    animation: fadeIn 0.5s ease;
}

.pizza-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover, var(--card-shadow-hover));
}

.pizza-card:hover .pizza-image {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.pizza-image:hover {
    transform: scale(1.1) rotate(-3deg);
    filter: brightness(1.1);
}

.pizza-image {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Image par défaut pour les pizzas sans image */
.pizza-image-default {
    position: relative;
}

.menu-disclaimer {
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 0.7rem;
    color: var(--text-light);
    font-style: italic;
    text-align: left;
    opacity: 0.6;
    font-weight: 300;
    letter-spacing: 0.3px;
    padding-left: 0.5rem;
}

/* Emoji au hover à côté du nom */
.pizza-emoji-hover {
    display: inline-block;
    font-size: 0;
    opacity: 0;
    margin-right: 0;
    transition: all 0.3s ease;
    transform: scale(0);
}

.pizza-card:hover .pizza-emoji-hover {
    font-size: 1.2em;
    opacity: 1;
    margin-right: 8px;
    transform: scale(1);
}

.pizza-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: shimmer 10s ease-in-out infinite;
    transform: rotate(45deg);
    z-index: 1;
}

.pizza-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: slide 2s ease-in-out infinite;
    z-index: 1;
}

.pizza-image-default::before,
.pizza-image-default::after {
    z-index: 2;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(45deg) scale(0.8);
        opacity: 0.15;
    }
    50% {
        transform: translate(-30%, -30%) rotate(45deg) scale(1.2);
        opacity: 0.3;
    }
}

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


.pizza-info {
    padding: 1rem;
}

.pizza-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.pizza-description {
    color: var(--text-light);
    margin-bottom: 0.6rem;
    font-size: 0.75rem;
    line-height: 1.4;
}

.pizza-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pizza-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.pizza-sizes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.pizza-size-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.pizza-size-item:hover {
    background: var(--card-bg);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pizza-size-item:active {
    transform: translateX(3px) scale(0.98);
}

.size-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.size-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

[data-theme="dark"] .pizza-size-item {
    background: var(--bg-secondary);
}

[data-theme="dark"] .pizza-size-item:hover {
    background: var(--card-bg);
}

.pizza-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Section Horaires et Avis combinée */
.hours-reviews-section {
    background: var(--white);
    transition: background-color 0.3s ease;
}

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

.hours-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.hours-section,
.reviews-section {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0;
}

/* Horaires Section */
.hours-section {
    background: transparent;
    display: flex;
    flex-direction: column;
}

.hours-section .section-title {
    margin-bottom: 1.5rem;
}

.hours-container {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.hours-card {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 1.9rem;
    border-radius: var(--radius-global, 16px);
    box-shadow: var(--shadow, var(--card-shadow));
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

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

.hours-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
}

.hours-list {
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.day {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-color);
}

.time {
    text-align: right;
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.5;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

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

.status-indicator.open .status-dot {
    background: #2ecc71;
}

.status-indicator.closed .status-dot {
    background: #e74c3c;
}

/* Avis Google Section */
.reviews-section {
    background: transparent;
    display: flex;
    flex-direction: column;
}

.reviews-section .section-title {
    margin-bottom: 1.5rem;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.reviews-header {
    margin-bottom: 2rem;
    margin-top: 0;
}

.google-rating-summary {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.rating-score-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.rating-score-main .score {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-stars-small {
    display: flex;
    gap: 3px;
    font-size: 1.2rem;
    align-items: center;
}

.rating-stars-small .star {
    display: inline-block;
    position: relative;
    color: #fbbf24;
    line-height: 1;
    width: 1em;
    height: 1em;
}

.rating-stars-small .star-full {
    opacity: 1;
    filter: none;
}

.rating-stars-small .star-partial {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    overflow: hidden;
}

.rating-stars-small .star-partial .star-bg-empty {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    filter: grayscale(100%);
}

.rating-stars-small .star-partial .star-bg-full {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    opacity: 1;
    filter: none;
    z-index: 1;
}

.rating-stars-small .star-empty {
    opacity: 0.3;
    filter: grayscale(100%);
}

.total-reviews {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.google-link-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.google-link-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2rem;
}

/* Widget Google Reviews */
.google-reviews-widget {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.google-reviews-widget .g-review {
    width: 100%;
    max-width: 100%;
}

.review-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--radius-global, 16px);
    box-shadow: var(--shadow, var(--card-shadow));
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.star-small {
    font-size: 0.9rem;
    color: #fbbf24;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

[data-theme="dark"] .google-rating-summary,
[data-theme="dark"] .review-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

.rating-stars .star {
    display: inline-block;
    transition: transform 0.2s ease;
}

.rating-stars .star-full {
    filter: grayscale(0%);
    opacity: 1;
}

.rating-stars .star-half {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 1em;
}

.rating-stars .star-half::before {
    content: '⭐';
    position: absolute;
    left: 0;
    opacity: 1;
    clip-path: inset(0 50% 0 0);
}

.rating-stars .star-half::after {
    content: '☆';
    position: absolute;
    left: 0;
    opacity: 0.5;
}

.rating-stars .star-empty {
    filter: grayscale(100%);
    opacity: 0.3;
}



.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.reviewer-details h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.reviewer-details p {
    margin: 0;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.review-rating {
    display: flex;
    gap: 2px;
    font-size: 1rem;
}

.review-rating .star {
    color: #f39c12;
}

.review-rating .star.empty {
    color: #ddd;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.8rem;
    color: #95a5a6;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-date::before {
    content: '📅';
    font-size: 0.9rem;
}

.google-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4285f4;
    color: var(--white);
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.reviews-actions {
    text-align: center;
    margin-top: 1.5rem;
}

.reviews-actions .btn {
    padding: 12px 30px;
    font-size: 0.9rem;
}

/* Localisation Section */
.location-section {
    background: var(--light-color);
    padding: var(--section-spacing, 80px) 0;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-top: 1.5rem;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 6px solid white;
    background: var(--card-bg);
}

[data-theme="dark"] .map-wrapper {
    border-color: var(--border-color);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.location-details {
    display: flex;
    flex-direction: column;
    height: 400px;
    justify-content: center;
}

.location-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.location-contact-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.location-contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.location-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 0.15rem;
    opacity: 0.8;
}

.location-contact-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.location-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.location-value {
    font-size: 0.95rem;
    color: var(--text-color);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.location-value:hover {
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-wrapper {
        height: 300px;
        order: 2;
        margin: 1.5rem auto;
    }
    
    .location-details {
        order: 1;
        height: auto;
        justify-content: flex-start;
    }
    
    .location-title {
        margin-bottom: 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    transition: background-color 0.3s ease;
}

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

[data-theme="dark"] .footer-section p {
    color: var(--text-light);
}

[data-theme="dark"] .footer-bottom {
    color: var(--text-light);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.social-link svg {
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-credit {
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-credit-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-credit-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Liens légaux desktop */
.footer-legal-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0.75rem 0;
    font-size: 0.9rem;
}

.footer-legal-desktop a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-desktop a:hover {
    color: var(--white);
}

.footer-legal-desktop span {
    color: #95a5a6;
}

/* Accordéon mobile pour les liens légaux */
.footer-legal-mobile {
    display: none;
    margin-top: 1rem;
}

.footer-legal-toggle {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.footer-legal-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-legal-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.15);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.footer-legal-toggle-icon {
    transition: transform 0.3s ease;
}

.footer-legal-toggle[aria-expanded="true"] .footer-legal-toggle-icon {
    transform: rotate(180deg);
}

.footer-legal-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.footer-legal-content.active {
    overflow: visible;
}

.footer-legal-items {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
}

.footer-legal-link {
    color: #bdc3c7;
    text-decoration: none;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.footer-legal-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-left-color: var(--primary-color);
}

.footer-legal-link:active {
    background: rgba(255, 255, 255, 0.15);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .navbar .container {
        padding: 0.875rem 1rem;
    }
    
    .logo {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .logo-text {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
    }
    
    .hamburger {
        display: flex;
        order: 2;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--card-bg);
        backdrop-filter: blur(20px);
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        padding: 0;
        margin: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        border-top: 1px solid var(--border-color);
    }
    
    [data-theme="dark"] .nav-menu {
        background: var(--card-bg);
        border-top-color: var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: flex;
        width: 100%;
        padding: 1.25rem 1.5rem;
        text-align: left;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-color);
        min-height: 56px;
        align-items: center;
        transition: all 0.3s ease;
        position: relative;
        -webkit-tap-highlight-color: rgba(231, 76, 60, 0.2);
        text-decoration: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-color);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: var(--bg-secondary);
        color: var(--primary-color);
        padding-left: 2rem;
    }
    
    .nav-link.active {
        background: rgba(231, 76, 60, 0.1);
        color: var(--primary-color);
        padding-left: 2rem;
    }
    
    .nav-link.active::before {
        transform: scaleY(1);
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 65px;
    }
    
    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }
    
    .logo-text {
        max-width: 120px;
        font-size: 0.95rem;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .hamburger {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        padding: 8px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
    }
    
    .nav-link {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        min-height: 52px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 40px 0;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* Optimisation des cartes de pizzas pour mobile - 2 colonnes */
    .pizza-card {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .pizza-image {
        height: 90px;
        font-size: 1.8rem;
    }
    
    .pizza-info {
        padding: 0.65rem;
    }
    
    .pizza-name {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }
    
    .pizza-description {
        font-size: 0.65rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .pizza-price {
        font-size: 1rem;
    }
    
    .pizza-footer {
        margin-top: 0.25rem;
    }
    
    /* Réduire les animations sur mobile pour la performance */
    .pizza-card:hover {
        transform: translateY(-3px) scale(1.01);
    }
    
    .pizza-card:hover .pizza-image {
        transform: scale(1.05);
    }
    
    /* Optimiser les tailles de pizzas pour mobile */
    .pizza-sizes {
        gap: 0.4rem;
    }
    
    .pizza-size-item {
        padding: 0.4rem 0.6rem;
        border-radius: 6px;
    }
    
    .size-name {
        font-size: 0.75rem;
    }
    
    .size-price {
        font-size: 0.7rem;
    }
    
    .pizza-emoji-hover {
        font-size: 0.8em;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Badges et autres éléments pour mobile */
    .pizza-badge {
        font-size: 0.65rem;
        padding: 2px 8px;
        margin-top: 0.2rem;
    }

    .map-wrapper {
        height: 300px;
    }

    .hours-reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hours-card {
        padding: 2rem 1.5rem;
    }

    .reviews-container {
        max-height: none;
        overflow: visible;
    }
    
    /* Optimisation du résumé Google Rating pour mobile */
    .reviews-header {
        margin-bottom: 1rem;
    }
    
    .google-rating-summary {
        padding: 1rem;
        border-radius: 10px;
        gap: 15px;
    }
    
    .rating-score-main {
        gap: 10px;
    }
    
    .rating-score-main .score {
        font-size: 1.5rem;
    }
    
    .rating-stars-small {
        font-size: 1rem;
        gap: 2px;
    }
    
    .google-link-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Optimisation de la liste des avis pour mobile - afficher les 4 en taille compacte */
    .reviews-list {
        gap: 10px;
        margin-bottom: 1rem;
    }
    
    .review-card {
        padding: 0.75rem;
        border-radius: 10px;
    }
    
    .review-header {
        margin-bottom: 8px;
    }
    
    .reviewer-info {
        gap: 8px;
    }
    
    .reviewer-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .reviewer-name {
        font-size: 0.8rem;
    }
    
    .review-rating {
        gap: 1px;
    }
    
    .star-small {
        font-size: 0.65rem;
    }
    
    .review-text {
        font-size: 0.75rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
    }
    
    .review-date {
        font-size: 0.7rem;
        white-space: nowrap;
    }
    
    /* Désactiver le hover sur mobile */
    .review-card:hover {
        transform: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }
    
    /* Optimiser l'espacement des détails du reviewer */
    .reviewer-details {
        gap: 2px;
        flex: 1;
        min-width: 0;
    }
    
    /* Footer optimisé pour mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Cacher le nom de l'entreprise sur mobile */
    .footer-section:first-child {
        display: none;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        padding: 7px;
    }
    
    .social-link svg {
        width: 19px;
        height: 19px;
    }
    
    /* Afficher l'accordéon mobile et masquer le desktop */
    .footer-legal-mobile {
        display: block;
    }
    
    .footer-legal-desktop {
        display: none;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-credit {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
}

/* Optimisations supplémentaires pour très petits écrans (480px et moins) */
@media (max-width: 480px) {
    .menu-grid {
        gap: 0.6rem;
    }
    
    .pizza-card {
        border-radius: 10px;
    }
    
    .pizza-image {
        height: 80px;
        font-size: 1.6rem;
    }
    
    .pizza-info {
        padding: 0.55rem;
    }
    
    .pizza-name {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .pizza-description {
        font-size: 0.6rem;
        margin-bottom: 0.4rem;
        -webkit-line-clamp: 2;
    }
    
    .pizza-price {
        font-size: 0.95rem;
    }
    
    .pizza-size-item {
        padding: 0.35rem 0.5rem;
    }
    
    .size-name {
        font-size: 0.7rem;
    }
    
    .size-price {
        font-size: 0.65rem;
    }
    
    .pizza-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
    
    /* Avis Google encore plus compacts sur très petits écrans */
    .google-rating-summary {
        padding: 0.875rem;
        gap: 12px;
    }
    
    .rating-score-main {
        gap: 8px;
    }
    
    .rating-score-main .score {
        font-size: 1.3rem;
    }
    
    .rating-stars-small {
        font-size: 0.9rem;
    }
    
    .google-link-btn {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
    
    .reviews-list {
        gap: 8px;
    }
    
    .review-card {
        padding: 0.65rem;
        border-radius: 8px;
    }
    
    .reviewer-avatar {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    .reviewer-name {
        font-size: 0.75rem;
    }
    
    .star-small {
        font-size: 0.6rem;
    }
    
    .review-text {
        font-size: 0.7rem;
        line-height: 1.3;
        -webkit-line-clamp: 2;
    }
    
    .review-date {
        font-size: 0.65rem;
    }
    
    .review-header {
        margin-bottom: 6px;
    }
    
    .reviewer-details {
        gap: 1px;
    }
    
    .review-text {
        -webkit-line-clamp: 2;
    }
}

/* Popup Promotion */
/* Overlay pour la popup promotion */
.promotion-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Popup promotion moderne */
.promotion-popup {
    position: relative;
    max-width: 500px;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius-global, 16px);
    box-shadow: var(--shadow-hover, 0 20px 60px rgba(0, 0, 0, 0.3));
    padding: 0;
    z-index: 10001;
    animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-30px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.promotion-popup-content {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

/* Badge promotion */
.promotion-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.promotion-badge-icon {
    font-size: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.promotion-badge-text {
    font-size: 0.7rem;
}

/* Titre promotion */
.promotion-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Description promotion */
.promotion-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Actions promotion */
.promotion-actions {
    margin-top: 0.5rem;
}

.promotion-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--button-bg-color, var(--primary-color));
    color: var(--button-text-color, #ffffff);
    padding: 1rem 2rem;
    border-radius: var(--radius-global, 16px);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow, var(--card-shadow));
    border: none;
    cursor: pointer;
}

.promotion-cta-btn:hover {
    transform: translateY(-2px);
    background: var(--button-hover-bg, var(--secondary-color));
    box-shadow: var(--shadow-hover, var(--card-shadow-hover));
}

.promotion-cta-btn:active {
    transform: translateY(0);
}

.promotion-cta-btn svg {
    transition: transform 0.3s ease;
}

.promotion-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Bouton fermer */
.promotion-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.promotion-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    transform: rotate(90deg);
}

.promotion-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Mode sombre */
[data-theme="dark"] .promotion-popup {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .promotion-title {
    color: #ffffff;
}

[data-theme="dark"] .promotion-description {
    color: #b0b0b0;
}

[data-theme="dark"] .promotion-close {
    background: rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
}

[data-theme="dark"] .promotion-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Contrôles du carrousel promotion */
.promotion-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.promotion-carousel-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.promotion-carousel-btn:hover:not(.disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.promotion-carousel-btn:active:not(.disabled) {
    transform: scale(0.95);
}

.promotion-carousel-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.promotion-carousel-indicator {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    min-width: 50px;
    text-align: center;
}

[data-theme="dark"] .promotion-carousel-controls {
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .promotion-carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #b0b0b0;
}

[data-theme="dark"] .promotion-carousel-btn:hover:not(.disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

[data-theme="dark"] .promotion-carousel-indicator {
    color: #b0b0b0;
}

/* Responsive pour le popup promotion */
@media (max-width: 768px) {
    .promotion-popup-overlay {
        padding: 15px;
    }
    
    .promotion-popup {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .promotion-popup-content {
        padding: 2rem 1.5rem 1.5rem;
        gap: 1rem;
    }
    
    .promotion-title {
        font-size: 1.5rem;
    }
    
    .promotion-description {
        font-size: 0.95rem;
    }
    
    .promotion-cta-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .promotion-badge {
        font-size: 0.7rem;
        padding: 0.45rem 1rem;
    }
    
    .promotion-carousel-controls {
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .promotion-carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .promotion-carousel-indicator {
        font-size: 0.85rem;
    }
}

/* Bandeau de cookies discret */
#cookieBanner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem 1.25rem;
    z-index: 10001;
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 0.875rem;
    line-height: 1.5;
}

#cookieBanner p {
    margin: 0 0 0.75rem 0;
    color: var(--text-color);
}

#cookieBanner a {
    color: var(--primary-color);
    text-decoration: none;
}

#cookieBanner a:hover {
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-banner-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.cookie-banner-btn-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-banner-btn-accept:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.cookie-banner-btn-refuse {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.cookie-banner-btn-refuse:hover {
    background: var(--bg-secondary);
}

@media (max-width: 768px) {
    #cookieBanner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Popup Note de Commande */
.note-chat-popup {
    position: fixed;
    bottom: 110px;
    right: 70px;
    width: 380px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 140px);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    animation: chatSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.note-chat-arrow {
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.note-popup {
    position: relative;
    width: 100%;
    max-height: 600px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius-global, 16px);
    box-shadow: var(--shadow-hover, 0 8px 32px rgba(0, 0, 0, 0.2));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.note-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    color: white;
}

.note-popup-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.note-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.note-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.note-popup-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    max-height: 500px;
    overflow: hidden;
}

.note-items {
    flex: 1;
    min-height: 100px;
    max-height: 300px;
    margin-bottom: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}

.note-items::-webkit-scrollbar {
    width: 6px;
}

.note-items::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 3px;
}

.note-items::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.note-items::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.note-empty {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.note-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.note-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.note-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.note-item-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

.note-item-size {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

.note-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.note-item-remove {
    background: transparent;
    border: none;
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.note-item-remove:hover {
    background: rgba(231, 76, 60, 0.1);
    color: var(--primary-color);
    transform: scale(1.1);
}

.note-footer {
    border-top: 2px solid var(--border-color);
    padding-top: 1rem;
    margin-top: auto;
}

.note-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    border-radius: 10px;
    color: white;
}

.note-total-label {
    font-size: 1rem;
    font-weight: 600;
}

.note-total-price {
    font-size: 1.25rem;
    font-weight: 800;
}

.note-phone {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.note-phone-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.note-phone-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.note-phone-number:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.note-disclaimer {
    font-size: 0.7rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    margin: 0;
    padding: 0.75rem;
    background: rgba(231, 76, 60, 0.05);
    border-radius: 8px;
}

/* Bouton flottant */
.note-floating-btn {
    position: fixed;
    bottom: 60px;
    right: 70px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4);
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.note-floating-btn svg {
    width: 18px;
    height: 18px;
}

.note-floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 32px rgba(231, 76, 60, 0.5);
}

.note-floating-btn:active {
    transform: scale(0.95);
}

.note-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #ff6b6b;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Mode sombre */
[data-theme="dark"] .note-popup {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .note-popup-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

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

[data-theme="dark"] .note-disclaimer {
    background: rgba(231, 76, 60, 0.1);
}

/* Animation pour le chat */
@keyframes chatSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .note-chat-popup {
        bottom: 100px;
        right: 15px;
        left: 15px;
        width: auto;
        max-width: none;
    }
    
    .note-chat-arrow {
        right: 30px;
    }
    
    .note-popup {
        max-height: calc(100vh - 120px);
        border-radius: 16px;
    }
    
    .note-popup-header {
        padding: 1rem 1.25rem;
    }
    
    .note-popup-content {
        padding: 1.25rem;
        max-height: calc(100vh - 200px);
    }
    
    .note-floating-btn {
        bottom: 50px;
        right: 60px;
        width: 36px;
        height: 36px;
    }
    
    .note-floating-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .note-items {
        max-height: 250px;
    }
    
    .note-badge {
        width: 16px;
        height: 16px;
        font-size: 0.55rem;
        top: -2px;
        right: -2px;
    }
}

/* Notification toast discrète pour l'ajout à la note */
.add-to-note-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    min-width: 280px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.add-to-note-toast.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.add-to-note-toast.hide {
    opacity: 0;
    transform: translateX(400px);
}

.add-to-note-toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: scaleIn 0.3s ease 0.1s both;
}

.add-to-note-toast-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.add-to-note-toast-message {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.4;
}

/* Bouton pour vider la note */
.note-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.note-clear-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(231, 76, 60, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.note-clear-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.note-clear-btn svg {
    width: 16px;
    height: 16px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Thème sombre pour la notification toast */
[data-theme="dark"] .add-to-note-toast {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .add-to-note-toast-message {
    color: var(--text-color);
}

/* Responsive pour la notification toast */
@media (max-width: 768px) {
    .add-to-note-toast {
        top: 15px;
        right: 15px;
        left: 15px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .add-to-note-toast.show {
        transform: translateY(0);
    }
    
    .add-to-note-toast.hide {
        transform: translateY(-100px);
    }
    
    .add-to-note-toast-icon {
        font-size: 1.25rem;
    }
    
    .add-to-note-toast-message {
        font-size: 0.9rem;
    }
    
    .note-clear-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}

