/* ============================================
   CAFÉ CONCEPT - CSS UNIQUE OPTIMISÉ
   Design minimaliste, rapide, moderne 2025
   ============================================ */

:root {
    /* Couleurs */
    --primary: #ffc2e8;
    --primary-dark: #C2185B;
    --accent: #D4A574;
    --gold: #D0A65A;
    --gold-light: #E8C97A;
    --gold-dark: #B8944A;
    --caramel: #C69C6D;
    --dark: #1a1a1a;
    --light: #fafafa;
    --gray: #666;
    --gray-light: #f5f5f5;
    --white: #fff;
    
    /* Espacements */
    --s-xs: 0.5rem;
    --s-sm: 1rem;
    --s-md: 1.5rem;
    --s-lg: 2rem;
    --s-xl: 3rem;
    --s-2xl: 5rem;
    --s-3xl: 8rem;
    
    /* Typographie */
    --font-main: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-display: Georgia, 'Times New Roman', serif;
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Ombres */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

/* Reset minimal */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: #2c2416;
    background: #F5EAD6;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(198, 156, 109, 0.1) 2px, rgba(198, 156, 109, 0.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(208, 166, 90, 0.08) 2px, rgba(208, 166, 90, 0.08) 4px),
        radial-gradient(ellipse at 20% 30%, rgba(232, 201, 122, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(198, 156, 109, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #F5EAD6 0%, #FAF7F2 25%, #F5EAD6 50%, #F8F3E8 75%, #F5EAD6 100%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%, 100% 100%;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

/* Typographie - Titres en OR */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 30px rgba(208, 166, 90, 0.3);
}
h1 { 
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);  
    background-clip: text;
}
h2 { 
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
h3 { 
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

p { color: #4a3d2a; margin-bottom: var(--s-sm); }
a { color: var(--primary); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--primary-dark); }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--s-md); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(47, 46, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--s-sm);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
}
.nav-brand img { height: 45px; width: auto; }

/* Typographie du logo : café en police breathing/script, CONCEPT en rose */
/* Typographie du logo : café et concept en police Breathing */
.cafe-part {
    font-family: 'Breathing', 'Caveat', 'Dancing Script', 'Great Vibes', 'Parisienne', cursive;
    font-weight: normal;
    color: var(--white);
    font-style: normal;
    text-transform: lowercase;
    font-size: 1.2em;
    letter-spacing: 0.05em;
}

.concept-part {
    font-family: 'Breathing', 'Playfair Display', serif;
    font-style: normal;
    font-weight: normal;
    color: #ffc2e8;
    text-transform: lowercase;
    font-size: 1.1em;
    letter-spacing: 0.1em;
    margin-left: 0.25rem;
    text-shadow: 0 0 20px rgba(255, 194, 232, 0.5), 0 0 40px rgba(255, 194, 232, 0.3);
}

.nav-brand .cafe-part,
.nav-brand .concept-part {
    display: inline;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--s-xs);
    list-style: none;
}

.nav-link {
    padding: var(--s-xs) var(--s-sm);
    color: var(--gray);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s var(--ease);
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: rgba(233, 30, 99, 0.05);
}

.nav-cart {
    position: relative;
    padding: var(--s-xs);
}
.nav-cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Panier désactivé - Commandes fermées */
.nav-cart.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.nav-cart.disabled .nav-cart-badge {
    background: #dc3545;
    color: white;
    animation: pulse-warning 2s infinite;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(20, 20, 20, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: var(--s-md);
        gap: var(--s-xs);
        box-shadow: var(--shadow-lg);
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-link { width: 100%; text-align: center; padding: var(--s-sm); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--s-3xl) 0 var(--s-2xl);
    background: linear-gradient(135deg, #F5EAD6 0%, #FAF7F2 50%, #F5EAD6 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-2xl);
    align-items: center;
}

.hero-text { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s-xs);
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary);
    padding: var(--s-xs) var(--s-sm);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--s-md);
}

.hero h1 { margin-bottom: var(--s-md); }
.hero h1 span { color: var(--primary); }
.hero p {
    font-size: 1.125rem;
    margin-bottom: var(--s-lg);
    max-width: 500px;
}

