/* ===== Sidebar Izquierda ===== */
.sidebar-left {
    position: fixed;
    left: 0;
    width: 220px;
    bottom: 0;
    top: 0;
    background: var(--glass, rgba(20,22,28,0.85));
    backdrop-filter: var(--glass-blur, blur(12px));
    -webkit-backdrop-filter: var(--glass-blur, blur(12px));
    box-shadow: 4px 0 24px 0 #000a;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 2.2rem 1.2rem 1.2rem 1.2rem;
    color: var(--texto);
    font-size: 1rem;
    transform: translateX(0);
    transition: transform 300ms var(--ease-out);
}
.sidebar-toggle {
    position: fixed;
    top: auto;
    left: 1.2rem;
    bottom: 1.2rem;
    z-index: 400;
    background: var(--rojo);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    cursor: pointer;
    box-shadow: 0 2px 8px #0006;
}

.sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 290;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms var(--ease-out);
}

.sidebar-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}
.sidebar-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 410;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: var(--rojo);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px #0006;
}
.sidebar-section {
    margin-bottom: 1.2rem;
}
.sidebar-title {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--rojo);
    font-size: 1.1rem;
        display: block;
    letter-spacing: 0.04em;
}
.sidebar-content {
    color: var(--texto);
    font-size: 0.98rem;
    opacity: 0.92;
}

.sidebar-direction-section {
    margin-bottom: 1rem;
}

.sidebar-map-card {
    position: relative;
    margin-top: 0.6rem;
    padding: 0.45rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(10, 12, 16, 0.95), rgba(18, 20, 26, 0.96));
    border: 1px solid rgba(255, 59, 48, 0.1);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 59, 48, 0.05), 0 0 18px rgba(255, 59, 48, 0.05);
    overflow: hidden;
}

.sidebar-map-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 59, 48, 0.14), transparent 34%), radial-gradient(circle at bottom right, rgba(255, 184, 0, 0.08), transparent 30%);
    pointer-events: none;
}

.sidebar-map-frame {
    display: block;
    width: 100%;
    height: 132px;
    border: 0;
    border-radius: 0.8rem;
    overflow: hidden;
    filter: saturate(0.95) contrast(1.02) brightness(0.92);
}

.sidebar-map-btn {
    position: absolute;
    right: 0.58rem;
    bottom: 0.58rem;
    transform: translateY(0);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.68rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.52);
    color: #fff;
    border: 1px solid rgba(255, 59, 48, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28), 0 0 12px rgba(255, 59, 48, 0.08);
    z-index: 1;
}

.sidebar-map-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.sidebar-map-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 59, 48, 0.14);
    border-color: rgba(255, 59, 48, 0.42);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3), 0 0 14px rgba(255, 59, 48, 0.14);
}

.sidebar-hours {
    display: grid;
    gap: 0.26rem;
    padding: 0.15rem 0 0.05rem;
}

.sidebar-hours-row {
    display: grid;
    grid-template-columns: minmax(72px, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.22rem 0;
    line-height: 1.05;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-hours-row:last-child {
    border-bottom: none;
}

.sidebar-hours-day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--texto);
}

.sidebar-hours-time {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--amarillo);
    text-align: right;
    white-space: nowrap;
}

.sidebar-hours-row.is-closed .sidebar-hours-time {
    color: var(--rojo);
    text-shadow: 0 0 8px rgba(255, 59, 48, 0.55);
}

.sidebar-hours-row.is-closed .sidebar-hours-day {
    color: var(--rojo);
}

.sidebar-hours-row:not(.is-closed):hover .sidebar-hours-time {
    color: #ffd65a;
}

