@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --engel-red: #e61e23;
    --engel-red-dark: #b81216;
    --engel-orange: #ff7a18;
    --engel-yellow: #ffcc29;
    --engel-cream: #f4efe9;
    --engel-bg: #f2efea;
    --engel-surface: #ffffff;
    --engel-text: #171717;
    --engel-text-soft: #666f7b;
    --engel-border: rgba(17, 17, 17, 0.08);
    --engel-shadow-lg: 0 24px 60px rgba(20, 20, 20, 0.10);
    --engel-shadow-md: 0 14px 30px rgba(20, 20, 20, 0.08);
    --engel-shadow-sm: 0 8px 18px rgba(20, 20, 20, 0.06);
    --engel-radius-xl: 34px;
    --engel-radius-lg: 26px;
    --engel-radius-md: 20px;
    --engel-radius-sm: 16px;
    --engel-transition: 260ms cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

.bodyindex {
    min-height: 100vh;
    padding: 84px 16px 110px;
    font-family: "Outfit", sans-serif;
    color: var(--engel-text);
    background:
        radial-gradient(circle at top left, rgba(255, 122, 24, 0.10), transparent 22%),
        linear-gradient(180deg, #f7f3ee 0%, #f2efea 100%);
    overflow-x: hidden;
}

.bodymenu {
    padding: 2px;
    padding-top: 70px;
    font-family: "Outfit", sans-serif;
    background-color: #f8f9fa;
    margin-bottom: 120%;
    transition: background-color 0.5s ease, margin-bottom 0.5s ease;
}

h1,
h2,
h3,
p {
    margin: 0;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.option {
    flex-basis: calc(30% - 20px);
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.option:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
}

.option a {
    text-decoration: none;
    color: #e61e23;
    font-size: 29px;
    font-family: "Outfit", sans-serif;
    font-weight: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.option span {
    position: absolute;
    margin-top: 10px;
}

.option img {
    max-width: 119%;
    max-height: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0px 14px 17px 0px #0000002b, 0px 4px 11px 0px #ff000075;
}

#logo-container {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    top: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#logo {
    width: 40px;
    height: auto;
}

.productos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    margin-top: 1%;
}

.producto {
    display: flex;
    width: 100%;
    max-width: 300px;
    margin: 2px;
    padding: 12px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 11px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.5s ease, transform 0.5s ease, background-color 0.5s ease, color 0.5s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
}

.producto:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.producto img {
    margin-bottom: -5%;
    max-width: 100%;
    border-radius: 20px;
    transition: border-radius 0.5s ease;
}

.producto span {
    display: block;
    margin-top: 0px;
    font-weight: bold;
    color: #333;
    transition: color 0.5s ease;
}

.number-input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 3px;
    transition: margin-top 0.5s ease;
}

input[type="number"] {
    width: 50%;
    height: 18px;
    text-align: center;
    margin: 0 5px;
    border-radius: 7px;
    border: 1px solid #ccc;
    padding: 5px;
    -moz-appearance: textfield;
    transition: width 0.5s ease;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-input-container .arrow {
    width: 40px;
    height: 30px;
    font-size: 25px;
    cursor: pointer;
    border-radius: 6px;
    background-color: #e61e23;
    color: #fff;
    border: none;
    margin: 0;
    transition: background-color 0.3s ease;
}

.number-input-container .arrow:hover {
    background-color: #333;
}

.agregar {
    width: 100%;
    height: 32px;
    margin-top: 9px;
    margin-bottom: 0%;
    border-radius: 7px;
    background-color: #e61e23;
    color: #fff;
    border: none;
    padding: 1px 8px;
    cursor: pointer;
    transition: background-color 0.5s ease;
    font-weight: bold;
}

.noseleccionado {
    width: 13rem;
    height: 2.4rem;
    margin-top: 15px;
    border-radius: 12px;
    background-color: #fab419;
    color: #e61e23;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.5s ease;
    font-weight: bold;
}

.agregar:hover {
    background-color: #333;
}

.carrito {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding-top: 1rem;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.5s ease, background-color 0.5s ease;
}

#lista-carrito {
    list-style: none;
    padding: 0;
    transition: padding 0.5s ease;
}