.hero-actions { display: flex; gap: var(--s-sm); flex-wrap: wrap; }

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.hero-stats {
    display: flex;
    gap: var(--s-lg);
    margin-top: var(--s-2xl);
    padding-top: var(--s-lg);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.hero-stat { text-align: center; }
.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}
.hero-stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .hero { padding: calc(70px + var(--s-lg)) 0 var(--s-xl); min-height: auto; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: var(--s-lg); }
    .hero-visual img { max-width: 200px; }
    .hero-stats { justify-content: center; }
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--s-xs);
    padding: var(--s-sm) var(--s-lg);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-lg { padding: var(--s-md) var(--s-xl); font-size: 1rem; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: #F5EAD6;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(198, 156, 109, 0.1) 2px, rgba(198, 156, 109, 0.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(208, 166, 90, 0.08) 2px, rgba(208, 166, 90, 0.08) 4px),
        radial-gradient(ellipse at 20% 30%, rgba(232, 201, 122, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(198, 156, 109, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #F5EAD6 0%, #FAF7F2 25%, #F5EAD6 50%, #F8F3E8 75%, #F5EAD6 100%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%, 100% 100%;
    background-attachment: fixed;
}

/* Séparateurs dorés très subtils entre sections */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(208, 166, 90, 0.15) 20%, 
        rgba(208, 166, 90, 0.25) 50%, 
        rgba(208, 166, 90, 0.15) 80%, 
        transparent 100%);
    z-index: 1;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(208, 166, 90, 0.1) 20%, 
        rgba(208, 166, 90, 0.2) 50%, 
        rgba(208, 166, 90, 0.1) 80%, 
        transparent 100%);
    z-index: 1;
}
.section-alt { 
    background: linear-gradient(135deg, #E8D5B7 0%, #F5EAD6 50%, #E8D5B7 100%);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(198, 156, 109, 0.1) 2px, rgba(198, 156, 109, 0.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(208, 166, 90, 0.08) 2px, rgba(208, 166, 90, 0.08) 4px),
        radial-gradient(ellipse at 20% 30%, rgba(232, 201, 122, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(198, 156, 109, 0.12) 0%, transparent 50%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
    background-attachment: fixed;
    color: #2c2416;
    position: relative;
}

/* Fond uniforme chaleureux pour toutes les sections spécifiques */
.section-categories,
.section-why-us,
.section-specialties {
    background: linear-gradient(135deg, #FAF7F2 0%, #F5EAD6 50%, #FAF7F2 100%);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(198, 156, 109, 0.1) 2px, rgba(198, 156, 109, 0.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(208, 166, 90, 0.08) 2px, rgba(208, 166, 90, 0.08) 4px),
        radial-gradient(ellipse at 20% 30%, rgba(232, 201, 122, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(198, 156, 109, 0.12) 0%, transparent 50%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
    background-attachment: fixed;
}
.section-alt > .container {
    position: relative;
    z-index: 1;
}
.section-alt h2,
.section-alt h3,
.section-alt h4,
.section-alt p {
    color: #2c2416;
}
.section-alt .section-header p {
    color: #4a3d2a;
}
/* Cartes dans les sections avec dégradé */
.section-alt .card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(198, 156, 109, 0.3);
    color: #2c2416;
    box-shadow: 0 4px 20px rgba(198, 156, 109, 0.15);
}
.section-alt .card h3,
.section-alt .card h4,
.section-alt .card p {
    color: #2c2416;
}
.section-alt .service-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(198, 156, 109, 0.3);
    color: #2c2416;
}
.section-alt .service-card h3,
.section-alt .service-card p {
    color: #2c2416;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--s-2xl);
}
.section-header h2 { margin-bottom: var(--s-sm); }

/* ============================================
   CARDS
   ============================================ */
.card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(198, 156, 109, 0.3);
    border-radius: 24px;
    padding: var(--s-xl);
    box-shadow: 0 4px 20px rgba(198, 156, 109, 0.15), 0 0 0 1px rgba(208, 166, 90, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    color: #2c2416;
}

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

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

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(208, 166, 90, 0.5);
    box-shadow: 0 20px 60px rgba(198, 156, 109, 0.25), 0 0 40px rgba(208, 166, 90, 0.2);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--s-lg);
}

/* Product Card */
.product-card {
    text-align: center;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(208, 166, 90, 0.15);
    border-radius: 24px;
    padding: var(--s-xl);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(208, 166, 90, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(208, 166, 90, 0.2);
}

.product-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: var(--s-md);
    border: 3px solid rgba(208, 166, 90, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover img {
    border-color: var(--gold);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(208, 166, 90, 0.4);
}
.product-card h4 { 
    margin-bottom: var(--s-xs);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.3rem;
}
.product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: var(--s-sm) 0;
    text-shadow: 0 0 20px rgba(208, 166, 90, 0.3);
    color: var(--gold);
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 0 20px rgba(208, 166, 90, 0.3);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: var(--s-sm) 0;
}

/* ============================================
   FORMULAIRES
   ============================================ */
.form-group { margin-bottom: var(--s-md); }
.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--s-xs);
    font-size: 0.9rem;
}
.form-control {
    width: 100%;
    padding: var(--s-sm);
    font-size: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    transition: border-color 0.2s var(--ease);
    font-family: var(--font-main);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

/* ============================================
   PANIER
   ============================================ */
.cart-item {
    display: flex;
    align-items: center;
    gap: var(--s-md);
    padding: var(--s-md);
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: var(--s-sm);
    box-shadow: var(--shadow-sm);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; margin-bottom: 2px; }
.cart-item-price { color: var(--gray); font-size: 0.9rem; }
.cart-item-total {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}
.cart-item-qty {
    width: 60px;
    text-align: center;
    padding: var(--s-xs);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
}
.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 1.2rem;
    padding: var(--s-xs);
}

.cart-summary {
    background: var(--dark);
    color: white;
    padding: var(--s-lg);
    border-radius: 16px;
    position: sticky;
    top: 90px;
}
.cart-summary h3 { color: white; margin-bottom: var(--s-md); }
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--s-md) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: var(--s-md);
}
.cart-total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

