/* Version: v0.29 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
}

header {
    background-color: #ff4757;
    color: white;
    text-align: center;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.restaurant-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.restaurant-header {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.restaurant-logo {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ff4757;
}

.restaurant-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.restaurant-header p {
    opacity: 0.9;
}

/* ==================== MENU GRID CORRIGÉ ==================== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
}

/* ==================== CARTES PLATS UNIFORMES ==================== */
.plat-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.plat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* VERSION 1: Flashy / Red Glow */
.featured-product-v1 {
    border: 2px solid #ff4757;
    position: relative;
    overflow: visible;
    animation: neonGlow 3s infinite alternate;
}

.product-badge-v1 {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #ff9f43, #ff4757);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255,71,87,0.4);
    border: 2px solid white;
    letter-spacing: 1px;
}

/* VERSION 2: Luxury / Gold Edition */
.featured-product-v2 {
    border: 2px solid #d4af37; /* Couleur Or */
    position: relative;
    overflow: visible;
    background: linear-gradient(to bottom, #ffffff, #fffdf0);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.product-badge-v2 {
    position: absolute;
    top: -15px;
    left: 25px;
    right: auto;
    transform: none;
    width: auto;
    max-width: 95%;
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: #4d3a00;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 900;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: 1px solid #d4af37;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    box-sizing: border-box;
}

.animated-badge {
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(1); box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3); }
}

.hot-sales {
    color: #636e72; /* Gris plus mystérieux */
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 2px;
    font-style: italic;
}

@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.featured-product-v2 .plat-image {
    background-size: cover;
    background-position: center;
    height: 400px;
    border-bottom: 4px solid #d4af37;
    position: relative;
}

.featured-product-v2 .plat-image::before {
    content: "PREMIUM";
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #f1c40f;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 3px;
    letter-spacing: 2px;
}

@keyframes neonGlow {
    from { box-shadow: 0 0 5px rgba(255, 71, 87, 0.2), 0 0 10px rgba(255, 71, 87, 0.1); }
    to { box-shadow: 0 0 15px rgba(255, 71, 87, 0.6), 0 0 25px rgba(255, 71, 87, 0.3); }
}

/* On garde l'effet de brillance pour les deux */
.featured-product-v1 .plat-image, .featured-product-v2 .plat-image {
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    overflow: hidden;
}.premium-cart-item {
    border-left: 4px solid #d4af37 !important;
    background-color: #fffdf0 !important;
}

.featured-product-v1 .plat-image::after, .featured-product-v2 .plat-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.plat-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.plat-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plat-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
    font-weight: 600;
}

.plat-description {
    color: #636e72;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    flex: 1;
}

.plat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.8rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.prix {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff4757;
}

.btn-group {
    display: flex;
    gap: 0.5rem;
}