.sidebar-hours-row:not(.is-closed):hover .sidebar-hours-day {
    color: #fff;
}
.sidebar-redes a {
    margin-right: 0.7rem;
    display: inline-block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.15s;
}
.sidebar-redes a:visited,
.sidebar-redes a:active {
    color: inherit;
}
.sidebar-redes a:hover {
    transform: scale(1.15);
}
.sidebar-whatsapp {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.18s;
}
.sidebar-whatsapp:hover {
    background: #128c7e;
}
@media (max-width: 900px) {
    .sidebar-left {
        top: 0;
        left: 0;
        height: 100vh;
        width: min(88vw, 360px);
        max-width: 360px;
        transform: translateX(-100%);
        transition: transform 280ms var(--ease-out);
        box-shadow: 4px 0 24px 0 #000a;
        display: flex;
        pointer-events: auto;
    }
    .sidebar-left.open {
        transform: translateX(0);
    }
    body.sidebar-hidden .sidebar-left.open {
        transform: translateX(0);
    }
    .sidebar-close {
        display: block;
    }
    .sidebar-toggle {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }
    body {
        padding-left: 0 !important;
    }
}
body {
    padding-left: 220px;
}
body.sidebar-hidden {
    padding-left: 0 !important;
}
@media (max-width: 900px) {
    body {
        padding-left: 0 !important;
    }
}
body.sidebar-hidden .sidebar-left {
    transform: translateX(-100%);
}
body.sidebar-open .sidebar-toggle {
    opacity: 1;
    pointer-events: auto;
}
/* Fin media query móvil */
:root {
    --fondo: #0f1115;
    --fondo-sec: #171a21;
    --rojo: #ff3b30;
    --rojo-hover: #ff5f57;
    --amarillo: #ffb800;
    --texto: #f5f5f5;
    --texto-sec: #b9c0cc;
    --borde: #262b36;
    --glass: rgba(20,22,28,0.72);
    --glass-blur: blur(12px);
    --neon-red: 0 0 16px 2px #ff3b30cc;
    --neon-yellow: 0 0 8px 2px #ffb80099;

    /* Recommended easing from emil-design-eng */
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

html {
    scroll-behavior: smooth;
    background: var(--fondo);
}

body {
    background: var(--fondo);
    color: var(--texto);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 60% 10%, #ff3b3040 0%, transparent 70%),
                radial-gradient(ellipse at 20% 80%, #ffb80022 0%, transparent 70%),
                linear-gradient(120deg, #0f1115 60%, #171a21 100%);
    filter: blur(32px) brightness(1.08);
    width: 100vw;
    height: 100vh;
    transition: opacity 0.5s;
}

/* Hint browser about frequently animated properties for smoother rendering */
.producto-card, .toast, .glass-modal {
    will-change: transform, opacity;
}

.glass-modal {
    transform-origin: center;
}

.glass-header, .glass-nav, .glass-footer {
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 4px 32px 0 #000a, var(--neon-red);
    border-bottom: 1.5px solid var(--borde);
}



.glass-nav {
    position: sticky;
    top: 0px; /* Altura aproximada del header, ajusta si es necesario */
    z-index: 9;
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 8px 32px 0 #000b, var(--neon-red);
    margin-bottom: 2.2rem;
}

.glass-footer {
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 -4px 32px 0 #000a, var(--neon-red);
    border-top: 1.5px solid var(--borde);
}

header, .glass-header {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Dar al header un fondo similar a la sección 'Sobre Nosotros' */
header.glass-header {
    background: linear-gradient(180deg, rgba(20,6,6,0.92), rgba(8,8,10,0.96));
    border-radius: 0 0 16px 16px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 8px 28px rgba(0,0,0,0.6), var(--neon-red);
}

.logo-wrap {
    gap: 1.2rem;
}

.kaiju-header-logo {
    box-shadow: 0 0 24px 4px #ff3b3040, 0 0 0 4px #000a;
    border: 2.5px solid var(--rojo);
    background: #fff1;
    filter: drop-shadow(0 0 12px #ff3b30cc);
}

.header-center-content .logo {
    font-size: 2.7em;
    color: var(--rojo);
    text-shadow: 0 0 8px #ff3b30cc, 2px 2px 0 #fff, 4px 4px 0 #0002;
    letter-spacing: 2px;
}

.sub {
    color: var(--texto-sec);
    opacity: 0.8;
    font-size: 1.1rem;
}

.tagline {
    color: var(--amarillo);
    text-shadow: var(--neon-yellow);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.nav-tabs {
    gap: 0.7rem;
    min-width: 0;
    padding: 0.2rem 0.5rem;
}

.nav-tab {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--texto);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    border-radius: 0.7rem 0.7rem 0 0;
    transition: color 0.2s, border 0.2s, background 0.2s;
    outline: none;
    position: relative;
    z-index: 1;
}

/* Accessibility: visible focus for keyboard users */
button:focus-visible, a:focus-visible, .nav-tab:focus-visible, .sidebar-close:focus-visible, .sidebar-toggle:focus-visible {
    outline: 3px solid var(--amarillo);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Active/tap feedback for pressable elements */
button:active, .nav-tab:active, .sidebar-close:active, .sidebar-toggle:active {
    transform: scale(0.97);
    transition: transform 160ms var(--ease-out);
}

/* Respect user preference to reduce motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition-duration: 0ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
    }
}

.nav-tab.active,
.nav-tab:hover {
    color: var(--rojo);
    border-bottom: 3px solid var(--rojo);
    background: linear-gradient(90deg, #ff3b3040 0%, #ffb80022 100%);
    box-shadow: 0 2px 12px 0 #ff3b3040;
}

main {
    flex: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0.5rem 5rem 0.5rem;
    z-index: 1;
}

section {
    margin-bottom: 2.5rem;
}

/* Sobre Nosotros - layout con imagen a la derecha en escritorio */
.about-content {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}
.about-text {
    flex: 1 1 60%;
    color: var(--texto);
    font-size: 1rem;
    line-height: 1.5;
}
.about-media {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
}
.about-image {
    width: 320px;
    max-width: 40vw;
    height: 220px;
    object-fit: cover;
    border-radius: 1rem;
    border: 1.5px solid var(--borde);
    box-shadow: 0 10px 30px 0 rgba(0,0,0,0.6), 0 0 18px 2px #ff3b3040;
}

@media (max-width: 800px) {
    .about-content {
        flex-direction: column-reverse;
        gap: 0.8rem;
    }
    .about-media {
        width: 100%;
    }
    .about-image {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

.cat-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--rojo);
    margin-bottom: 1.2rem;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 0 #000, 0 0 8px var(--rojo);
}

.productos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .productos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .productos-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.producto-card {
    background: linear-gradient(120deg, #181a20cc 60%, #23262bcc 100%);
    border: 1.5px solid var(--borde);
    border-radius: 1.3rem;
    box-shadow: 0 8px 32px 0 #000b, var(--neon-red);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
    cursor: pointer;
    min-height: 340px;
    backdrop-filter: blur(2px);
}

@media (min-width: 900px) {
    .producto-card {
        min-height: 370px;
    }

    .producto-img {
        height: 190px;
    }

    .producto-info {
        padding: 1.2rem 1.2rem 0.9rem 1.2rem;
    }

    .producto-desc {
        font-size: 1.03rem;
        margin-bottom: 0.9rem;
    }

    .producto-precios {
        gap: 0.65rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .precio {
        font-size: 1.2rem;
        margin-left: 0.6rem;
        margin-top: 0.3rem;
    }
}

.producto-card:hover {
    transform: scale(1.025) translateY(-2px);
    box-shadow: 0 12px 40px 0 #ff3b3033, 0 2px 0 0 var(--rojo);
    border-color: var(--rojo);
}

.producto-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: center;
    background: #222;
    border-bottom: 2px solid var(--rojo);
    transition: filter 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 16px 0 #ff3b3040;
}

.producto-card:hover .producto-img {
    filter: brightness(1.08) saturate(1.2) drop-shadow(0 0 8px #ff3b30cc);
}

.producto-info {
    flex: 1;
    padding: 1.1rem 1.1rem 0.7rem 1.1rem;
    display: flex;
    flex-direction: column;
}

.producto-nombre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--rojo);
    margin-bottom: 0.2rem;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 8px #ff3b3040;
}

.badge {
    display: inline-block;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    color: var(--texto);
    background: var(--amarillo);
    border-radius: 1rem;
    padding: 0.1rem 0.7rem;
    margin-left: 0.3rem;
    font-weight: bold;
    animation: badge-pulse 1.2s infinite alternate;
    box-shadow: 0 0 8px 2px var(--amarillo);
}

.badge.nuevo {
    background: var(--rojo);
    color: var(--texto);
    box-shadow: 0 0 8px 2px var(--rojo);
}

.badge.mas-pedido {
    background: var(--amarillo);
    color: var(--rojo);
    animation: badge-pulse2 1.2s infinite alternate;
}

@keyframes badge-pulse {
    0% { box-shadow: 0 0 8px 2px var(--rojo); }
    100% { box-shadow: 0 0 16px 4px var(--rojo); }
}

@keyframes badge-pulse2 {
    0% { box-shadow: 0 0 8px 2px var(--amarillo); }
    100% { box-shadow: 0 0 16px 4px var(--amarillo); }
}

.producto-desc {
    color: var(--texto);
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 0.7rem;
}

.salsas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 600px) {
    .salsas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .salsas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.salsa-card {
    background: linear-gradient(120deg, #181a20cc 60%, #23262bcc 100%);
    border: 1.5px solid var(--borde);
    border-radius: 1.2rem;
    padding: 1rem 1rem 0.9rem 1rem;
    box-shadow: 0 8px 32px 0 #000b, var(--neon-red);
}

.salsa-card-top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.salsa-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 999px;
    border: 2px solid var(--rojo);
    box-shadow: 0 0 12px #ff3b3040;
    flex-shrink: 0;
}

.salsa-card-name {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--rojo);
    font-size: 1.35rem;
    letter-spacing: 0.04em;
}

.salsa-card-desc {
    color: var(--texto);
    opacity: 0.85;
    font-size: 0.98rem;
}

.salsa-card-nivel {
    margin-top: 0.7rem;
    color: var(--amarillo);
    font-weight: bold;
}

/* Simple cards, modal, footer, etc. seguirán con la misma lógica visual y glassmorphism, puedes continuar extendiendo el CSS aquí para cada sección... */
.kaiju-header-logo {
    width: 170px;
    max-width: 28vw;
    min-width: 90px;
    display: block;
    margin: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 16px 4px #fff8, 0 0 0 4px #000a;
    padding: 0.5rem;
    transition: width 0.2s, max-width 0.2s;
    flex-shrink: 0;
}

.header-center-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    margin-left: 0;
    text-align: center;
}

.logo-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    gap: 0;
    position: relative;
}

@media (max-width: 900px) {
    .logo-wrap {
        gap: 0;
        max-width: 98vw;
    }
}

@media (max-width: 600px) {
    .logo-wrap {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .kaiju-header-logo {
        width: 70px;
        max-width: 50vw;
        margin: 0 auto 0.5rem auto;
    }

    .header-center-content {
        width: 100%;
        align-items: center;
        margin-left: 0;
        text-align: center;
    }

    .header-center-content .logo {
        font-size: 1.5em;
    }
    .sub {
        font-size: 0.9rem;
    }
    .tagline {
        font-size: 0.9rem;
    }
}

@font-face {
    font-family: 'KaijuBrush';
    src: url('KaijuBrush-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.kaiju-brush {
    font-family: 'KaijuBrush';
    letter-spacing: 2px;
    
    color: #D62828;
    text-shadow: 2px 2px 0 #fff, 4px 4px 0 #0002;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 600px) {
    header {
        min-height: 90px;
        padding-top: env(safe-area-inset-top, 1.2rem);
        width: 100vw;
        box-sizing: border-box;
    }

    nav {
        position: sticky;
        top: 0;
        left: 0;
        width: 100vw;
        z-index: 9999;
        box-sizing: border-box;
    }

    main {
        padding-top: 5.5rem !important;
    }
}

/* Kaiju Kitchen - Estilos principales */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;700&display=swap');

:root {
    --fondo: #0D0D0D;
    --rojo: #CC0000;
    --naranja: #E85D04;
    --amarillo: #FFB703;
    --blanco: #F1F1F1;
    --marron: #5A2A0C;
    --naranja2: #FF7A00;
    --borde: 2px solid var(--rojo);
    --radius: 1.2rem;
    --shadow: 0 4px 24px 0 #0008, 0 1.5px 0 0 var(--rojo);
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--fondo);
    color: var(--blanco);
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER */
header {
    background: var(--fondo);
    border-bottom: var(--borde);
    box-shadow: 0 6px 32px 0 #000a;
    padding: 1.2rem 0 0.5rem 0;
    text-align: center;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    gap: 0;
    position: relative;
}

.kaiju-header-logo {
    width: 170px;
    max-width: 28vw;
    min-width: 90px;
    display: block;
    margin: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 16px 4px #fff8, 0 0 0 4px #000a;
    padding: 0.5rem;
    transition: width 0.2s, max-width 0.2s;
    flex-shrink: 0;
}

.sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--blanco);
    letter-spacing: 0.12em;
    margin-top: -0.3rem;
    opacity: 0.7;
}

.tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--amarillo);
    margin-top: 0.2rem;
    letter-spacing: 0.08em;
    text-shadow: 0 0 8px var(--rojo);
}

.scratches {
    width: 100%;
    height: 32px;
    margin-top: 0.2rem;
    pointer-events: none;
    display: block;
}

nav {
    background: var(--fondo);
    border-bottom: var(--borde);
    overflow-x: auto;
    white-space: nowrap;
    padding: 0.2rem 0 0.2rem 0;
    position: sticky;
    top: 120px; /* Ajusta según la altura combinada de header+nav */
    left: 0;
    width: 100vw;
    z-index: 99;
    scrollbar-width: thin;
    scrollbar-color: var(--rojo) var(--fondo);
}

.nav-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    min-width: 600px;
}