/* Type de commande */
.order-type {
    display: flex;
    gap: var(--s-xs);
    margin-bottom: var(--s-md);
}
.order-type-btn {
    flex: 1;
    padding: var(--s-sm);
    border: 2px solid rgba(255,255,255,0.2);
    background: transparent;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s var(--ease);
}
.order-type-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}
.order-type-btn:hover:not(.active) {
    border-color: rgba(255,255,255,0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: var(--s-2xl) 0 var(--s-lg);
}
.footer a { color: rgba(255,255,255,0.8); }
.footer a:hover { color: white; }
.footer h4 { color: white; margin-bottom: var(--s-md); }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--s-xl);
    margin-bottom: var(--s-xl);
}
.footer-bottom {
    text-align: center;
    padding-top: var(--s-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* ============================================
   UTILITAIRES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--s-sm); }
.mb-2 { margin-bottom: var(--s-md); }
.mb-3 { margin-bottom: var(--s-lg); }
.mt-2 { margin-top: var(--s-md); }
.mt-3 { margin-top: var(--s-lg); }

.row { display: flex; flex-wrap: wrap; margin: 0 calc(var(--s-md) * -0.5); }
.col { padding: 0 calc(var(--s-md) * 0.5); }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-8 { width: 66.666%; }

@media (max-width: 768px) {
    .col-6, .col-4, .col-8 { width: 100%; }
}

/* Animation fade in */
.fade-in {
    animation: fadeIn 0.5s var(--ease);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: var(--s-2xl);
}
.empty-state-icon {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: var(--s-md);
}

