#db9_menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 8%;
    position: relative;
    overflow: hidden;
}

#db9_menu::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127, 178, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

#db9_dishes {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.db9_dish {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 24px;
    gap: 18px;
    padding: 32px 26px;
    background: linear-gradient(145deg, var(--neutral-color-0) 0%, rgba(246, 246, 243, 0.8) 100%);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 5px solid var(--color-4);
    animation: db9_fadeInUp 0.8s ease-out both;
}

:root[data-theme="dark"] .db9_dish {
    background: linear-gradient(145deg, var(--neutral-color-0) 0%, rgba(42, 42, 42, 0.8) 100%);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.3);
}

.db9_dish:nth-child(1) { animation-delay: 0.1s; }
.db9_dish:nth-child(2) { animation-delay: 0.2s; }
.db9_dish:nth-child(3) { animation-delay: 0.3s; }
.db9_dish:nth-child(4) { animation-delay: 0.4s; }

@keyframes db9_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}\n\n.db9_dish::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(183, 200, 138, 0.15), transparent);
    transition: left 0.6s;
}

.db9_dish:hover::before {
    left: 100%;
}

.db9_dish:hover {
    transform: translateY(-12px);
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.15);
    border-top-color: var(--color-6);
}

.db9_dish-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
}

.db9_dish-icon {
    font-size: 4.5rem;
    color: var(--color-6);
    margin: 20px 0;
    transition: all 0.4s ease;
    position: relative;
}

.db9_dish:hover .db9_dish-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(216, 138, 131, 0.4));
}

.db9_dish-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--neutral-color-1);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.3;
}

.db9_dish-description {
    color: var(--neutral-color-3);
    text-align: center;
    line-height: 1.7;
    font-size: 0.98rem;
    flex: 1;
}

.db9_dish-rate {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 16px;
    background-color: rgba(183, 200, 138, 0.15);
    border-radius: 14px;
    width: 100%;
    max-width: 340px;
    box-sizing: border-box;
}

.db9_dish-rate i {
    color: var(--color-6);
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.db9_dish-rate span {
    color: var(--neutral-color-1);
    font-size: 0.92rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.35;
}

@media screen and (max-width: 1170px) {
    .db9_dish-rate {
        max-width: 100%;
    }
}

.db9_dish-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-top: 16px;
}

.db9_dish-price h4 {
    color: var(--neutral-color-1);
    font-size: 1rem;
    font-weight: 600;
}

.db9_dish-price button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.db9_btn-buy {
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
}

/* When the CTA is an <a> styled as a button */
.db9_dish-price .db9_btn-buy.db9_btn-default {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

@media screen and (max-width: 1170px) {
    #db9_dishes {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .db9_dish {
        padding: 28px 22px;
    }
}

@media screen and (max-width: 768px) {
    #db9_dishes {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    #db9_menu .db9_section-subtitle {
        font-size: 2rem;
    }
}

@media screen and (max-width: 600px) {
    .db9_dish {
        padding: 24px 20px;
    }

    .db9_dish-icon {
        font-size: 3.5rem;
        margin: 15px 0;
    }

    #db9_menu .db9_section-subtitle {
        text-align: center;
        font-size: 1.8rem;
    }
}