.menu-category h3 {
    color: #5a2d0c;
    font-weight: 700;
}

.menu-card {
    position: relative;   /* EZ HIÁNYZIK */
    background: linear-gradient(145deg, #fffaf2, #f3e1c7);
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    transition: 0.25s;
    border: 2px solid #caa36b;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.menu-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px dashed rgba(139,90,43,0.35);
    border-radius: 10px;
    pointer-events: none;
}



.menu-card:hover {
    transform: translateY(-4px);
}

/* Fejléc */
.menu-card-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 8px;
}

.menu-name {
    font-size: 1.15rem;
    font-weight: 700;
}

.menu-price {
    color: #8b5e3c;
    font-weight: 700;
    font-size: 1.1rem;    
}

/* Leírás */
.menu-desc {
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 768px) {

    .menu-card {
        padding: 18px;
        margin-bottom: 15px;
    }

    .menu-name {
        font-size: 1.2rem;
    }

    .btn {
        width: 100%;
        padding: 14px;
        font-size: 1.1rem;
    }

}