/* Alert */
.alert {
    padding: var(--s-md);
    border-radius: 10px;
    margin-bottom: var(--s-md);
}
.alert-success { background: #d4edda; color: #155724; }
.alert-danger { background: #f8d7da; color: #721c24; }
.alert-warning { background: #fff3cd; color: #856404; }

/* Main content padding for fixed nav */
main { padding-top: 70px; }

/* Hero avec image - override du padding pour hero plein écran */
main:has(.hero-image) { padding-top: 0; }

/* ============================================
   BANNIÈRE ALERTE COMMANDES DÉSACTIVÉES
   ============================================ */
.alert-commandes-desactivees {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: slideDown 0.3s ease-out;
}

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

.alert-commandes-desactivees .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.alert-commandes-desactivees i.bi-exclamation-triangle-fill {
    font-size: 1.2rem;
}

.alert-commandes-desactivees strong {
    font-weight: 600;
}

.alert-commandes-desactivees span {
    opacity: 0.9;
}

.alert-commandes-desactivees a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    transition: opacity 0.2s var(--ease);
}

.alert-commandes-desactivees a:hover {
    opacity: 0.8;
}

/* Ajuster le padding du main pour la bannière */
.alert-commandes-desactivees ~ main {
    padding-top: 110px;
}

.alert-commandes-desactivees ~ main:has(.hero-image) {
    padding-top: 40px;
}

@media (max-width: 768px) {
    .alert-commandes-desactivees {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .alert-commandes-desactivees .container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .alert-commandes-desactivees ~ main {
        padding-top: 140px;
    }
    
    .alert-commandes-desactivees ~ main:has(.hero-image) {
        padding-top: 70px;
    }
}

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}
.badge-primary { background: var(--primary); color: white; }
.badge-success { background: #28a745; color: white; }
.badge-warning { background: #ffc107; color: #333; }

/* Hero avec image de fond - optimisé (gradient rapide, pas d'image externe) */
.hero-image {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    /* Image de fond définie dynamiquement via style inline dans index.php */
    /* Fallback si aucune image n'est définie */
    background-image: url('../images/cafeconcept.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Fallback gradient si l'image ne charge pas */
    background-color: #D4A574;
}
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Overlay chaleureux pour améliorer la lisibilité du texte */
    background: linear-gradient(135deg, rgba(44, 36, 22, 0.4) 0%, rgba(74, 61, 42, 0.35) 50%, rgba(44, 36, 22, 0.45) 100%);
    pointer-events: none;
    z-index: 0;
}
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Overlay supplémentaire avec effets de lumière */
    background: 
        radial-gradient(circle at 20% 50%, rgba(208, 166, 90, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(198, 156, 109, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.hero-image .hero-content {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--s-xl) var(--s-md);
    position: relative;
    z-index: 2; /* Au-dessus des overlays */
}
.hero-image h1 { 
    color: white; 
    font-size: clamp(2.5rem, 6vw, 4rem); 
    margin-bottom: var(--s-md); 
    text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 0 30px rgba(0,0,0,0.3);
    font-weight: 700;
}
.hero-image p { 
    color: rgba(255,255,255,0.98); 
    font-size: clamp(1rem, 2vw, 1.2rem); 
    margin-bottom: var(--s-lg); 
    text-shadow: 0 1px 6px rgba(0,0,0,0.4), 0 0 15px rgba(0,0,0,0.2);
    font-weight: 400;
}
.hero-image .hero-stats { justify-content: center; border-top-color: rgba(255,255,255,0.3); }
.hero-image .hero-stat-value { color: var(--gold-light); text-shadow: 0 0 10px rgba(232, 201, 122, 0.5); }
.hero-image .hero-stat-label { color: rgba(255,255,255,0.95); }

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2; /* Au-dessus des overlays */
}
.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section catégories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--s-md);
}
.category-item {
    text-align: center;
    padding: var(--s-lg);
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    text-decoration: none;
    color: var(--dark);
}
.category-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--primary);
}
.category-item i {
    font-size: 2.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: var(--s-sm);
}

/* Témoignages */
.testimonial-card {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--s-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}
.testimonial-stars { color: #ffc107; margin-bottom: var(--s-sm); }
.testimonial-text { font-style: italic; margin-bottom: var(--s-md); }
.testimonial-author { font-weight: 600; }

/* Horaires */
.horaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--s-sm);
}
.horaire-item {
    display: flex;
    justify-content: space-between;
    padding: var(--s-sm);
    background: var(--gray-light);
    border-radius: 8px;
}
.horaire-item.today {
    background: var(--primary);
    color: white;
}