#lista-carrito li {
    margin-bottom: 10px;
    animation: slideIn 0.5s ease;
    transition: margin-bottom 0.5s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.acciones-carrito {
    margin-top: 10px;
    transition: margin-top 0.5s ease;
}

#finalizar-pedido,
#limpiar-carrito,
#quiero-delivery {
    margin-top: 2px;
    border-radius: 12px;
    background-color: #25d366;
    color: #0c0c0c;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.5s ease, transform 0.5s ease;
}

#finalizar-pedido:hover,
#quiero-delivery:hover {
    background-color: #333;
    color: #fff;
    transform: scale(1.05);
}

#limpiar-carrito {
    margin-top: 2px;
    border-radius: 12px;
    background-color: #e61e23;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.5s ease, transform 0.5s ease;
}

#limpiar-carrito:hover {
    background-color: #333;
    transform: scale(1.05);
}

.producto .ingredientes-mensaje {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease, visibility 0.5s ease;
}

.producto:hover .ingredientes-mensaje {
    opacity: 1;
    visibility: visible;
    max-height: 100px;
    font-size: 13px;
    font-weight: 600;
}

#total {
    text-align: center;
    margin-top: -0.5rem;
    margin-bottom: 11%;
    padding: 6px;
    border-radius: 10px;
    background-color: #ffabab;
}

.carritoarmar {
    text-align: right;
    font-weight: 1000;
}

#opciones-salsa-2 {
    display: flex;
    width: 100%;
    max-width: 300px;
    margin: 10px;
    padding: 15px;
    padding-top: 0%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.5s ease, transform 0.5s ease, background-color 0.5s ease, color 0.5s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

#opciones-salsa {
    display: flex;
    width: 100%;
    max-width: 300px;
    margin: 0px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.5s ease, transform 0.5s ease, background-color 0.5s ease, color 0.5s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

#opciones-salsa h3 {
    margin-top: 0;
}

#opciones-salsa label {
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
}

.salsa {
    padding-left: 2px;
    padding-right: 2px;
}

.salsita {
    width: 61px;
    margin-left: 7px;
    margin-top: 11px;
    position: absolute;
    z-index: 0;
}

#opciones-salsa input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 66px;
    height: 56px;
    border: 2px solid #ccc;
    border-radius: 19%;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

#opciones-salsa input[type="radio"]:checked {
    border-color: #e61e23;
    position: relative;
    z-index: 13;
    box-shadow: 0px 2px 8px #ff990096, 0px 3px 14px 3px #ff00007a;
}

/* HOME NUEVA */

.app-home {
    width: min(980px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: var(--engel-shadow-sm);
    border-radius: 24px;
    padding: 14px 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--engel-text);
    min-width: 0;
}

.brand-logo {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    padding: 7px;
    box-shadow: var(--engel-shadow-sm);
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-overline {
    font-size: 0.78rem;
    color: var(--engel-red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.brand-text strong {
    font-size: 1.1rem;
    line-height: 1.1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-action,
.mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #202020;
    background: #fff;
    border: 1px solid var(--engel-border);
    box-shadow: var(--engel-shadow-sm);
    transition: transform var(--engel-transition), box-shadow var(--engel-transition);
}

.mini-action:hover,
.mini-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--engel-shadow-md);
}

.mini-action {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 900;
}

.mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
}

.mini-icon svg {
    width: 22px;
    height: 22px;
}

