@charset "utf-8";
/* CSS Document */

/* --- Página de Menú --- */
.menu-page {
    padding: 60px 20px;
    text-align: center;
}

/* Pestañas de Navegación */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #888;
    cursor: pointer;
    padding: 10px 20px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--azul-profundo);
    border-bottom: 2px solid var(--naranja-destaque);
    font-weight: 600;
}


.subcategory-wrapper {
    margin-bottom: 50px;
    text-align: left;
}

.subcategory-title {
    color: var(--naranja-destaque);
    font-size: 1.8rem;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
    padding-bottom: 10px;
    width: 100%;
}



/* Grilla de Platillos */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
	text-align:left;
}

.menu-item {
    padding-bottom: 20px;
    border-bottom: 1px dotted #ccc;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.item-header h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--azul-profundo);
    margin: 0;
}

.price {
    color: var(--naranja-destaque);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
}

.menu-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Ocultar categorías no activas */
.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}