/* Services */
.service-card {
    display: flex;
    align-items: flex-start;
    gap: var(--s-md);
    padding: var(--s-lg);
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Lazy loading */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.lazy-load.loaded {
    opacity: 1;
}

/* Image placeholder */
.img-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

/* ============================================
   SECTION HORAIRES & LOCALISATION - UI/UX 2025
   Design moderne, épuré et minimaliste
   ============================================ */
.location-section {
    background: linear-gradient(135deg, #E8D5B7 0%, #F5EAD6 50%, #E8D5B7 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.location-section > .container {
    position: relative;
    z-index: 1;
}

.location-section .section-header {
    margin-bottom: 4rem;
}

.location-section .section-header h2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.location-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 400;
}

.location-row {
    margin-top: var(--s-2xl);
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.location-row > div {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 420px;
    margin-bottom: 0 !important;
}

@media (max-width: 1200px) {
    .location-row > div {
        flex: 0 1 calc(50% - 1.25rem);
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .location-row {
        gap: 2rem;
    }
    
    .location-row > div {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

/* Cartes de localisation - Design 2025 */
.location-card {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
    position: relative;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffc2e8, #c2185b);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.04);
    border-color: rgba(233, 30, 99, 0.2);
}

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

.location-card-header {
    background: rgba(20, 20, 20, 0.95);
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease;
}

.location-card:hover .location-card-header {
    background: rgba(30, 30, 30, 0.95);
}

.location-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffc2e8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.location-card:hover .location-icon-wrapper {
    transform: scale(1.05) rotate(5deg);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2) 0%, rgba(194, 24, 91, 0.2) 100%);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.location-card-header h3 {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.location-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Liste des horaires - Design moderne 2025 */
.modern-horaires-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modern-horaire-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(198, 156, 109, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(198, 156, 109, 0.1);
}

.modern-horaire-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ffc2e8;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.modern-horaire-item:hover {
    background: #f5f5f5;
    transform: translateX(4px);
    border-color: rgba(233, 30, 99, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.modern-horaire-item:hover::before {
    transform: scaleY(1);
}

.modern-horaire-item.active {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-color: rgba(233, 30, 99, 0.2);
    box-shadow: 0 2px 12px rgba(233, 30, 99, 0.1);
}

.modern-horaire-item.active::before {
    transform: scaleY(1);
    width: 4px;
}

.horaire-day {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.day-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.modern-horaire-item.active .day-name {
    color: #ffc2e8;
}

.today-badge {
    background: #ffc2e8;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.25);
    animation: pulse 2s ease-in-out infinite;
}

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

.horaire-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.modern-horaire-item.active .horaire-time {
    color: #c2185b;
    font-weight: 700;
}

/* Informations de contact - Design 2025 */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

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

.contact-info-item:hover {
    padding-left: 0.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc2e8;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #ffeef3 0%, #ffe0e8 100%);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.15);
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ffc2e8;
    transform: translateX(4px);
}

.contact-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Carte Google Maps - Design 2025 */
.map-card {
    padding: 0;
    overflow: hidden;
}

.map-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #f5f5f5;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.3s ease;
}

.location-card:hover .map-container iframe {
    filter: grayscale(0) contrast(1.2);
}

.map-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover .map-overlay {
    opacity: 1;
}

.map-overlay .btn {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.map-overlay .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #ffc2e8;
    color: white;
}

.btn-block {
    width: 100%;
    display: block;
    padding: 1rem;
    background: #ffc2e8;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-block:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

/* Responsive - Design 2025 */
@media (max-width: 992px) {
    .location-section {
        padding: 4rem 0;
    }
    
    .location-section .section-header {
        margin-bottom: 3rem;
    }
    
    .location-card {
        margin-bottom: 2rem;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 3rem 0;
    }
    
    .location-card-header {
        padding: 1.5rem;
    }
    
    .location-card-body {
        padding: 1.5rem;
    }
    
    .location-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .location-card-header h3 {
        font-size: 1.25rem;
    }
    
    .modern-horaire-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.875rem 1rem;
    }
    
    .horaire-time {
        width: 100%;
        text-align: left;
    }
    
    .contact-info-item {
        padding: 1rem 0;
    }
    
    .map-container {
        height: 250px;
    }
}

/* ============================================
   GESTION DU STOCK - VICTIME DE SON SUCCÈS
   ============================================ */
.product-card.out-of-stock {
    position: relative;
    opacity: 0.85;
}

.stock-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse-badge 2s infinite;
}

.stock-badge i {
    font-size: 1rem;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    }
}

.product-card.out-of-stock img {
    opacity: 0.5;
    filter: grayscale(0.7);
    transition: all 0.3s var(--ease);
}

.product-card.out-of-stock .btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* ============================================
   DESIGN MODERNE INDEX - COULEUR OR
   ============================================ */

/* Hero Moderne */
.hero-modern {
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-logo-wrapper {
    margin-bottom: var(--s-lg);
    animation: fadeInDown 0.8s var(--ease);
}

.hero-logo {
    filter: drop-shadow(0 4px 20px rgba(208, 166, 90, 0.3));
    transition: transform 0.3s var(--ease);
}

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

.hero-title-modern {
    margin-bottom: var(--s-md);
}

.concept-gold {
    color: #ffc2e8;
    text-shadow: 0 0 20px rgba(255, 194, 232, 0.5), 0 0 40px rgba(255, 194, 232, 0.3);
    font-family: 'Breathing', 'Playfair Display', serif;
    font-style: normal;
    font-weight: normal;
}

.hero-subtitle-modern {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--s-xl);
}

.hero-accent {
    color: var(--gold-light);
    font-weight: 500;
}

.hero-actions-modern {
    display: flex;
    gap: var(--s-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--s-xl);
}

/* Boutons avec or */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(208, 166, 90, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(208, 166, 90, 0.4);
}

.btn-outline-gold {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gold);
    color: white;
    backdrop-filter: blur(10px);
    margin-top: 50px;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(208, 166, 90, 0.4);
}

/* Stats Hero Moderne */
.hero-stats-modern {
    display: flex;
    gap: var(--s-lg);
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(208, 166, 90, 0.2);
    padding-top: var(--s-lg);
}

.hero-stat-modern {
    display: flex;
    align-items: center;
    gap: var(--s-sm);
    padding: var(--s-sm) var(--s-md);
    background: rgba(208, 166, 90, 0.1);
    border: 1px solid rgba(208, 166, 90, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-stat-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-indicator-modern {
    color: var(--gold);
    animation: bounce 2s infinite;
}

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

/* Section Header Moderne */
.section-header-modern {
    text-align: center;
    margin-bottom: var(--s-2xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s-xs);
    padding: var(--s-xs) var(--s-md);
    background: rgba(208, 166, 90, 0.1);
    border: 1px solid rgba(208, 166, 90, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--s-md);
}

.section-badge-gold {
    background: linear-gradient(135deg, rgba(208, 166, 90, 0.15) 0%, rgba(198, 156, 109, 0.1) 100%);
    border-color: var(--gold);
    box-shadow: 0 2px 10px rgba(208, 166, 90, 0.2);
}

.section-title-modern {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, 
        var(--gold-light) 0%, 
        var(--gold) 30%, 
        var(--gold-dark) 60%, 
        var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--gold);
    text-shadow: 0 0 50px rgba(208, 166, 90, 0.5);
    letter-spacing: -0.03em;
    font-weight: 800;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Catégories Moderne */
.section-categories {
    padding: var(--s-3xl) 0;
    background: linear-gradient(135deg, #E8D5B7 0%, #F5EAD6 50%, #E8D5B7 100%);
}

.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--s-lg);
}

.category-item-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-sm);
    padding: var(--s-lg);
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.category-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

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

.category-item-modern:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(208, 166, 90, 0.2);
}

.category-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(208, 166, 90, 0.1) 0%, rgba(198, 156, 109, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: var(--s-sm);
    transition: all 0.3s var(--ease);
}

.category-item-modern:hover .category-icon-wrapper {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.category-item-modern strong {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.category-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s var(--ease);
    color: var(--gold);
}

.category-item-modern:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Features Cards Moderne */
.card-modern-feature {
    padding: var(--s-xl);
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(208, 166, 90, 0.15);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

.card-modern-feature:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(208, 166, 90, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(208, 166, 90, 0.3);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(208, 166, 90, 0.1) 0%, rgba(198, 156, 109, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--s-md);
    font-size: 2.5rem;
    color: var(--gold);
    transition: all 0.3s var(--ease);
}

.card-modern-feature:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

/* Services Cards Moderne */
.section-services {
    padding: var(--s-3xl) 0;
    background: linear-gradient(135deg, #FAF7F2 0%, #F5EAD6 50%, #FAF7F2 100%);
}

.card-grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--s-lg);
}

.service-card-modern {
    display: flex;
    gap: var(--s-lg);
    padding: var(--s-xl);
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(208, 166, 90, 0.2);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(208, 166, 90, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(208, 166, 90, 0.3);
}

.service-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(208, 166, 90, 0.3);
}

.service-content h3 {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--gold);
    margin-bottom: var(--s-xs);
    font-weight: 700;
}

.service-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--s-sm);
    line-height: 1.7;
}

.service-link {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--s-xs);
    transition: all 0.3s var(--ease);
}

