.categories ul {
    list-style: none;
    padding: 0;
}

.categories li {
    margin: 10px 0;
}

.category-link {
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    color: #ff7e00;
}

.promo-spotlight {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
    background: #0f1118 var(--promo-image, url('/assets/images/logo1.png')) center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.promo-spotlight-overlay {
    padding: 22px;
    color: #fff;
    max-width: 640px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.56) 46%, rgba(0, 0, 0, 0.12) 100%);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.promo-pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
    background: #b81217;
}

.promo-spotlight h3 {
    margin: 12px 0 8px;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.2;
    font-weight: 800;
}

.promo-spotlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .promo-spotlight {
        min-height: 190px;
        border-radius: 14px;
        background-size: contain;
        background-position: center center;
        background-color: #070a12;
    }

    .promo-spotlight-overlay {
        padding: 16px;
        max-width: 92%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 56%, rgba(0, 0, 0, 0.18) 100%);
    }
}

.menu-item {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px;
}

.menu-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(100deg, #e11818, #b70f0f);
    border-radius: 999px;
    padding: 5px 10px;
    margin: 0 0 8px;
    box-shadow: 0 6px 12px rgba(162, 21, 21, 0.35);
}



.info-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

.popup .close {
    cursor: pointer;
    float: right;
    font-size: 20px;
}


#sidebar {
    height: 100vh;
    overflow-y: auto;
}

/* ✅ Grille des plats */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

/* ✅ Style des cartes */
.menu-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    border: 2px solid #ff7e00;
}

.menu-item:hover {
    transform: scale(1.03);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.menu-title-first {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    color: #ff7e00;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ✅ Images */
.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #ff7e00;
    transition: transform 0.3s ease-in-out;
}
.menu-item img:hover {
    transform: scale(1.1);
    margin: 6px;
}


.menu-img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}

.menu-size {
    margin-top: 5px;
    width: 100%;
}

/*.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.quantity-control button {
    width: 30px;
    height: 30px;
    font-size: 1rem;
}*/

.add-to-cart {
    width: 100%;
    margin-top: 10px;
}

.local-toast {
    font-size: 0.9rem;
    text-align: center;
    transition: opacity 0.3s ease;
}


/* ✅ Animation fade-in/out 
.toast-notif {
    opacity: 0;
    display: block;
    max-width: 100%;
    padding: 8px 12px;
    margin: 8px auto;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    background-color: #28a745;
    color: white;
    transition: opacity 0.4s ease-in-out;
    position: relative;
    z-index: 10;
    pointer-events: none;
    visibility: hidden;
}*/
/* ✅ Lorsqu'on affiche la notif */
.toast-notif.show {
    opacity: 1;
    visibility: visible;
}
