.menu-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    background: #FFFFFF;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid #E4E4E7;
}

.categories-subnav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.cat-btn {
    background: #FFFFFF;
    color: #18181B;
    border: 1px solid #E4E4E7;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cat-btn.active, .cat-btn:hover {
    background: #18181B;
    color: #FFFFFF;
    border-color: #18181B;
}

.menu-search-box {
    position: relative;
    width: 260px;
}

.menu-search-box input {
    width: 100%;
    padding: 8px 35px 8px 15px;
    border-radius: 20px;
    border: 1px solid #E4E4E7;
    font-size: 13px;
    outline: none;
}

.menu-search-box .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #A1A1AA;
}

.titulo-carta-seccion {
    margin-bottom: 30px;
}

.titulo-carta-seccion h2 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

.titulo-carta-seccion p {
    color: #71717A;
    font-size: 14px;
    max-width: 600px;
}

/* Grilla de ítems */
.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card-item-catalogo {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #F4F4F5;
    transition: box-shadow 0.2s ease;
}

.card-item-catalogo:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.item-img-container {
    height: 190px;
    position: relative;
}

.item-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFFFFF;
    color: #18181B;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge-cat.text-combo {
    background: #EF4444;
    color: #FFFFFF;
}

.item-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-info h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.item-desc {
    font-size: 12px;
    color: #71717A;
    line-height: 1.4;
    margin-bottom: 15px;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.item-price {
    font-size: 16px;
    font-weight: 800;
}

.btn-ver-plato {
    background: #FFFFFF;
    border: 1px solid #E4E4E7;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-ver-plato:hover {
    background: #F4F4F5;
}

/* Estilos del modal basados en producto.jpg */
.modal-catalogo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.modal-catalogo-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.modal-catalogo-window {
    background: #FFFFFF;
    border-radius: 16px;
    width: 90%;
    max-width: 780px;
    padding: 30px;
    position: relative;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    color: #A1A1AA;
}

.modal-catalogo-layout {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.modal-layout-left {
    flex: 1;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
}

.modal-layout-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-layout-right {
    flex: 1.1;
    display: flex;
    flex-direction: column;
}

.modal-layout-right h2 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 5px 0;
}

.rating-stars {
    font-size: 12px;
    margin-bottom: 10px;
}

.rating-number {
    font-weight: 700;
    color: #18181B;
}

.detail-price-tag {
    font-size: 22px;
    font-weight: 800;
    color: #18181B;
    margin-bottom: 15px;
}

.detail-description-text {
    font-size: 13px;
    color: #52525B;
    line-height: 1.5;
}

/* Selectores de Compra */
.purchase-action-container {
    margin-top: auto;
    border-top: 1px solid #E4E4E7;
    padding-top: 15px;
}

.purchase-action-container label {
    font-size: 11px;
    font-weight: 700;
    color: #71717A;
    display: block;
    margin-bottom: 6px;
}

.purchase-action-row {
    display: flex;
    gap: 15px;
}

.quantity-selector {
    display: flex;
    border: 1px solid #E4E4E7;
    border-radius: 25px;
    overflow: hidden;
}

.quantity-selector button {
    background: none;
    border: none;
    width: 35px;
    height: 38px;
    font-weight: 700;
    cursor: pointer;
}

.quantity-selector input {
    width: 35px;
    border: none;
    text-align: center;
    font-weight: 700;
    outline: none;
}

.btn-add-cart-expanded {
    flex-grow: 1;
    background: #EF4444;
    color: #FFFFFF;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-add-cart-expanded:hover {
    background: #DC2626;
}

/* Recomendaciones inferiores */
.recommendations-section {
    border-top: 1px solid #E4E4E7;
    padding-top: 20px;
}

.recommendations-section h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.recommendations-sub {
    font-size: 12px;
    color: #71717A;
    margin: 2px 0 15px 0;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.rec-card {
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.rec-card img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
}

.rec-card-body h4 {
    font-size: 12px;
    margin: 0 0 2px 0;
}

.rec-card-body span {
    font-size: 12px;
    font-weight: 700;
}

.combo-inclusions-area {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.combo-inclusions-area h4 { font-size: 11px; margin: 0 0 4px 0; color: #B45309; }
.combo-inclusions-area ul { margin: 0; padding-left: 15px; font-size: 11px; color: #78350F; }

@media(max-width: 992px) {
    .catalogo-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-catalogo-layout { flex-direction: column; gap: 15px; }
    .recommendations-grid { grid-template-columns: repeat(2, 1fr); }
}