.menu-item {
    height: 180px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.menu-img {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    flex: 1;
}

.menu-text h3 {
    font-size: 1.2rem;
    margin: 0 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-text .price {
    color: #28a745;
    font-weight: bold;
}

.menu-text p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}


#imagenModal {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1 / 1; /* mantiene proporción cuadrada */
    object-fit: cover;
}

.img-categoria img {
    width: 600px;
    height: 700px;
    object-fit: cover;   /* llena el espacio recortando */
    display: block;      /* evita espacios extra */
    margin: 0 auto;      /* centra la imagen */
}