.nav-tab {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--blanco);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    transition: color 0.2s, border 0.2s;
    outline: none;
}

.nav-tab.active,
 .nav-tab:hover {
    color: #fff;
    border-bottom: 3px solid var(--rojo);
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    /* -webkit-text-fill-color y text-fill-color eliminados por ser inválidos */
}
main {
    margin-top: 1.5rem;
}

main {
    flex: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0.5rem 5rem 0.5rem;
}

section {
    margin-bottom: 2.5rem;
}

.cat-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--rojo);
    margin-bottom: 1.2rem;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 0 #000, 0 0 8px var(--rojo);
}

.productos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .productos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .productos-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.producto-card {
    background: var(--marron);
    border: var(--borde);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.12s, box-shadow 0.12s;
    cursor: pointer;
    min-height: 340px;
}

.producto-card:hover {
    transform: scale(1.025) translateY(-2px);
    box-shadow: 0 8px 32px 0 #000b, 0 2px 0 0 var(--rojo);
    border-color: var(--naranja);
}

.producto-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: center;
    background: #222;
    border-bottom: 2px solid var(--rojo);
    transition: filter 0.2s;
}

.producto-card:hover .producto-img {
    filter: brightness(1.08) saturate(1.2);
}

.producto-info {
    flex: 1;
    padding: 1rem 1rem 0.7rem 1rem;
    display: flex;
    flex-direction: column;
}