.service-link:hover {
    color: var(--gold-dark);
    gap: var(--s-sm);
}

/* Testimonials Moderne */
.section-testimonials {
    padding: var(--s-3xl) 0;
    background: linear-gradient(135deg, #F5EAD6 0%, #E8D5B7 50%, #F5EAD6 100%);
}

.card-grid-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--s-lg);
}

.testimonial-card-modern {
    padding: var(--s-xl);
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(208, 166, 90, 0.2);
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.testimonial-card-modern::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: var(--s-lg);
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-modern:hover::after {
    transform: scaleX(1);
}

.testimonial-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(208, 166, 90, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(208, 166, 90, 0.3);
}

.testimonial-stars-modern {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: var(--s-md);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: var(--s-md);
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: var(--s-xs);
    font-weight: 600;
    color: var(--dark);
}

.testimonial-author-modern i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* CTA Traiteur Moderne */
.section-cta-traiteur {
    padding: var(--s-3xl) 0;
    background: linear-gradient(135deg, #2c2416 0%, #3a2f1f 25%, #4a3d2a 50%, #3a2f1f 75%, #2c2416 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-cta-traiteur::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(208, 166, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-traiteur-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s-xs);
    padding: var(--s-xs) var(--s-md);
    background: rgba(208, 166, 90, 0.25);
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--s-md);
    box-shadow: 0 2px 8px rgba(208, 166, 90, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: var(--s-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--s-lg);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.7;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--s-lg);
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: var(--s-sm);
    padding: var(--s-xs) 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.cta-features li span {
    color: rgba(255, 255, 255, 0.95);
}

.cta-features li i {
    color: var(--gold);
    font-size: 1.2rem;
}

.cta-button {
    margin-top: var(--s-md);
}

.cta-traiteur-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-visual-icon {
    width: 200px;
    height: 200px;
    background: rgba(208, 166, 90, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gold);
}

/* CTA Final Moderne */
.section-cta-final {
    padding: var(--s-3xl) 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.9) 25%, rgba(208, 166, 90, 0.2) 50%, rgba(50, 50, 50, 0.85) 75%, rgba(0, 0, 0, 0.98) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(208, 166, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-final-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: var(--s-md);
}

.cta-final-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto var(--s-xl);
}

.cta-final-actions {
    display: flex;
    gap: var(--s-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-traiteur-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-visual-icon {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .hero-stats-modern {
        flex-direction: column;
        gap: var(--s-sm);
    }
    
    .categories-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* ============================================
   SECTIONS ENHANCED - Styles améliorés
   ============================================ */

/* Section Header Enhanced */
.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header-modern .section-badge {
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out;
}

.section-title-modern {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, 
        var(--gold-light) 0%, 
        var(--gold) 30%, 
        var(--gold-dark) 60%, 
        var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(208, 166, 90, 0.5);
    letter-spacing: -0.03em;
    font-weight: 800;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.section-subtitle-modern {
    font-size: 1.2rem;
    color: #4a3d2a;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out;
}

/* Cards Enhanced */
.card-modern-feature {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(198, 156, 109, 0.3);
    backdrop-filter: blur(10px);
}

.card-modern-feature h3 {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-modern-feature p {
    color: #2c2416;
    line-height: 1.8;
    font-size: 1rem;
}

/* Service Cards Enhanced */
.service-card-modern {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

/* Testimonial Cards Enhanced */
.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.testimonial-text {
    color: #2c2416;
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author-modern {
    color: #2c2416;
    font-weight: 600;
    margin-top: 1rem;
}

/* Category Cards Enhanced */
.category-item-modern {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(198, 156, 109, 0.3);
    backdrop-filter: blur(10px);
}

.category-item-modern:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(208, 166, 90, 0.5);
}

/* Product Cards Enhanced */
.product-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(198, 156, 109, 0.3);
    backdrop-filter: blur(10px);
}

.product-card h4 {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.product-card .price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.3rem;
}

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

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

