/**
 * Restaurant Vibes - Styles Gourmands Supplémentaires
 * Effets visuels pour donner envie de manger
 *
 * @package Yumso
 */

/* ====================================
   EFFETS DE VAPEUR ET CHALEUR
   ==================================== */

.product-hot::after {
    content: '🔥';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    animation: sizzle 2s ease-in-out infinite;
}

.product-fresh::after {
    content: '🌿';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

/* ====================================
   BADGES APPÉTISSANTS
   ==================================== */

.badge-chef-special {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--yumso-black);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    display: inline-block;
    position: relative;
}

.badge-chef-special::before {
    content: '👨‍🍳';
    margin-right: 0.5rem;
}

.badge-popular {
    background: var(--gradient-warm);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    animation: glow-pulse 2s ease-in-out infinite;
}

.badge-popular::before {
    content: '⭐';
    margin-right: 0.5rem;
}

/* ====================================
   EFFETS DE HOVER GOURMANDS
   ==================================== */

.product-card-delicious {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-delicious:hover {
    transform: translateY(-10px) scale(1.02);
    filter: brightness(1.05) saturate(1.2);
}

.product-card-delicious:hover img {
    animation: sizzle 0.5s ease-in-out;
}

/* ====================================
   TEXTURES ET PATTERNS
   ==================================== */

.texture-wood {
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(139, 69, 19, 0.05) 0px,
            rgba(139, 69, 19, 0.05) 1px,
            transparent 1px,
            transparent 2px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(139, 69, 19, 0.03) 0px,
            rgba(139, 69, 19, 0.03) 1px,
            transparent 1px,
            transparent 2px
        );
}

.texture-linen {
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(245, 230, 211, 0.5) 0px,
            rgba(245, 230, 211, 0.5) 1px,
            transparent 1px,
            transparent 3px
        );
}

/* ====================================
   ÉLÉMENTS DÉCORATIFS
   ==================================== */

.divider-food {
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.divider-food::before {
    content: '🍴 ✨ 🍷 ✨ 🍴';
    font-size: 1.5rem;
    background: var(--yumso-cream);
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.divider-food::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--yumso-gold) 25%,
        var(--yumso-gold) 75%,
        transparent 100%
    );
    z-index: 1;
}

/* ====================================
   BOUTONS AVEC ICÔNES GOURMANDES
   ==================================== */

.btn-order::before {
    content: '🍽️';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.btn-reserve::before {
    content: '📅';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.btn-menu::before {
    content: '📖';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.btn-delivery::before {
    content: '🚗';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* ====================================
   CARTES DE PLATS STYLISÉES
   ==================================== */

.dish-card {
    background: var(--yumso-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.dish-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-sunset);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.dish-card:hover::before {
    opacity: 0.1;
}

.dish-card:hover {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: 0 20px 60px rgba(255, 140, 66, 0.3);
}

/* ====================================
   PRIX STYLISÉS AVEC EFFET OR
   ==================================== */

.price-gold {
    background: linear-gradient(135deg, #F4E4B7 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.price-gold::after {
    content: '€';
    margin-left: 0.2rem;
}

/* ====================================
   ÉTIQUETTES DE CATÉGORIES
   ==================================== */

.category-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.25rem;
    transition: var(--transition-smooth);
}

.category-tag.meat {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: white;
}

.category-tag.fish {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    color: white;
}

.category-tag.vegan {
    background: linear-gradient(135deg, #A8E063, #27AE60);
    color: white;
}

.category-tag.dessert {
    background: linear-gradient(135deg, #FF8C42, #FFA76C);
    color: white;
}

.category-tag:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ====================================
   SECTION HERO APPÉTISSANTE
   ==================================== */

.hero-appetizing {
    background: 
        linear-gradient(135deg, rgba(45, 36, 22, 0.9), rgba(139, 69, 19, 0.85)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" opacity="0.1">🍽️</text></svg>');
    background-size: cover, 100px 100px;
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 2rem 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* ====================================
   ANIMATIONS DE CHARGEMENT GOURMANDES
   ==================================== */

.loading-delicious {
    display: inline-block;
    font-size: 2rem;
    animation: rotate-food 2s linear infinite;
}

@keyframes rotate-food {
    0% {
        content: '🍕';
        transform: rotate(0deg);
    }
    25% {
        content: '🍔';
        transform: rotate(90deg);
    }
    50% {
        content: '🍜';
        transform: rotate(180deg);
    }
    75% {
        content: '🍰';
        transform: rotate(270deg);
    }
    100% {
        content: '🍕';
        transform: rotate(360deg);
    }
}

/* ====================================
   RESPONSIVE GOURMAND
   ==================================== */

@media (max-width: 768px) {
    .dish-card:hover {
        transform: translateY(-10px) rotate(-1deg);
    }
    
    .divider-food::before {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .price-gold {
        font-size: 1.5rem;
    }
}