.producto-nombre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--rojo);
    margin-bottom: 0.2rem;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge {
    display: inline-block;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    color: var(--blanco);
    background: var(--naranja2);
    border-radius: 1rem;
    padding: 0.1rem 0.7rem;
    margin-left: 0.3rem;
    font-weight: bold;
    animation: badge-pulse 1.2s infinite alternate;
    box-shadow: 0 0 8px 2px var(--naranja2);
}

.badge.nuevo {
    background: var(--naranja2);
}

.badge.mas-pedido {
    background: var(--amarillo);
    color: var(--rojo);
    animation: badge-pulse2 1.2s infinite alternate;
}

@keyframes badge-pulse {
    0% {
        box-shadow: 0 0 8px 2px var(--naranja2);
    }

    100% {
        box-shadow: 0 0 16px 4px var(--naranja2);
    }
}

@keyframes badge-pulse2 {
    0% {
        box-shadow: 0 0 8px 2px var(--amarillo);
    }

    100% {
        box-shadow: 0 0 16px 4px var(--amarillo);
    }
}

.producto-desc {
    color: var(--blanco);
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 0.7rem;
}

.producto-precios {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    align-items: center;
}

.precio-btns {
    display: flex;
    gap: 0.3rem;
}

.precio-btn {
    background: #181818;
    color: #0b0d11;
    border: 2px solid rgba(244, 191, 90, 0.55);
    border-radius: 1.2rem;
    font-size: 0.98rem;
    font-family: 'Inter', sans-serif;
    padding: 0.18rem 0.9rem 0.18rem 0.7rem;
    margin-right: 0.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    justify-content: center;
    min-width: 86px;
    box-sizing: border-box;
    white-space: nowrap;
    transition: background 0.18s, border 0.18s, color 0.18s;
    outline: none;
}

.precio-btn.selected,
.precio-btn:hover {
    background: linear-gradient(135deg, var(--rojo), var(--amarillo));
    color: var(--texto);
    border: none;
    
    box-shadow: 0 0 12px rgba(217, 79, 43, 0.35);
}

.precio {
    font-size: 1.1rem;
    color: var(--amarillo);
    font-weight: bold;
    margin-left: 0.5rem;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 0 #000;
}

@media (min-width: 900px) {
    .producto-precios {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .precio {
        font-size: 1.2rem;
        margin-left: 0;
        margin-top: 0.3rem;
    }
}

/* ===== INFORMACIÓN DE PORCIONES ===== */
.porcion-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.7rem;
    padding: 0.8rem;
    background: linear-gradient(120deg, rgba(255, 59, 48, 0.08) 0%, rgba(230, 93, 4, 0.08) 100%);
    border: 1px solid rgba(255, 59, 48, 0.15);
    border-radius: 0.9rem;
    animation: porcion-enter 0.4s ease-out;
}

@keyframes porcion-enter {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.porcion-detail {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.porcion-icon {
    font-size: 1.8rem;
    min-width: 2rem;
    text-align: center;
}

.porcion-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.porcion-tamaño {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--amarillo);
    letter-spacing: 0.03em;
    font-weight: bold;
}

.porcion-peso {
    font-size: 0.75rem;
    color: var(--blanco);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.porcion-piezas {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.piezas-icon {
    font-size: 1rem;
}

.piezas-num {
    color: var(--blanco);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.porcion-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 0.2rem;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rojo), var(--amarillo));
    border-radius: 999px;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.6);
}

.modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0d0d0de6;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modal-fadein 0.2s;
}

@keyframes modal-fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal {
    background: var(--marron);
    border: var(--borde);
    border-radius: var(--radius);
    box-shadow: 0 8px 48px 0 #000c, 0 2px 0 0 var(--rojo);
    max-width: 95vw;
    width: 370px;
    padding: 1.2rem 1.2rem 1.1rem 1.2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modal-pop 0.22s cubic-bezier(.36, 2.01, .54, .99);
}

@keyframes modal-pop {
    0% {
        transform: scale(0.8) translateY(40px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0.7rem;
    border: 2px solid var(--rojo);
    margin-bottom: 0.7rem;
}

.modal-nombre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--rojo);
    margin-bottom: 0.2rem;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-desc {
    color: var(--blanco);
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 0.7rem;
    text-align: center;
}

.modal-precios,
.modal-salsas {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.7rem;
}

.modal-precios .precio-btns {
    justify-content: center;
}

.modal-salsas {
    margin-bottom: 0.7rem;
}

.salsa-selector {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 0.3rem;
}

.salsa-btn {
    background: #181818;
    color: var(--blanco);
    border: 2px solid var(--rojo);
    border-radius: 1.2rem;
    font-size: 0.98rem;
    font-family: 'Inter', sans-serif;
    padding: 0.18rem 0.9rem 0.18rem 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: background 0.18s, border 0.18s, color 0.18s;
    outline: none;
}

.salsa-btn.selected,
.salsa-btn:hover {
    background: linear-gradient(90deg, var(--naranja), var(--rojo));
    color: var(--blanco);
    border-color: var(--amarillo);
}

.salsa-nivel {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    overflow: hidden;
}

.salsa-nivel-bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e 0%, #84cc16 22%, #eab308 45%, #f97316 68%, #dc2626 100%);
    transition: width 0.2s;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.35);
}