.btn-whatsapp-direct, .btn-add-to-cart {
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-whatsapp-direct {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp-direct:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

.btn-add-to-cart {
    background-color: #ff4757;
    color: white;
}

.btn-add-to-cart:hover {
    background-color: #ff6b6b;
    transform: scale(1.05);
}

/* ==================== CATÉGORIES SCROLLABLES CORRIGÉES ==================== */
.categories-section {
    background: white;
    padding: 1rem;
    margin: 0.5rem 1rem 1rem 1rem;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.categories-header h3 {
    font-size: 1.2rem;
    color: #2d3436;
    font-weight: 600;
}

.see-all {
    color: #ff4757;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.categories-scroll {
    display: flex;
    overflow-x: auto;
    gap: 0.8rem;
    padding: 0.5rem 0.2rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.categories-scroll::-webkit-scrollbar {
    height: 4px;
}

.categories-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.categories-scroll::-webkit-scrollbar-thumb {
    background: #ff4757;
    border-radius: 10px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 12px;
    text-align: center;
}

.category-item:hover {
    transform: translateY(-2px);
    background-color: #f8f9fa;
}

.category-item.active {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    box-shadow: 0 4px 12px rgba(255,71,87,0.3);
}

.category-item.active .category-icon {
    background: white;
    color: #ff4757;
}

.category-item.active span {
    color: white;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    transition: all 0.2s ease;
}

.category-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #2d3436;
}

/* ==================== RECHERCHE ==================== */
/* ==================== RECHERCHE PROFESSIONNELLE ==================== */
.search-container {
    max-width: 600px;
    margin: 1.5rem auto 0;
    padding: 0;
    position: relative;
    z-index: 100;
}

.search-box {
    background: white;
    border-radius: 12px; /* Un peu moins arrondi pour un look plus pro/moderne */
    display: flex;
    align-items: center;
    padding: 0.2rem 1.2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.search-box:focus-within {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    border-color: #ffb8b8;
}

/* ==================== ANIMATIONS PREMIUM ==================== */
.highlight-item {
    position: relative;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: premiumFocus 2.5s ease-out forwards;
}

@keyframes premiumFocus {
    0% { 
        transform: scale(1); 
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    15% { 
        transform: scale(1.05); 
        box-shadow: 0 20px 40px rgba(255, 71, 87, 0.3), 0 0 0 1000px rgba(0,0,0,0.1); 
    }
    40% { 
        transform: scale(1.05); 
        box-shadow: 0 20px 40px rgba(255, 71, 87, 0.3), 0 0 0 1000px rgba(0,0,0,0.1); 
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
    }
}

/* Effet de bordure brillante pour la mise en évidence */
.highlight-item::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, #ff4757, #ff9f43, #f1c40f, #ff4757);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 18px;
    animation: borderGlow 2s linear infinite;
    opacity: 0;
}

.highlight-item.active-glow::before {
    opacity: 1;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.search-icon {
    color: #ff4757;
    font-size: 1.2rem;
    margin-right: 1rem;
}

#searchInput {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.8rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #2d3436;
    background: transparent;
}

.clear-search {
    background: none;
    border: none;
    color: #b2bec3;
    cursor: pointer;
    padding: 0.5rem;
    display: none;
    transition: color 0.2s;
}

.clear-search:hover {
    color: #ff4757;
}

.suggestions-list {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    z-index: 2000; /* Toujours au dessus */
    max-height: 450px;
    overflow-y: auto;
    display: none;
    border: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.suggestions-list.show {
    display: block;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.2s;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #fff5f6;
    padding-left: 2rem; /* Déplacement plus marqué au survol */
    border-left: 4px solid #ff4757;
}

.suggestion-icon {
    width: 45px;
    height: 45px;
    background: #fdf2f3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.1);
}

.suggestion-content {
    flex: 1;
}

.suggestion-title {
    font-weight: 700;
    color: #2d3436;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.suggestion-subtitle {
    font-size: 0.8rem;
    color: #636e72;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suggestion-price {
    background: #ff4757;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: 15px;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.2);
}

.suggestion-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestion-badge.resto {
    background: #ff7675;
    color: white;
}

.suggestion-badge.plat {
    background: #74b9ff;
    color: white;
}

.no-result {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.no-result i {
    font-size: 3rem;
    color: #dfe6e9;
    margin-bottom: 1rem;
    display: block;
}

.no-result p {
    color: #636e72;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ==================== STATUT OUVERTURE ==================== */
.restaurant-status {
    margin-left: auto;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.2);
}

.closed-message {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 1rem;
    margin: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

/* ==================== SECTION SPÉCIALE ==================== */
.special-section {
    margin: 2rem 1.5rem 3rem;
    padding: 1.5rem;
    background-color: transparent;
}

.special-header {
    margin-bottom: 1.5rem;
}

.special-header h2 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.special-subtitle {
    color: #636e72;
    font-size: 1rem;
}

.supplements-info {
    margin: 0 0 1.5rem 0;
    padding: 0;
    text-align: left;
}

.supplements-text {
    background: transparent;
    color: #ffa502;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    border-left: 3px solid #ffa502;
    padding-left: 0.8rem;
    margin: 0;
}

/* ==================== MODALES UNIFIÉES ==================== */
.escalope-options-grid,
.makloub-options-grid,
.pizza-options-grid,
.pasta-options-grid,
.ojja-options-grid,
.anchilada-options-grid,
.pizza-options-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.escalope-option-btn,
.makloub-option-btn,
.pizza-option-btn,
.pasta-option-btn,
.ojja-option-btn,
.anchilada-option-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #2d3436;
}

.escalope-option-btn:hover,
.makloub-option-btn:hover,
.pizza-option-btn:hover,
.pasta-option-btn:hover,
.ojja-option-btn:hover,
.anchilada-option-btn:hover {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    border-color: #ff4757;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
    color: white;
}

.escalope-option-name,
.makloub-option-name,
.pizza-option-name,
.pasta-option-name,
.ojja-option-name,
.anchilada-option-name {
    font-weight: 800;
    font-size: 1.05rem;
    color: #ff4757;
}

.escalope-option-btn:hover .escalope-option-name,
.makloub-option-btn:hover .makloub-option-name,
.pizza-option-btn:hover .pizza-option-name,
.pasta-option-btn:hover .pasta-option-name,
.ojja-option-btn:hover .ojja-option-name,
.anchilada-option-btn:hover .anchilada-option-name { color: white; }

.escalope-option-price,
.makloub-option-price,
.pizza-option-price,
.pasta-option-price,
.ojja-option-price,
.anchilada-option-price {
    font-weight: 800;
    color: #2d3436;
    font-size: 1.15rem;
    white-space: nowrap;
}

.escalope-option-btn:hover .escalope-option-price,
.makloub-option-btn:hover .makloub-option-price,
.pizza-option-btn:hover .pizza-option-price,
.pasta-option-btn:hover .pasta-option-price,
.ojja-option-btn:hover .ojja-option-price,
.anchilada-option-btn:hover .anchilada-option-price { color: white; }


.makloub-option-ingredients,
.pizza-option-desc,
.pasta-option-description,
.ojja-option-description {
    font-size: 0.75rem;
    color: #636e72;
    line-height: 1.3;
}

.escalope-option-btn:hover .makloub-option-ingredients,
.makloub-option-btn:hover .makloub-option-ingredients,
.pizza-option-btn:hover .pizza-option-desc,
.pasta-option-btn:hover .pasta-option-description,
.ojja-option-btn:hover .ojja-option-description { color: rgba(255,255,255,0.85); }


.makloub-option-header,
.pizza-option-header,
.pasta-option-header,
.ojja-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

.choice-modal .modal-content {
    max-width: 500px;
}

/* ==================== MODAL PRINCIPALE ==================== */
.choice-modal {
    display: none;
    position: fixed;
    z-index: 8000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: none;
    color: #2d3436;
}

.modal-header {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 1.2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-modal {
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 1.5rem;
    text-align: center;
}

.choice-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.choice-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
}

.choice-btn:hover {
    border-color: #ff4757;
    transform: translateY(-2px);
}

.choice-icon {
    font-size: 2rem;
}

/* ==================== HIGHLIGHT OFFRE ==================== */
.highlight-offer {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 0.3rem;
    box-shadow: 0 2px 8px rgba(255,71,87,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 2px 8px rgba(255,71,87,0.3); }
    50% { transform: scale(1.02); box-shadow: 0 4px 15px rgba(255,71,87,0.5); }
    100% { transform: scale(1); box-shadow: 0 2px 8px rgba(255,71,87,0.3); }
}

.highlight-offer::before {
    content: "🎁 ";
    font-size: 0.8rem;
}

/* ==================== PANIER ==================== */
.cart-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255,71,87,0.4);
    z-index: 1000;
    transition: transform 0.2s;
}

.cart-floating i {
    color: white;
    font-size: 1.8rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: #ff4757;
    font-size: 0.9rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff4757;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 8500;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-panel.show {
    right: 0;
}

.cart-header {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    color: white;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-limit {
    font-size: 0.8rem;
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    margin-left: 0.5rem;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    color: #adb5bd;
    padding: 2rem;
    font-style: italic;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border-bottom: 1px solid #f1f1f1;
    gap: 0.8rem;
}

.cart-item-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #f8f9fa;
}

.cart-item-img.emoji-img {
    background: #f8f9fa !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.2rem;
}

.cart-item-resto {
    font-size: 0.75rem;
    color: #6c757d;
}

.cart-item-price {
    font-weight: bold;
    color: #ff4757;
    font-size: 0.95rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #f8f9fa;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-btn:hover {
    background: #ff4757;
    color: white;
}

.cart-item-remove {
    color: #dc3545;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}

.cart-footer {
    padding: 1.2rem;
    border-top: 2px solid #f1f1f1;
    background: white;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.total-price {
    color: #ff4757;
    font-size: 1.2rem;
}

.btn-whatsapp-checkout {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-whatsapp-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-add-frites {
    background: linear-gradient(135deg, #FFB347, #FF8C00);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-add-frites:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #FFA500, #FF7B00);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* ==================== MODAL LIMITE ==================== */
.limit-modal {
    display: none;
    position: fixed;
    z-index: 2001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.limit-modal-content {
    background: white;
    margin: 20% auto;
    width: 90%;
    max-width: 350px;
    border-radius: 20px;
    overflow: hidden;
}

.limit-modal-header {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    color: white;
    padding: 1.2rem;
    text-align: center;
}

.limit-modal-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.limit-modal-body {
    padding: 1.5rem;
    text-align: center;
}

.limit-modal-footer {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #f1f1f1;
}

.limit-modal-btn {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
}

/* ==================== CONTACT DIRECT ==================== */
.contact-direct {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 15px;
    color: white;
}

.contact-direct h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-direct p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-whatsapp-large {
    background-color: white;
    color: #25D366;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-whatsapp-large:hover {
    transform: scale(1.05);
    background-color: #f8f9fa;
}

/* ==================== FOOTER ==================== */
footer {
    background-color: #2d3436;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .restaurant-header {
        padding: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .restaurant-logo {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .restaurant-header h2 {
        font-size: 1.3rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .plat-image {
        height: 160px;
    }
    
    .special-section {
        margin: 1rem;
        padding: 1rem;
    }
    
    .special-header h2 {
        font-size: 1.5rem;
    }
    
    .categories-section {
        margin: 0.5rem;
        padding: 0.8rem;
    }
    
    .category-item {
        min-width: 65px;
    }
    
    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    
    .category-item span {
        font-size: 0.7rem;
    }
    
    .cart-panel {
        width: 100%;
        right: -100%;
    }
    
    .plat-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-group {
        justify-content: stretch;
    }
    
    .btn-whatsapp-direct, .btn-add-to-cart {
        text-align: center;
        justify-content: center;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .category-item {
        min-width: 55px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .category-item span {
        font-size: 0.65rem;
    }
    
    .plat-info h3 {
        font-size: 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .choice-buttons {
        flex-direction: column;
    }
    
    .choice-btn {
        flex-direction: row;
        justify-content: center;
    }
    
    .contact-direct h3 {
        font-size: 1.3rem;
    }
    
    .btn-whatsapp-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .baguette-size-grid,
    .baguette-viande-grid,
    .poulet-size-grid,
    .poulet-accompagnement-grid {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .baguette-size-btn,
    .baguette-viande-btn,
    .poulet-size-btn,
    .poulet-accompagnement-btn {
        width: 100%;
        min-width: unset;
    }
}

/* ==================== MODAL RESTAURANT FERMÉ ==================== */
.restaurant-closed-modal {
    position: fixed;
    z-index: 2002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.restaurant-closed-content {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.restaurant-closed-header {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    color: white;
    padding: 1.2rem;
    text-align: center;
}

.restaurant-closed-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.restaurant-closed-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.restaurant-closed-body {
    padding: 1.5rem;
    text-align: left;
}

.restaurant-closed-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.restaurant-closed-body li {
    margin: 0.5rem 0;
    color: #ff4757;
}

.restaurant-closed-footer {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #f1f1f1;
}

.restaurant-closed-btn {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.2s;
}

.restaurant-closed-btn:hover {
    transform: scale(1.05);
}

/* ==================== MODAL BAGUETTE FARCIE ==================== */
#baguetteModal .modal-content,
#pouletModal .modal-content,
#pastaModal .modal-content,
#ojjaModal .modal-content,
#anchiladaModal .modal-content {
    max-width: 500px;
    margin: 10% auto;
    max-height: 85vh;
    overflow-y: auto;
}

#baguetteModal .modal-body,
#pouletModal .modal-body,
#pastaModal .modal-body,
#ojjaModal .modal-body,
#anchiladaModal .modal-body {
    padding: 1rem;
}

.baguette-options-grid,
.poulet-options-grid,
.pasta-options-grid,
.ojja-options-grid,
.anchilada-options-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.baguette-step-title,
.poulet-step-title {
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #2d3436;
    font-size: 0.95rem;
}

.baguette-size-grid,
.baguette-viande-grid,
.poulet-size-grid,
.poulet-accompagnement-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.baguette-size-btn,
.baguette-viande-btn,
.poulet-size-btn,
.poulet-accompagnement-btn {
    flex: 1;
    min-width: 85px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.7rem 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.baguette-size-btn:hover,
.baguette-viande-btn:hover,
.poulet-size-btn:hover,
.poulet-accompagnement-btn:hover {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    border-color: #ff4757;
    transform: translateY(-2px);
    color: white;
}

.baguette-size-btn.selected,
.baguette-viande-btn.selected,
.poulet-size-btn.selected,
.poulet-accompagnement-btn.selected {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    border-color: #ff4757;
    color: white;
    box-shadow: 0 4px 12px rgba(255,71,87,0.3);
}

.baguette-size-name,
.baguette-viande-name,
.poulet-size-name,
.poulet-accompagnement-name {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.baguette-size-price,
.poulet-accompagnement-price {
    font-weight: 700;
    color: #ff4757;
    font-size: 0.85rem;
}

.baguette-confirm-btn,
.poulet-confirm-btn {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
    transition: transform 0.2s;
}

.baguette-confirm-btn:hover,
.poulet-confirm-btn:hover {
    transform: scale(1.02);
}

/* Tacos Modal Styles */
.tacos-options-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tacos-option-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tacos-option-btn:hover {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    border-color: #ff4757;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,71,87,0.2);
    color: white;
}

.tacos-option-name {
    font-weight: 700;
    font-size: 1rem;
    color: #2d3436;
}

.tacos-option-price {
    font-weight: 700;
    color: #ff4757;
    font-size: 1.1rem;
    white-space: nowrap;
}

.tacos-option-btn:hover .tacos-option-name,
.tacos-option-btn:hover .tacos-option-price {
    color: white;
}

#tacosAlOstedhModal .modal-content {
    max-width: 500px;
    margin: 10% auto;
    max-height: 85vh;
    overflow-y: auto;
}

#tacosAlOstedhModal .modal-body {
    padding: 1rem;
}

/* ==================== MODAL POULET (DIDI) ==================== */
#pouletDidiModal .modal-content {
    max-width: 500px;
    margin: 10% auto;
    max-height: 85vh;
    overflow-y: auto;
}

#pouletDidiModal .modal-body {
    padding: 1rem;
}

.poulet-didi-options-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.poulet-didi-step-title {
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #2d3436;
    font-size: 0.95rem;
}

.poulet-didi-size-grid,
.poulet-didi-accompagnement-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.poulet-didi-size-btn,
.poulet-didi-accompagnement-btn {
    flex: 1;
    min-width: 100px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.8rem 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.poulet-didi-size-btn:hover,
.poulet-didi-accompagnement-btn:hover {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    border-color: #ff4757;
    transform: translateY(-2px);
    color: white;
}

.poulet-didi-size-btn.selected,
.poulet-didi-accompagnement-btn.selected {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    border-color: #ff4757;
    color: white;
    box-shadow: 0 4px 12px rgba(255,71,87,0.3);
}

.poulet-didi-size-name,
.poulet-didi-accompagnement-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.poulet-didi-accompagnement-price {
    font-weight: 700;
    color: #ff4757;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.poulet-didi-confirm-btn {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
    transition: transform 0.2s;
}

.poulet-didi-confirm-btn:hover {
    transform: scale(1.02);
}

@media (max-width: 480px) {
    #pouletDidiModal .modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .poulet-didi-size-grid,
    .poulet-didi-accompagnement-grid {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .poulet-didi-size-btn,
    .poulet-didi-accompagnement-btn {
        width: 100%;
        min-width: unset;
    }
}

/* ==================== MODAL SANDWICHS (DIDI) ==================== */
.sandwich-didi-options-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sandwich-didi-option-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    gap: 1rem;
}

.sandwich-didi-option-btn:hover {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    border-color: #ff4757;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,71,87,0.2);
    color: white;
}

.sandwich-didi-option-name {
    font-weight: 700;
    font-size: 1rem;
    color: #2d3436;
    margin-bottom: 0.2rem;
}

.sandwich-didi-option-description {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.3;
}

.sandwich-didi-option-price {
    font-weight: 700;
    color: #ff4757;
    font-size: 1.1rem;
    white-space: nowrap;
}

.sandwich-didi-option-btn:hover .sandwich-didi-option-name,
.sandwich-didi-option-btn:hover .sandwich-didi-option-description,
.sandwich-didi-option-btn:hover .sandwich-didi-option-price {
    color: white;
}

#sandwichDidiModal .modal-content {
    max-width: 500px;
    margin: 10% auto;
    max-height: 85vh;
    overflow-y: auto;
}

#sandwichDidiModal .modal-body {
    padding: 1rem;
}

@media (max-width: 480px) {
    #sandwichDidiModal .modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .sandwich-didi-option-btn {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== MODAL MAKLOUB (LA CASA DE MAMA) ==================== */
.makloub-lacasa-options-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.makloub-lacasa-option-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    gap: 1rem;
}

.makloub-lacasa-option-btn:hover {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    border-color: #ff4757;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,71,87,0.2);
    color: white;
}

.makloub-lacasa-option-name {
    font-weight: 700;
    font-size: 1rem;
    color: #2d3436;
    margin-bottom: 0.2rem;
}

.makloub-lacasa-option-description {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.3;
}

.makloub-lacasa-option-price {
    font-weight: 700;
    color: #ff4757;
    font-size: 1.1rem;
    white-space: nowrap;
}

.makloub-lacasa-option-btn:hover .makloub-lacasa-option-name,
.makloub-lacasa-option-btn:hover .makloub-lacasa-option-description,
.makloub-lacasa-option-btn:hover .makloub-lacasa-option-price {
    color: white;
}

#makloubLaCasaModal .modal-content {
    max-width: 500px;
    margin: 10% auto;
    max-height: 85vh;
    overflow-y: auto;
}

#makloubLaCasaModal .modal-body {
    padding: 1rem;
}

@media (max-width: 480px) {
    #makloubLaCasaModal .modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .makloub-lacasa-option-btn {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== MODAL PASTA (LA CASA DE MAMA) ==================== */
.pasta-lacasa-options-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pasta-lacasa-option-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    gap: 1rem;
}

.pasta-lacasa-option-btn:hover {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    border-color: #ff4757;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,71,87,0.2);
    color: white;
}

.pasta-lacasa-option-name {
    font-weight: 700;
    font-size: 1rem;
    color: #2d3436;
    margin-bottom: 0.2rem;
}

.pasta-lacasa-option-description {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.3;
}

.pasta-lacasa-option-price {
    font-weight: 700;
    color: #ff4757;
    font-size: 1.1rem;
    white-space: nowrap;
}

.pasta-lacasa-option-btn:hover .pasta-lacasa-option-name,
.pasta-lacasa-option-btn:hover .pasta-lacasa-option-description,
.pasta-lacasa-option-btn:hover .pasta-lacasa-option-price {
    color: white;
}

#pastaLaCasaModal .modal-content {
    max-width: 500px;
    margin: 10% auto;
    max-height: 85vh;
    overflow-y: auto;
}

#pastaLaCasaModal .modal-body {
    padding: 1rem;
}

@media (max-width: 480px) {
    #pastaLaCasaModal .modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .pasta-lacasa-option-btn {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== MODAL PAIN CORNÉ (LA CASA DE MAMA) ==================== */
.paincorne-options-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.paincorne-step-title {
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #2d3436;
    font-size: 0.95rem;
}

.paincorne-size-grid,
.paincorne-viande-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.paincorne-size-btn,
.paincorne-viande-btn {
    flex: 1;
    min-width: 85px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.7rem 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.paincorne-size-btn:hover,
.paincorne-viande-btn:hover {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    border-color: #ff4757;
    transform: translateY(-2px);
    color: white;
}

.paincorne-size-btn.selected,
.paincorne-viande-btn.selected {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    border-color: #ff4757;
    color: white;
    box-shadow: 0 4px 12px rgba(255,71,87,0.3);
}

.paincorne-size-name,
.paincorne-viande-name {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.paincorne-size-price {
    font-weight: 700;
    color: #ff4757;
    font-size: 0.85rem;
}

.paincorne-confirm-btn {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
    transition: transform 0.2s;
}

.paincorne-confirm-btn:hover {
    transform: scale(1.02);
}

@media (max-width: 480px) {
    .paincorne-size-grid,
    .paincorne-viande-grid {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .paincorne-size-btn,
    .paincorne-viande-btn {
        width: 100%;
        min-width: unset;
    }
}
/* Notification de résultat de recherche */
.search-result-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    font-weight: 500;
    font-size: 14px;
    pointer-events: none;
    white-space: nowrap;
}

.search-result-toast.error {
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
}

.search-result-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
    .search-result-toast {
        white-space: normal;
        text-align: center;
        max-width: 90%;
        font-size: 12px;
    }
}

/* ==================== PREMIUM RECOMMENDATIONS STYLES ==================== */
:root {
    --premium-gold: #d4af37;
    --premium-dark: #1a1a1a;
    --premium-white: #ffffff;
    --premium-shadow: rgba(212, 175, 55, 0.3);
}

.premium-trigger-container {
    margin-top: 1.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.btn-premium-show {
    background: linear-gradient(135deg, var(--premium-dark), #333);
    color: var(--premium-gold);
    border: 1px solid var(--premium-gold);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.btn-premium-show:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, #333, #444);
}

.premium-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 410px;
    height: 110%;
    border-radius: 50px;
    border: 2px solid var(--premium-gold);
    animation: premiumPulse 2s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes premiumPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
}

/* PREMIUM MODAL */
.premium-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.premium-modal.show {
    display: flex;
}

.premium-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}

.premium-modal-content {
    position: relative;
    background: var(--premium-dark);
    width: 100%;
    max-width: 800px;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem;
    color: white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px var(--premium-shadow);
    animation: premiumModalEntry 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes premiumModalEntry {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.premium-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.premium-close:hover {
    color: var(--premium-gold);
}

.premium-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.premium-badge {
    background: var(--premium-gold);
    color: var(--premium-dark);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.premium-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--premium-gold);
}

.premium-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.premium-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.premium-card {
    background: #222;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: var(--premium-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.premium-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.premium-card-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
}

.premium-card-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.premium-card-info h3 {
    font-size: 1.4rem;
    color: var(--premium-gold);
    margin-bottom: 0.8rem;
}

.premium-card-info p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
}

.premium-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.premium-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-premium-buy {
    background: var(--premium-gold);
    color: var(--premium-dark);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-premium-buy:hover {
    background: #e5c150;
    transform: scale(1.05);
}

.btn-premium-cart {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-premium-cart:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--premium-gold);
    border-color: var(--premium-gold);
}

.highlight-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    position: relative;
}

.highlight-glow::after {
    content: "CONSEILLÉ 🔥";
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(255,71,87,0.3);
}

.premium-footer {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.premium-footer p {
    color: var(--premium-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .premium-modal-content {
        padding: 1.5rem;
    }
    .premium-header h2 {
        font-size: 1.6rem;
    }
    .premium-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== HIGH-END PREMIUM ANIMATIONS ==================== */
.premium-card {
    position: relative;
    overflow: hidden;
}

/* Effet de brillance qui traverse la carte régulièrement */
.premium-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    animation: premiumShine 4s infinite;
    pointer-events: none;
}

@keyframes premiumShine {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

/* Staggered entrance for cards */
.premium-modal.show .premium-card {
    opacity: 0;
}

.premium-modal.show .premium-card:nth-child(1) {
    animation: slideInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.premium-modal.show .premium-card:nth-child(2) {
    animation: slideInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Pulse intense sur les prix pour attirer l'oeil */
.premium-price {
    animation: pricePop 2s infinite alternate;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

@keyframes pricePop {
    from { transform: scale(1); text-shadow: 0 0 5px rgba(255,255,255,0.1); }
    to { transform: scale(1.1); text-shadow: 0 0 15px var(--premium-gold); }
}

/* Glow tournant autour de la sélection du chef */
.premium-header h2 {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.premium-header h2::before, .premium-header h2::after {
    content: " ✨ ";
    animation: sparkleTilt 1.5s infinite alternate ease-in-out;
}

@keyframes sparkleTilt {
    from { transform: rotate(-10deg) scale(1); }
    to { transform: rotate(10deg) scale(1.3); }
}

/* Animation VIP Button */
.btn-premium-show {
    animation: attentionPulse 3s infinite;
}

@keyframes attentionPulse {
    0% { transform: scale(1); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
    5% { transform: scale(1.05); }
    10% { transform: scale(1); }
    15% { transform: scale(1.05); }
    20% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* Floating social proof badge style */
.premium-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid #ff4757;
    color: #ff4757;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 15px;
    animation: flashSocial 2s infinite;
}


/* ==================== STARS HERO SECTION STYLES ==================== */
.stars-hero-container {
    margin-top: 1rem;
    width: 100%;
    overflow: hidden;
}

.stars-scroll-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar IE/Edge */
}

.stars-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.star-card {
    min-width: 280px;
    background: linear-gradient(135deg, #1a1a1a, #2d3436);
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.star-card:hover {
    transform: translateY(-3px);
    border-color: #d4af37;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.star-card-image {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.star-card-content {
    padding-left: 12px;
    flex: 1;
    text-align: left;
}

.star-tag {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #d4af37;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.star-card-content h3 {
    font-size: 1rem;
    color: white;
    margin-bottom: 4px;
}

.star-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.star-price {
    font-weight: 800;
    color: #ffffff;
    font-size: 0.9rem;
}

.star-btn {
    background: #d4af37;
    color: #1a1a1a;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 50px;
}


/* ==================== DUO SPLIT BANNER STYLES ==================== */
.premium-section-title {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    animation: fadeIn 1s ease;
}

.premium-section-title h2 {
    font-size: 1rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
}

.premium-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    margin: 8px auto;
}

.duo-hero-wrapper {
    margin-top: 0.5rem;
    padding: 0 1rem;
    width: 100%;
    animation: slideInUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes goldPulse {
    0% { box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 0 0 rgba(212, 175, 55, 0); }
    50% { box-shadow: 0 15px 45px rgba(0,0,0,0.5), 0 0 20px 5px rgba(212, 175, 55, 0.4); }
    100% { box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 0 0 rgba(212, 175, 55, 0); }
}

.duo-banner {
    background: #000;
    height: 180px;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    position: relative;
    border: 2px solid #d4af37;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    animation: goldPulse 3000ms infinite;
}

.duo-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    animation: shine 5s infinite;
    pointer-events: none;
    z-index: 5;
}

.duo-side {
    position: relative;
    width: 50%;
    height: 100%;
    cursor: pointer;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.duo-side:hover {
    width: 60%;
}

.duo-side:hover ~ .duo-side, .duo-side:hover + .duo-side {
    width: 40%;
}

.duo-full {
    width: 100% !important;
}


.duo-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    opacity: 0.6;
}

.duo-side:hover .duo-image {
    transform: scale(1.1);
    opacity: 1;
}

.duo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 1rem;
    z-index: 2;
    background: rgba(0,0,0,0.2);
}

.duo-badge {
    font-size: 0.6rem;
    font-weight: 900;
    background: #d4af37;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.duo-overlay h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.duo-detail-btn {
    font-size: 0.8rem;
    opacity: 0.9;
}

.duo-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d4af37;
}

.duo-divider {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 2px;
    background: #d4af37;
    z-index: 10;
    transform: translateX(-50%) skewX(-15deg);
}

.duo-vs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skewX(15deg);
    background: #d4af37;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.7rem;
    box-shadow: 0 0 15px #d4af37;
}

@media (max-width: 600px) {
    .duo-banner {
        height: 140px;
    }
    .duo-overlay h3 {
        font-size: 1rem;
    }
    .duo-price {
        font-size: 0.9rem;
    }}

/* ==================== IMMERSIVE DETAIL VIEW STYLES ==================== */
.immersive-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.immersive-modal.show {
    display: flex;
}

.immersive-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(15px);
}

.immersive-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: linear-gradient(135deg, #111, #222);
    border-radius: 30px;
    margin: 2rem 1rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    animation: immersivePop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes immersivePop {
    from { opacity: 0; transform: scale(0.8) rotateX(10deg); }
    to { opacity: 1; transform: scale(1) rotateX(0deg); }
}

.immersive-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: black;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
}

.imm-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.imm-image-side {
    flex: 1;
    min-width: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.imm-image-side::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, #111);
}

.imm-info-side {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.imm-info-side h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.imm-ingredients-title {
    font-size: 0.8rem;
    color: #d4af37;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.imm-ingredients-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.imm-ingredients-list li {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInSlide 0.5s forwards;
    opacity: 0;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.imm-footer {
    margin-top: auto;
    display: flex;
    gap: 1rem;
}

.btn-imm-order {
    flex: 1;
    background: #d4af37;
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s;
}

.btn-imm-order:hover {
    background: #fff;
}

@media (max-width: 768px) {
    .imm-image-side {
        height: 250px;
        flex: none;
        width: 100%;
    }
    .imm-image-side::after {
        background: linear-gradient(to bottom, transparent, #111);
    }
    .imm-info-side {
        padding: 2rem;
    }
    .imm-info-side h2 {
        font-size: 1.8rem;
    }
}

/* ==================== IMMERSIVE ACTIONS BUTTONS ==================== */
.imm-actions {
    display: flex;
    gap: 10px;
    flex: 2;
}

.btn-imm-cart {
    background: transparent;
    color: white;
    border: 2px solid #d4af37;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-imm-cart:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-imm-order {
    background: #d4af37;
    color: #111 !important;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex: 1;
}

@media (max-width: 480px) {
    .imm-footer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .imm-actions {
        width: 100%;
        flex-direction: column;
    }
}

/* ==================== ONBOARDING POP-UP ==================== */
.onboarding-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.onboarding-card {
    background: #1a1a1a;
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    padding: 2.5rem;
    color: white;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: slideUpFade 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.onboarding-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
}

.onboarding-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.onboarding-btn {
    width: 100%;
    padding: 1.2rem;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.onboarding-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 1s;
}

.onboarding-btn:hover::after {
    left: 100%;
}

.btn-trendy {
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: #3d2b00;
}

.btn-browse {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.onboarding-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.onboarding-btn strong {
    font-size: 1.05rem;
    font-weight: 700;
}

.onboarding-btn span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn-trendy:hover {
    background: linear-gradient(135deg, #f1c40f, #d4af37);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.3);
}

.btn-browse:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ==================== TRENDY SHOWCASE (LUXURY VIEW) ==================== */
.trendy-showcase-overlay {
    background: #121212;
    min-height: 100vh;
    padding: 2rem 1rem 5rem 1rem;
    animation: fadeIn 0.5s ease;
    z-index: 5000;
}

.trendy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trendy-header h2 {
    color: #d4af37;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trendy-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.trendy-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.trendy-star-card {
    background: #1a1a1a;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.3s ease;
}

.trendy-star-card:hover {
    transform: scale(1.02);
}

.trendy-star-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.trendy-star-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, #1a1a1a, transparent);
}

.trendy-star-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #d4af37;
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.trendy-star-content {
    padding: 1.5rem 2rem 2rem 2rem;
}

.trendy-star-content h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.trendy-star-content .resto-name {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.trendy-star-content .desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.trendy-star-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.trendy-star-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #d4af37;
}

.trendy-actions {
    display: flex;
    gap: 10px;
}

.btn-trendy-order {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-trendy-cart {
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.back-to-all {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 6000;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}


.back-to-all:hover {
    background: #f8f9fa;
    transform: translateX(-50%) translateY(-2px);
}


/* ==================== TRENDY MODE: DARK/GOLD MODAL OVERRIDES ==================== */
/* These styles activate ONLY when the Trendy Showcase is open (body.trendy-mode) */

body.trendy-mode .modal-content {
    background-color: #1a1a1a !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: white !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7) !important;
}

body.trendy-mode .modal-header {
    background: linear-gradient(135deg, #d4af37, #f1c40f) !important;
    color: #1a1a1a !important;
}

body.trendy-mode .modal-body p,
body.trendy-mode .modal-body span,
body.trendy-mode .modal-body label {
    color: rgba(255,255,255,0.8) !important;
}

body.trendy-mode .escalope-option-btn,
body.trendy-mode .makloub-option-btn,
body.trendy-mode .pizza-option-btn,
body.trendy-mode .pasta-option-btn,
body.trendy-mode .ojja-option-btn,
body.trendy-mode .anchilada-option-btn {
    background: #262626 !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    color: white !important;
}

body.trendy-mode .escalope-option-btn:hover,
body.trendy-mode .makloub-option-btn:hover,
body.trendy-mode .pizza-option-btn:hover,
body.trendy-mode .pasta-option-btn:hover,
body.trendy-mode .ojja-option-btn:hover,
body.trendy-mode .anchilada-option-btn:hover {
    background: #333333 !important;
    border-color: #d4af37 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25) !important;
}

body.trendy-mode .escalope-option-name,
body.trendy-mode .makloub-option-name,
body.trendy-mode .pizza-option-name,
body.trendy-mode .pasta-option-name,
body.trendy-mode .ojja-option-name,
body.trendy-mode .anchilada-option-name {
    color: #d4af37 !important;
}

body.trendy-mode .escalope-option-btn:hover .escalope-option-name,
body.trendy-mode .makloub-option-btn:hover .makloub-option-name,
body.trendy-mode .pizza-option-btn:hover .pizza-option-name,
body.trendy-mode .pasta-option-btn:hover .pasta-option-name,
body.trendy-mode .ojja-option-btn:hover .ojja-option-name,
body.trendy-mode .anchilada-option-btn:hover .anchilada-option-name {
    color: #f1c40f !important;
}

body.trendy-mode .escalope-option-price,
body.trendy-mode .makloub-option-price,
body.trendy-mode .pizza-option-price,
body.trendy-mode .pasta-option-price,
body.trendy-mode .ojja-option-price,
body.trendy-mode .anchilada-option-price {
    color: white !important;
}

body.trendy-mode .makloub-option-ingredients,
body.trendy-mode .pizza-option-desc,
body.trendy-mode .pasta-option-description,
body.trendy-mode .ojja-option-description {
    color: rgba(255,255,255,0.5) !important;
}

body.trendy-mode .escalope-option-btn:hover .makloub-option-ingredients,
body.trendy-mode .makloub-option-btn:hover .makloub-option-ingredients,
body.trendy-mode .pizza-option-btn:hover .pizza-option-desc,
body.trendy-mode .pasta-option-btn:hover .pasta-option-description,
body.trendy-mode .ojja-option-btn:hover .ojja-option-description {
    color: rgba(255,255,255,0.8) !important;
}

/* Tacos modal in trendy mode */
body.trendy-mode .tacos-option-btn {
    background: #262626 !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    color: white !important;
}

body.trendy-mode .tacos-option-btn:hover {
    background: #333 !important;
    border-color: #d4af37 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25) !important;
}

body.trendy-mode .tacos-option-name {
    color: #d4af37 !important;
}


.update-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 10px rgba(212, 175, 55, 0.2);
    border: 1px solid #d4af37;
    z-index: 10000;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    opacity: 0;
}

.update-toast.show {
    bottom: 30px;
    opacity: 1;
}





