/* Menu Categories Styling */
.menu-categories {
    padding: var(--section-padding);
    background-color: var(--bg-dark);
}

.category-list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.category-img-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
}

.category-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--gold-primary);
    padding: 10px;
}

/* Background decorations */
.category-decor {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    z-index: -1;
    opacity: 0.15;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.category-info h3 {
    margin-bottom: 1rem;
}

.category-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.view-menu-btn {
    display: inline-block;
    color: var(--gold-primary);
    border-bottom: 1px solid var(--gold-primary);
    padding-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Popular Dishes Carousel/Grid */
.popular-dishes {
    padding: var(--section-padding);
    background-color: var(--bg-card);
}

.carousel-container {
    margin-top: 3rem;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.dish-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: var(--bg-accent);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.dish-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dish-details {
    padding: 2rem;
}

.serif-dish-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.price {
    display: block;
    color: var(--gold-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.dish-details p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (min-width: 1024px) {
    .category-list {
        flex-direction: row;
        justify-content: center;
        gap: 5rem;
    }
    
    .category-card {
        flex: 1;
    }

    .carousel-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        overflow-x: visible;
    }
    
    .dish-card {
        flex: none;
    }
}