.modal-agregar {
    background: linear-gradient(90deg, var(--amarillo), var(--naranja));
    color: var(--rojo);
    border: none;
    border-radius: 1.2rem;
    font-size: 1.1rem;
    font-family: 'Bebas Neue', sans-serif;
    padding: 0.5rem 2.2rem;
    margin-top: 0.7rem;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 12px 0 #0006;
    transition: background 0.18s, color 0.18s;
}

.modal-agregar:hover {
    background: linear-gradient(90deg, var(--rojo), var(--amarillo));
    color: var(--blanco);
}

.modal-cerrar {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    background: none;
    border: none;
    color: var(--blanco);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.modal-cerrar:hover {
    opacity: 1;
    color: var(--rojo);
}

.simple-list {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .simple-list {
        grid-template-columns: 1fr 1fr;
    }
}

.simple-card {
    background: var(--marron);
    border: var(--borde);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.1rem 1.1rem 0.8rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    min-height: 90px;
}

.simple-nombre {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--rojo);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.04em;
}

.simple-precio,
.simple-ahorro {
    color: var(--amarillo);
    font-weight: bold;
    font-size: 1.05rem;
}

.simple-ahorro {
    color: var(--naranja2);
    font-size: 0.98rem;
}

.simple-nota {
    color: var(--amarillo);
    font-size: 0.82rem;
    line-height: 1.2;
    margin-top: 0.15rem;
    text-shadow: 0 0 6px #ffb800cc, 0 0 12px #ff8c00aa;
    letter-spacing: 0.02em;
    opacity: 0.98;
}

footer {
    background: var(--marron);
    color: var(--blanco);
    text-align: center;
    padding: 2.2rem 0 1.2rem 0;
    font-size: 1.05rem;
    margin-top: auto;
}

.footer-redes {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.7rem;
}

.footer-redes a {
    color: var(--amarillo);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.18s;
}

.footer-redes a:hover {
    color: var(--rojo);
}

.footer-horario {
    margin-bottom: 0.5rem;
    color: var(--amarillo);
}

.footer-tagline {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--rojo);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.footer-credit {
    margin-top: 0.7rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--texto-sec);
    font-size: 0.78rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    opacity: 0.82;
}

::-webkit-scrollbar {
    height: 8px;
    background: #181818;
}

::-webkit-scrollbar-thumb {
    background: var(--rojo);
    border-radius: 4px;
}

::selection {
    background: var(--rojo);
    color: var(--blanco);
}

@media (max-width: 500px) {
    .logo {
        font-size: 2.1rem;
    }

    .cat-title {
        font-size: 1.3rem;
    }

    .modal {
        width: 97vw;
        padding: 0.7rem 0.2rem;
    }

    .modal-img {
        height: 120px;
    }

    .modal-nombre {
        font-size: 1.1rem;
    }

    .modal-desc {
        font-size: 0.95rem;
    }

    .producto-card .producto-precios {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .producto-card .precio {
        order: -1;
        align-self: flex-start;
        margin-left: 0;
        margin-top: 0;
        font-size: 1.38rem;
        line-height: 1.05;
    }

    .producto-card .precio-btns {
        width: 100%;
        flex-direction: column;
        gap: 0.45rem;
    }

    .producto-card .precio-btn {
        width: 100%;
        min-width: 0;
        padding: 0.55rem 0.85rem;
        font-size: 1rem;
        white-space: nowrap;
    }
}

.modal-show {
    animation: modalShow .3s ease;
}

@keyframes modalShow {
    from {
        opacity: 0;
        transform: scale(.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ordenar-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #ff3131;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: .2s;
}

.ordenar-btn:hover {
    transform: scale(1.03);
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #111;
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    z-index: 9999;
    border: 1px solid #ff3131;
}

.nav-tab.active {
    background: #ff3131;
    color: #111;
}

.producto-card {
    transition:
        transform .2s,
        box-shadow .2s;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 49, 49, 0.4);
}

.kitchen-anton {
    font-family: 'Anton', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.kitchen-bebas {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Estilos específicos para la sección 'Sobre Nosotros' (más oscuro, bordes redondeados, marco imagen) */
section#sobre-nosotros {
    background: linear-gradient(180deg, rgba(20,6,6,0.92), rgba(8,8,10,0.96));
    border-radius: 16px;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 8px 28px rgba(0,0,0,0.6);
}

section#sobre-nosotros .about-content {
    gap: 1.2rem;
    align-items: center;
}

/* Marco visible para la imagen, con color de acento y misma curvatura */
section#sobre-nosotros .about-image {
    border: 3px solid var(--rojo);
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.6);
    width: 320px;
    height: 220px;
    object-fit: cover;
}

@media (max-width: 800px) {
    section#sobre-nosotros {
        padding: 0.8rem;
        border-radius: 12px;
    }
    section#sobre-nosotros .about-image {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
}

.why-section {
    background: linear-gradient(180deg, rgba(16, 18, 23, 0.96), rgba(9, 10, 14, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 59, 48, 0.08);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 0.9rem;
    border-radius: 0.9rem;
    background: linear-gradient(90deg, rgba(255, 59, 48, 0.08), rgba(255, 184, 0, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--texto);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: inset 0 0 0 1px rgba(255, 59, 48, 0.04);
}

.why-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(180deg, #2ecc71, #16a34a);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

@media (min-width: 700px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1000px) {
    .why-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .why-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        min-height: 92px;
        gap: 0.45rem;
    }
}

/* Reduce vertical gap between nav and first section on small screens */
@media (max-width: 800px) {
    .glass-nav {
        margin-bottom: 0.8rem; /* previously 2.2rem */
    }
    section#sobre-nosotros {
        margin-top: 0.2rem;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }
}

/* Stronger reduction for very tight mobile spacing */
@media (max-width: 800px) {
    .glass-nav {
        margin-bottom: 0 !important;
    }
    section#sobre-nosotros {
        margin-top: -0.6rem !important; /* pull up to overlap slightly */
        padding-top: 0.6rem;
    }
}

/* ===== Branding upgrade: typography, hierarchy, premium UI ===== */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    line-height: 1.55;
    letter-spacing: 0.01em;
}

