.menu__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card_menu {
    flex: 1 1 250px;
    max-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card_menu:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.card_menu img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card_menu h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 12px 16px 4px;
}

.card_menu p.muted {
    font-size: 14px;
    color: var(--muted);
    margin: 0 16px 8px;
}

.card_menu .price {
    font-weight: 700;
    font-size: 16px;
    margin: 0 16px 12px;
    color: var(--accent);
}
