/* =========================================
   DISEÑO DE PÁGINA DE MENÚ (CORREGIDO NARANJA + ESPACIO)
   ========================================= */

/* Fuente Global para esta página */
.menu-page {
    font-family: "Quicksand", sans-serif;
    background-color: #fdfdfd;
    min-height: 100vh;
}

/* ------------------------------------------------
   1. BARRA DE CATEGORÍAS (PILLS)
------------------------------------------------ */
.menu-sidebar-wrapper {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.menu-nav-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.menu-nav-pills::-webkit-scrollbar {
    display: none;
}

/* Botón de Categoría (Inactivo) */
.menu-nav-link {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    background-color: #fff;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

/* Hover */
.menu-nav-link:hover {
    background-color: #fff4f2;
    color: var(--orange, #ff7428);
    border-color: #ffe0d1;
}

/* Botón de Categoría (ACTIVO - NARANJA) */
.menu-nav-link.active {
    background-color: var(--orange, #ff7428) !important;
    color: #ffffff !important;
    border-color: var(--orange, #ff7428);
    box-shadow: 0 4px 12px rgba(255, 116, 40, 0.35);
}

/* Contador (Badge) dentro del botón */
.menu-nav-link .badge {
    margin-left: 8px;
    background-color: #f3f4f6;
    color: #4b5563;
    border-radius: 6px;
    padding: 3px 7px;
    font-size: 0.75rem;
}

/* Badge dentro del botón activo */
.menu-nav-link.active .badge {
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* ------------------------------------------------
   2. TARJETA DE PRODUCTO (ESPECÍFICA DEL MENÚ)
   (Si usas cards.css, estos estilos se ignoran o complementan)
------------------------------------------------ */
.menu-product-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
/* ... resto de estilos de tarjeta (heredados de cards.css si existen) ... */

/* ------------------------------------------------
   3. RESPONSIVE (MÓVIL)
------------------------------------------------ */
@media (max-width: 991px) {
    .menu-sidebar-wrapper {
        position: sticky;
        top: 0px;
        margin-left: -15px;
        margin-right: -15px;
        padding: 15px;
        border-bottom: 1px solid #eee;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(5px);
    }
}

/* ------------------------------------------------
   4. ESCRITORIO (EL CAMBIO IMPORTANTE)
------------------------------------------------ */
@media (min-width: 992px) {
    .menu-nav-pills {
        flex-direction: column;
        overflow: visible;
        gap: 15px; /* ✅ MÁS ESPACIO entre botones */
    }

    .menu-nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 12px 25px; /* ✅ BOTONES MÁS GRANDES Y CÓMODOS */
        font-size: 1rem;
    }

    .menu-sidebar-wrapper {
        top: 100px;
        /* ✅ Convertimos el sidebar en una TARJETA real */
        padding: 30px;
        background: #ffffff;
        border-radius: 20px;
        border: 1px solid #f0f0f0;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    }
}