.header-center-content .logo {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.15em;
    line-height: 0.92;
    margin-top: 0.05rem;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.header-center-content .kitchen-anton {
    font-family: 'Anton', sans-serif;
    color: #fff;
    font-size: 1em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.55), 0 0 28px rgba(255, 59, 48, 0.18), 2px 2px 0 #000;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
}

.header-center-content .kitchen-bebas {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--amarillo);
    font-size: 1em;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.18), 1px 1px 0 #000;
}

.sub {
    font-size: clamp(0.72rem, 1.4vw, 0.95rem);
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--texto-sec);
    opacity: 0.92;
}

.tagline {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 59, 48, 0.28), 0 0 2px rgba(255, 255, 255, 0.08);
}

.nav-tab,
.precio-btn,
.salsa-btn,
.modal-agregar,
.ordenar-btn,
.sidebar-toggle,
.sidebar-close,
.map-go-btn {
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.nav-tab {
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-tab.active,
.nav-tab:hover {
    color: #fff;
    background: linear-gradient(90deg, rgba(255, 59, 48, 0.22), rgba(255, 184, 0, 0.12));
    box-shadow: 0 8px 24px rgba(255, 59, 48, 0.12);
}

.producto-card,
.salsa-card,
.simple-card {
    background: linear-gradient(180deg, rgba(25, 27, 33, 0.98) 0%, rgba(14, 16, 20, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 59, 48, 0.08);
}

.producto-card:hover,
.salsa-card:hover,
.simple-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 59, 48, 0.45);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 59, 48, 0.22), 0 0 24px rgba(255, 59, 48, 0.14);
}

.producto-nombre,
.salsa-card-name,
.simple-nombre,
.cat-title {
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.producto-nombre,
.salsa-card-name,
.simple-nombre {
    text-shadow: 0 0 12px rgba(255, 59, 48, 0.15);
}

.precio,
.simple-precio,
.simple-ahorro {
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.18);
}

.precio-btn,
.salsa-btn,
.modal-agregar,
.ordenar-btn,
.sidebar-toggle,
.sidebar-close,
.map-go-btn {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.26);
}

.precio-btn:hover,
.salsa-btn:hover,
.modal-agregar:hover,
.ordenar-btn:hover,
.sidebar-toggle:hover,
.sidebar-close:hover,
.map-go-btn:hover {
    transform: translateY(-1px) scale(1.01);
}

.precio-btn,
.salsa-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.modal,
.producto-card,
.simple-card,
.salsa-card {
    border-radius: 1.35rem;
}

.combo-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 1rem;
    border: 1px solid rgba(255, 59, 48, 0.28);
    background: linear-gradient(180deg, rgba(22, 24, 30, 0.98) 0%, rgba(12, 14, 18, 0.98) 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 184, 0, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.combo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 18%, rgba(255, 59, 48, 0.18), transparent 38%), radial-gradient(circle at 82% 16%, rgba(255, 184, 0, 0.12), transparent 34%);
    pointer-events: none;
}

.combo-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(255, 184, 0, 0.45);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 59, 48, 0.24), 0 0 28px rgba(255, 59, 48, 0.18), 0 0 18px rgba(255, 184, 0, 0.12);
}

.combo-topline {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.combo-sticker,
.combo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.06em;
    line-height: 1;
}

.combo-sticker {
    padding: 0.42rem 0.72rem;
    background: linear-gradient(90deg, rgba(255, 59, 48, 0.95), rgba(255, 184, 0, 0.92));
    color: #0f1115;
    box-shadow: 0 0 16px rgba(255, 59, 48, 0.28);
    font-size: 1rem;
}

.combo-sticker-muted {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 184, 0, 0.14));
    color: var(--texto);
}

.combo-chip {
    padding: 0.36rem 0.66rem;
    border: 1px solid rgba(255, 184, 0, 0.16);
    color: var(--amarillo);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.86rem;
}

.combo-body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 98px 1fr;
    gap: 0.95rem;
    align-items: stretch;
}

.combo-visual {
    position: relative;
    min-height: 176px;
    border-radius: 1.05rem;
    overflow: hidden;
    background: radial-gradient(circle at 30% 28%, rgba(255, 184, 0, 0.18), transparent 32%), linear-gradient(180deg, rgba(255, 59, 48, 0.16), rgba(12, 14, 18, 0.88));
    border: 1px solid rgba(255, 59, 48, 0.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.5rem;
    text-align: center;
}

.combo-visual-glow {
    position: absolute;
    inset: 18% 12% auto;
    height: 64%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.44), rgba(255, 184, 0, 0.16), transparent 70%);
    filter: blur(8px);
    opacity: 0.95;
}

.combo-emoji {
    position: relative;
    z-index: 1;
    font-size: 2.8rem;
    line-height: 1;
    text-shadow: 0 0 14px rgba(255, 184, 0, 0.24);
}

.combo-visual-text {
    position: relative;
    z-index: 1;
    margin-top: 0.45rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: var(--texto);
    opacity: 0.88;
}

.combo-copy {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}

.combo-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.55rem, 4.2vw, 2.05rem);
    line-height: 0.95;
    letter-spacing: 0.06em;
    color: var(--texto);
    text-shadow: 0 0 14px rgba(255, 59, 48, 0.16);
}

.combo-items {
    margin: 0;
    padding: 0 0 0 1rem;
    display: grid;
    gap: 0.22rem;
    color: var(--texto-sec);
    font-size: 0.95rem;
    line-height: 1.25;
}

.combo-items li::marker {
    color: var(--amarillo);
}

.combo-bottom {
    margin-top: auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 0.8rem;
}

.combo-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.combo-price-label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--texto-sec);
}

.combo-precio {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 5vw, 2.55rem);
    line-height: 0.95;
    color: var(--amarillo);
    text-shadow: 0 0 12px rgba(255, 184, 0, 0.34), 0 0 24px rgba(255, 59, 48, 0.12);
}

.combo-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 59, 48, 0.96), rgba(255, 184, 0, 0.9));
    color: #0f1115;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(255, 59, 48, 0.2);
    white-space: nowrap;
}