.hero-card {
    position: relative;
    min-height: 540px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--engel-shadow-lg);
    background: #1d1d1d;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.55) 100%),
        radial-gradient(circle at top center, rgba(255,255,255,0.12), transparent 22%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 540px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    gap: 16px;
    color: #fff;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.status-pill,
.sub-pill {
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 900;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.status-pill {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.14);
}

.sub-pill {
    background: rgba(255, 122, 24, 0.22);
    border: 1px solid rgba(255,255,255,0.10);
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #38d66b;
    margin-right: 10px;
    box-shadow: 0 0 0 5px rgba(56,214,107,0.16);
}

.hero-heading {
    max-width: 620px;
    font-size: clamp(2.25rem, 7vw, 4.5rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    font-weight: 1000;
    text-transform: uppercase;
    text-shadow: 0 10px 28px rgba(0,0,0,0.26);
}

.hero-copy {
    max-width: 540px;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.cta-primary,
.cta-secondary {
    min-height: 60px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 1000;
    transition: transform var(--engel-transition), box-shadow var(--engel-transition), background var(--engel-transition);
}

.cta-primary {
    background: linear-gradient(135deg, #ff8b24 0%, #ff6c1b 100%);
    color: #fff;
    box-shadow: 0 18px 34px rgba(255, 108, 27, 0.28);
    padding: 0 28px;
    min-width: 250px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 40px rgba(255, 108, 27, 0.34);
}

.cta-secondary {
    background: rgba(255,255,255,0.90);
    color: #1f1f1f;
    padding: 0 24px;
    min-width: 210px;
    box-shadow: var(--engel-shadow-sm);
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--engel-shadow-md);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: var(--engel-shadow-md);
    border-radius: 28px;
    overflow: hidden;
    transition: transform var(--engel-transition), box-shadow var(--engel-transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--engel-shadow-lg);
}

.feature-thumb {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.feature-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.feature-card:hover .feature-thumb img {
    transform: scale(1.06);
}

.feature-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: #171717;
    font-size: 0.82rem;
    font-weight: 900;
    box-shadow: var(--engel-shadow-sm);
}

.feature-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-body h2 {
    font-size: 1.45rem;
    line-height: 1.06;
    color: #161616;
}

.feature-body p {
    color: var(--engel-text-soft);
    line-height: 1.5;
    font-weight: 600;
}

.quick-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.quick-strip::-webkit-scrollbar {
    display: none;
}

.quick-pill {
    flex: 0 0 auto;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    color: #171717;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: var(--engel-shadow-sm);
    font-weight: 900;
    transition: transform var(--engel-transition), box-shadow var(--engel-transition);
}

.quick-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--engel-shadow-md);
}

.quick-icon {
    font-size: 1.15rem;
}

.bottom-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 950;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 6px;
    padding: 10px 8px max(10px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 28px;
    box-shadow: 0 24px 44px rgba(20,20,20,0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    text-decoration: none;
    color: #8c8c8c;
    font-size: 0.72rem;
    font-weight: 900;
    min-height: 64px;
    transition: color var(--engel-transition), transform var(--engel-transition);
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: var(--engel-red);
}

.bottom-nav-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav-icon svg {
    width: 24px;
    height: 24px;
}

.bottom-nav-main {
    position: relative;
}

.bottom-nav-main-circle {
    width: 66px;
    height: 66px;
    margin-top: -30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5b2618 0%, #3b170f 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 28px rgba(59, 23, 15, 0.28);
    border: 6px solid rgba(255,255,255,0.96);
}

.bottom-nav-main-circle svg {
    width: 28px;
    height: 28px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.delay-1 {
    transition-delay: 100ms;
}

.reveal.delay-2 {
    transition-delay: 180ms;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a:focus,
button:focus,
input:focus,
[role="button"]:focus {
    outline: 2px solid #4285F4;
    outline-offset: 2px;
}

.no-outline:focus {
    outline: none;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bodyindex {
        padding: 78px 12px 108px;
    }

    .option {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        flex-basis: calc(50% - 20px);
        min-width: 54%;
        text-align: center;
    }

    #opciones-salsa,
    #opciones-salsa-2 {
        max-width: 100%;
        margin: 10px 0;
    }

    .salsa {
        padding: 2px;
    }

    #opciones-salsa input[type="radio"] {
        width: 50px;
        height: 40px;
    }

    .salsita {
        width: 45px;
        margin-left: 5px;
        margin-top: 8px;
    }

    .home-header {
        padding: 12px;
        border-radius: 20px;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .brand-text strong {
        font-size: 1rem;
    }

    .mini-action {
        min-height: 40px;
        padding: 0 12px;
        font-size: 0.9rem;
    }

    .mini-icon {
        width: 40px;
        height: 40px;
    }

    .hero-card {
        min-height: 500px;
        border-radius: 28px;
    }

    .hero-content {
        min-height: 500px;
        padding: 18px;
    }

    .hero-heading {
        font-size: clamp(2rem, 10vw, 3.3rem);
    }

    .hero-copy {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        min-width: 0;
    }

    .feature-thumb {
        height: 210px;
    }

    .feature-body {
        padding: 18px;
    }

    .bottom-nav {
        left: 8px;
        right: 8px;
        bottom: 8px;
        border-radius: 24px;
        padding-top: 8px;
    }

    .bottom-nav-item {
        font-size: 0.66rem;
    }

    .bottom-nav-main-circle {
        width: 60px;
        height: 60px;
        margin-top: -22px;
    }
}

@media (max-width: 480px) {
    .producto {
        width: calc(90% - 20px);
    }

    .option {
        flex-basis: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-card {
        min-height: 470px;
    }

    .hero-content {
        min-height: 470px;
    }

    .hero-heading {
        line-height: 0.96;
    }

    .feature-body h2 {
        font-size: 1.28rem;
    }

    .bottom-nav {
        gap: 2px;
    }

    .bottom-nav-item span:last-child {
        font-size: 0.63rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .option {
        flex-basis: calc(25% - 40px);
    }

    .producto {
        max-width: 250px;
    }
}

@media (prefers-color-scheme: dark) {
    .bodyindex,
    .bodymenu {
        color: initial;
    }

    .option,
    .producto,
    .carrito,
    #loginPopup,
    #profile-menu.menu-visible {
        background-color: #ffffff;
        border-color: initial;
    }

    .option a,
    .producto span,
    #user-name {
        color: initial;
    }

    .option img,
    .producto img {
        opacity: 1;
    }

    input[type="number"] {
        background-color: #ffffff;
        color: initial;
        border-color: #ccc;
    }

    .show-login-button {
        background-color: initial;
        color: initial;
    }

    #total {
        background-color: #ffabab;
        color: initial;
    }

    #finalizar-pedido,
    #quiero-delivery {
        background-color: #25d366;
        color: #0c0c0c;
    }

    #limpiar-carrito {
        background-color: #e61e23;
    }

    #loginPopup {
        background-color: #ffffff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    #loginButton,
    #skipLoginButton {
        background-color: initial;
        color: initial;
        border-color: initial;
    }

    #opciones-salsa,
    #opciones-salsa-2 {
        background-color: #ffffff;
        border-color: #ddd;
    }

    #opciones-salsa input[type="radio"] {
        border-color: #ccc;
    }

    #opciones-salsa input[type="radio"]:checked {
        border-color: #e61e23;
        box-shadow: 0px 2px 8px #ff990096, 0px 3px 14px 3px #ff00007a;
    }
}

.status-pill.open {
    background: rgba(56, 214, 107, 0.16);
    border: 1px solid rgba(255,255,255,0.14);
    color: #ffffff;
}

.status-pill.open .status-dot {
    background: #38d66b;
    box-shadow: 0 0 0 5px rgba(56,214,107,0.16);
}

.status-pill.closed {
    background: rgba(230, 30, 35, 0.18);
    border: 1px solid rgba(255,255,255,0.14);
    color: #ffffff;
}

.status-pill.closed .status-dot {
    background: #ff4d4f;
    box-shadow: 0 0 0 5px rgba(255,77,79,0.16);
}