.combo-card:hover .combo-action {
    box-shadow: 0 12px 28px rgba(255, 59, 48, 0.28), 0 0 18px rgba(255, 184, 0, 0.14);
}

.combo-section-note {
    margin-top: 0.75rem;
    color: var(--texto-sec);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

.combo-legend {
    margin: 0.1rem 0 1.1rem;
    padding: 0.75rem 0.95rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 59, 48, 0.14);
    background: linear-gradient(90deg, rgba(255, 59, 48, 0.12), rgba(255, 184, 0, 0.06));
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.combo-legend-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.18rem;
    color: var(--amarillo);
    letter-spacing: 0.06em;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.22);
}

.combo-legend-sub {
    color: var(--texto-sec);
    font-size: 0.86rem;
}

@media (max-width: 600px) {
    .header-center-content .logo {
        font-size: clamp(2rem, 10vw, 3.2rem);
        gap: 0.08em;
    }

    .header-center-content .kitchen-anton {
        letter-spacing: 0.06em;
    }

    .header-center-content .kitchen-bebas {
        letter-spacing: 0.12em;
    }

    .tagline {
        font-size: clamp(0.92rem, 4vw, 1.1rem);
    }

    .sidebar-map-frame {
        height: 120px;
    }

    .sidebar-map-btn {
        right: 0.48rem;
        bottom: 0.48rem;
        padding: 0.34rem 0.62rem;
        font-size: 0.84rem;
    }

    .combo-card {
        padding: 0.88rem;
    }

    .combo-body {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .combo-visual {
        min-height: 112px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.85rem;
        text-align: left;
        padding: 0.8rem 0.9rem;
    }

    .combo-visual-text {
        margin-top: 0;
    }

    .combo-bottom {
        align-items: center;
    }

    .combo-action {
        min-height: 40px;
        padding: 0.5rem 0.8rem;
        font-size: 0.92rem;
    }

    .combo-legend {
        padding: 0.68rem 0.82rem;
    }
}

/* ===== Emil-inspired visual polish ===== */
:root {
    --fondo: #120d0a;
    --fondo-sec: #1a120f;
    --rojo: #d94f2b;
    --rojo-hover: #ef6b3f;
    --amarillo: #f4bf5a;
    --texto: #fff8ef;
    --texto-sec: #d8c6b7;
    --borde: rgba(255, 235, 214, 0.08);
    --glass: rgba(25, 16, 12, 0.78);
    --glass-blur: blur(18px);
    --neon-red: 0 0 18px 2px rgba(217, 79, 43, 0.26);
    --neon-yellow: 0 0 14px 2px rgba(244, 191, 90, 0.18);
}

html {
    background:
        radial-gradient(circle at 12% 18%, rgba(217, 79, 43, 0.14), transparent 26%),
        radial-gradient(circle at 82% 8%, rgba(244, 191, 90, 0.12), transparent 24%),
        radial-gradient(circle at 88% 82%, rgba(255, 164, 104, 0.08), transparent 28%),
        linear-gradient(180deg, #100b09 0%, #16100d 48%, #120d0a 100%);
}

body {
    background:
        linear-gradient(180deg, rgba(16, 11, 9, 0.9), rgba(16, 11, 9, 0.96)),
        radial-gradient(circle at top center, rgba(217, 79, 43, 0.08), transparent 32%);
    color: var(--texto);
    line-height: 1.6;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
}

body::before {
    top: -8rem;
    right: -10rem;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(circle, rgba(217, 79, 43, 0.14), transparent 68%);
    filter: blur(14px);
}

body::after {
    left: -8rem;
    bottom: -10rem;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, rgba(244, 191, 90, 0.08), transparent 70%);
    filter: blur(18px);
}

.ambient-bg {
    opacity: 0.68;
    filter: blur(42px) brightness(0.92) saturate(1.02);
}

.glass-header,
.glass-nav,
.glass-footer {
    z-index: 5;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 77, 61, 0.08);
}

.glass-header,
.glass-footer {
    position: relative;
}

.glass-nav {
    position: sticky;
    top: 0;
    z-index: 90;
}

header.glass-header {
    background: linear-gradient(180deg, rgba(42, 24, 16, 0.94), rgba(15, 11, 10, 0.98));
    border-radius: 0 0 1.2rem 1.2rem;
    padding: 1rem 1rem 0.85rem;
}

.glass-nav {
    background: linear-gradient(180deg, rgba(38, 24, 18, 0.9), rgba(18, 12, 10, 0.96));
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.nav-tabs {
    gap: 0.65rem;
    padding: 0.35rem 0.75rem;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
}

.nav-tab {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.72rem 1rem 0.62rem;
    background: rgba(255, 248, 239, 0.04);
    color: var(--texto-sec);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.nav-tab.active,
.nav-tab:hover {
    color: #fff;
    border-color: rgba(244, 191, 90, 0.24);
    background: linear-gradient(135deg, rgba(217, 79, 43, 0.18), rgba(244, 191, 90, 0.14));
    box-shadow: 0 10px 24px rgba(217, 79, 43, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

main {
    max-width: 1160px;
    padding: 0 1rem 5rem;
}

section {
    margin-bottom: 2.8rem;
}

.cat-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.1rem;
    color: #fff;
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    text-shadow: 0 0 16px rgba(217, 79, 43, 0.16);
}

.cat-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(244, 191, 90, 0.42), transparent);
}

.productos-grid,
.simple-list,
.salsas-grid,
.why-grid {
    gap: 1.1rem;
}

.producto-card,
.simple-card,
.salsa-card,
.why-section,
section#sobre-nosotros,
.modal,
.toast,
.combo-card {
    border: 1px solid rgba(255, 235, 214, 0.08);
    background: linear-gradient(180deg, rgba(31, 20, 16, 0.96), rgba(16, 11, 9, 0.96));
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(217, 79, 43, 0.08);
}

.producto-card,
.simple-card,
.salsa-card,
.combo-card {
    overflow: hidden;
}

.producto-card::before,
.simple-card::before,
.salsa-card::before,
.combo-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(217, 79, 43, 0.96), rgba(244, 191, 90, 0.85), transparent 92%);
    opacity: 0.9;
    pointer-events: none;
}

.producto-card {
    min-height: 360px;
    transform: translateZ(0);
}

.producto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.56), 0 0 0 1px rgba(217, 79, 43, 0.18), 0 0 32px rgba(217, 79, 43, 0.12);
}

.producto-img {
    height: 184px;
    border-bottom-color: rgba(244, 191, 90, 0.32);
    filter: saturate(1.08) contrast(1.03);
}

.producto-info {
    padding: 1.05rem 1.05rem 0.85rem;
}

.producto-nombre,
.simple-nombre,
.salsa-card-name,
.combo-name,
.footer-tagline,
.kitchen-anton,
.kitchen-bebas {
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.producto-desc,
.simple-precio,
.simple-ahorro,
.salsa-card-desc,
.combo-items,
.footer-horario,
.footer-credit {
    color: var(--texto-sec);
}

.precio-btn {
    border-radius: 999px;
    background: rgba(255, 248, 239, 0.04);
    border-color: rgba(244, 191, 90, 0.24);
    color: var(--texto);
}

.precio-btn.selected,
.precio-btn:hover,
.ordenar-btn,
.modal-agregar {
    background: linear-gradient(135deg, var(--rojo), var(--amarillo));
    color: #0b0d11;
    border-color: transparent;
}

.precio,
.simple-precio,
.simple-ahorro,
.combo-precio {
    color: var(--amarillo);
    text-shadow: 0 0 14px rgba(244, 191, 90, 0.18);
}

.simple-card {
    position: relative;
    min-height: 118px;
}

.simple-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(217, 79, 43, 0.2);
}

.simple-card .producto-img {
    height: 150px;
}

.combo-card {
    border-radius: 1.4rem;
}

.combo-visual {
    border-color: rgba(244, 191, 90, 0.16);
}

.combo-action {
    color: #0b0d11;
    box-shadow: 0 12px 26px rgba(217, 79, 43, 0.14);
}

.why-section,
section#sobre-nosotros {
    border-radius: 1.2rem;
}

.why-item {
    background: linear-gradient(135deg, rgba(217, 79, 43, 0.08), rgba(244, 191, 90, 0.08));
}

.sidebar-left {
    background: rgba(23, 15, 12, 0.9);
    border-right: 1px solid rgba(255, 235, 214, 0.06);
    box-shadow: 14px 0 40px rgba(0, 0, 0, 0.36);
}

.sidebar-toggle,
.sidebar-close {
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rojo), #ef8c4a);
}

.sidebar-map-card {
    border-color: rgba(244, 191, 90, 0.12);
}

.glass-modal,
.modal {
    border-radius: 1.4rem;
}

.modal-bg {
    background: rgba(10, 6, 4, 0.74);
    backdrop-filter: blur(10px);
}

.modal-img {
    border-radius: 1rem;
}

.modal-nombre {
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.08em;
}

.modal-desc {
    color: var(--texto-sec);
}

.ordenar-btn {
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 16px 30px rgba(217, 79, 43, 0.16);
}

.toast {
    border-radius: 999px;
    background: rgba(22, 14, 10, 0.92);
    color: #fff;
    padding: 0.9rem 1.05rem;
    border-color: rgba(244, 191, 90, 0.24);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
}

.glass-footer {
    background: linear-gradient(180deg, rgba(31, 18, 13, 0.9), rgba(15, 10, 8, 0.96));
    padding: 1.8rem 1rem 1.2rem;
}

.footer-tagline {
    color: #fff;
    font-size: 1.08rem;
}

.footer-credit {
    border-top-color: rgba(255, 235, 214, 0.06);
}

@media (max-width: 900px) {
    main {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .cat-title {
        gap: 0.55rem;
    }

    .cat-title::after {
        display: none;
    }
}

@media (max-width: 600px) {
    header.glass-header {
        padding: 0.85rem 0.75rem 0.75rem;
    }

    .glass-nav {
        margin-bottom: 1rem;
    }

    .nav-tabs {
        padding-inline: 0.5rem;
        justify-content: center;

    /* More compact header/logo for small devices */
    .kaiju-header-logo {
        width: 56px;
        max-width: 32vw;
        padding: 0.35rem;
    }

    .header-center-content .logo {
        font-size: 1.15em;
    }

    .tagline {
        font-size: 0.85rem;
    }

    header {
        min-height: 72px;
        padding-top: env(safe-area-inset-top, 0.8rem);
    }

    /* Ensure nav tabs wrap on very small screens */
    .nav-tabs {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    /* Slightly tighter product card spacing */
    .productos-grid {
        gap: 1rem;
    }
    }

    .nav-tab {
        padding: 0.62rem 0.9rem 0.54rem;
    }

    .producto-card,
    .simple-card,
    .salsa-card,
    .combo-card {
        border-radius: 1.1rem;
    }

    .producto-img,
    .simple-card .producto-img {
        height: 150px;
    }

    .producto-info {
        padding: 0.95rem 0.95rem 0.8rem;
    }

    .ordenar-btn {
        padding: 0.95rem 1rem;
    }

    .toast {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.9rem;
        width: auto;
        text-align: center;
    }
}

/* Hard overrides for small screens: keep the page inside the viewport */
@media (max-width: 900px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    header.glass-header,
    .glass-nav,
    .glass-footer,
    nav,
    main {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    nav {
        overflow-x: hidden;
        left: 0;
        top: auto;
    }

    .nav-tabs {
        min-width: 0;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-tab {
        padding: 0.5rem 0.8rem;
        font-size: 1rem;
    }

    .logo-wrap {
        flex-direction: column;
        align-items: center;
        gap: 0.45rem;
    }

    .kaiju-header-logo {
        width: 64px;
        min-width: 0;
        max-width: 24vw;
        padding: 0.3rem;
    }

    .header-center-content .logo {
        font-size: 1.25em;
    }

    .sub,
    .tagline {
        font-size: 0.9rem;
    }

    .precio-btn,
.salsa-btn,
.modal-agregar,
.ordenar-btn,
.producto-card,
.modal,
.modal-bg,
.nav-tab,
.combo-action,
.combo-card {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
}