/* ==========================================
   1. ESTILOS GLOBALES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
}

body {
    font-family: sans-serif;
}

html {
    scroll-behavior: smooth;
}
section[id] {
    scroll-margin-top: 100px;
}

/* ==========================================
   2. SECCIÓN INICIO / HERO
   ========================================== */
.inicio {
    position: relative;
    text-align: center;
    height: 85vh;
    width: 100%;
    padding-top: 50px;
    background: linear-gradient(135deg, #ed08087a, #e3069273);
    overflow: hidden;
}

.imagen {
    position: absolute;
    top: 0;
    right: -200px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.imagen img {
    width: 1900px;
    height: 100%;
    object-fit: cover;
    object-position: left;
    opacity: 0.7;
    filter: brightness(65%) blur(1.5px);
}

.menu {
    position: fixed;
    top: 35px;
    left: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1300px;
    padding: 0 10px;
    background: #dddddd38;
    border-radius: 15px;
    box-shadow: inset 6px 6px 12px rgba(179, 186, 197, 0.6), 
                inset -6px -6px 12px rgba(255, 255, 255, 0.5);
    z-index: 200;
}

.logo {
    display: flex;
    margin: 10px 0 10px 20px;
    padding: 4px;
    background: #dddddd38;
    border-radius: 12px;
    box-shadow: inset 5px 5px 5px #cd646e, inset -5px -5px 5px #F58994;
}

.logo img {
    width: 50px;
    height: auto;
    display: block;
}

.items ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    padding: 20px 60px;
    border-radius: 10px;
    box-shadow: inset 5px 5px 5px #cd646e, inset -5px -5px 5px #F58994;
}

.items ul li a {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0px 1px 5px #000000;
}

.cita {
    margin: 20px;
}

.uno {
    padding: 12px 25px;
    background: #ffffff9c;
    border: none;
    border-radius: 12px;
    box-shadow: 0px 1px 20px #89898992;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.uno:hover {
    transform: translateY(-3px);
}

.bienvenida {
    position: relative;
    padding: 165px 60px 60px;
    text-align: left;
    color: #ffffff;
    z-index: 2;
}

.bienvenida h1 {
    font-size: 36px;
}

.bienvenida p {
    margin-top: 12px;
    font-size: 24px;
}

.dos {
    margin-top: 80px;
    padding: 15px 80px;
    background: #DE132A;
    color: #ffffff;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    box-shadow: 0px 1px 10px #ff4343;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dos:hover {
    transform: translateY(-3px);
    background: #ff0048;
}

/* ==========================================
   3. SECCIÓN PRODUCTOS / CARRUSEL
   ========================================== */
.productos {
    position: relative;
    width: 100%;
    min-height: 40vh;
    padding: 30px 0;
    background: #e8d0d4;
    text-align: center;
    overflow: hidden;
    border-bottom: 3px solid #d43333;
}

.contenido {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-tarjetas 25s linear infinite;
    will-change: transform;
}

.productos:hover .contenido {
    animation-play-state: paused;
}

.tarjeta {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 310px;
    padding: 30px 25px;
    background: #e8d0d4;
    border-radius: 20px;
    flex-shrink: 0;
    box-shadow: 10px 10px 20px rgba(170, 110, 115, 0.5), 
                -10px -10px 20px rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 25px rgba(170, 110, 115, 0.6), 
                -12px -12px 25px rgba(255, 255, 255, 0.8);
}

.tarjeta img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: inset 4px 4px 8px rgba(170, 110, 115, 0.5), 
                inset -4px -4px 8px rgba(255, 255, 255, 0.6);
}

.tarjeta h2 {
    margin-bottom: 8px;
    color: #4a151b;
    font-size: 20px;
}

.tarjeta p,
.tarjeta .descripcion {
    margin-bottom: 15px;
    color: #6d3a40;
    font-size: 13px;
    line-height: 1.4;
}

.tarjeta .ingredientes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    padding: 0;
    flex-grow: 1;
}

.tarjeta .ingredientes li {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.4);
    color: #5c2229;
    font-size: 11px;
    border-radius: 10px;
    box-shadow: inset 2px 2px 4px rgba(170, 110, 115, 0.2), 
                inset -2px -2px 4px rgba(255, 255, 255, 0.4);
}

.precio-tarjeta {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: #e8d0d4;
    color: #DE132A;
    font-size: 13px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: inset 3px 3px 6px rgba(170, 110, 115, 0.4), 
                inset -3px -3px 6px rgba(255, 255, 255, 0.8);
}

.btn-carrito {
    width: 100%;
    padding: 12px 20px;
    background: #DE132A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(222, 19, 42, 0.4);
    transition: all 0.3s ease;
}

.btn-carrito:hover {
    background: #ff0048;
    box-shadow: 0px 6px 15px rgba(222, 19, 42, 0.6);
}

@keyframes scroll-tarjetas {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

/* ==========================================
   4. SECCIÓN CÓCTELES
   ========================================== */
.cocteles-seccion {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    background: #f2dfe2;
    text-align: center;
    border-bottom: 3px solid #d43333;
}

.titulo-seccion {
    margin-bottom: 40px;
    color: #4a151b;
    font-size: 28px;
    font-weight: 700;
}

.cocteles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.tarjeta-coctel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #f2dfe2;
    text-align: left;
    border-radius: 20px;
    box-shadow: 8px 8px 16px rgba(170, 110, 115, 0.4), 
                -8px -8px 16px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta-coctel:hover {
    transform: translateY(-4px);
    box-shadow: 10px 10px 20px rgba(170, 110, 115, 0.5), 
                -10px -10px 20px rgba(255, 255, 255, 0.9);
}

.tarjeta-coctel img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 4px 4px 8px rgba(170, 110, 115, 0.4), 
                inset -4px -4px 8px rgba(255, 255, 255, 0.6);
}

.tarjeta-coctel .precio-tarjeta {
    position: absolute;
    top: 15px;
    left: 20px;
    right: auto;
    padding: 5px 12px;
    background: #e8d0d4;
    color: #DE132A;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: inset 3px 3px 6px rgba(170, 110, 115, 0.4), 
                inset -3px -3px 6px rgba(255, 255, 255, 0.8);
}

.info-coctel {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tarjeta-coctel h3 {
    margin-bottom: 6px;
    color: #4a151b;
    font-size: 18px;
}

.tarjeta-coctel .descripcion {
    margin-bottom: 10px;
    color: #6d3a40;
    font-size: 12px;
    line-height: 1.3;
}

.tarjeta-coctel .ingredientes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
    padding: 0;
}

.tarjeta-coctel .ingredientes li {
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.5);
    color: #5c2229;
    font-size: 10px;
    border-radius: 8px;
    box-shadow: inset 2px 2px 4px rgba(170, 110, 115, 0.2), 
                inset -2px -2px 4px rgba(255, 255, 255, 0.4);
}

.tarjeta-coctel .btn-carrito {
    width: 100%;
    padding: 8px 15px;
    background: #DE132A;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 3px 8px rgba(222, 19, 42, 0.4);
    transition: all 0.3s ease;
}

.tarjeta-coctel .btn-carrito:hover {
    background: #ff0048;
    box-shadow: 0px 5px 12px rgba(222, 19, 42, 0.6);
}

/* ==========================================
   5. SECCIÓN CHAROLAS
   ========================================== */
.charolas-seccion {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    background: #f2dfe2;
    text-align: center;
    border-bottom: 3px solid #d43333;
}

.subtitulo-seccion {
    margin-bottom: 40px;
    color: #6d3a40;
    font-size: 14px;
}

.charolas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.tarjeta-charola {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 25px;
    background: #f2dfe2;
    text-align: center;
    border-radius: 20px;
    box-shadow: 10px 10px 20px rgba(170, 110, 115, 0.4), 
                -10px -10px 20px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta-charola:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 25px rgba(170, 110, 115, 0.5), 
                -12px -12px 25px rgba(255, 255, 255, 0.9);
}

.tarjeta-charola img {
    width: 130px;
    height: 100px;
    margin-bottom: 15px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: inset 4px 4px 8px rgba(170, 110, 115, 0.4), 
                inset -4px -4px 8px rgba(255, 255, 255, 0.6);
}

.tarjeta-charola h3 {
    margin-bottom: 8px;
    color: #4a151b;
    font-size: 20px;
}

.tarjeta-charola .descripcion {
    margin-bottom: 15px;
    color: #6d3a40;
    font-size: 13px;
    line-height: 1.4;
}

.tarjeta-charola .ingredientes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 15px;
    padding: 0;
    flex-grow: 1;
}

.tarjeta-charola .ingredientes li {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.5);
    color: #5c2229;
    font-size: 11px;
    border-radius: 10px;
    box-shadow: inset 2px 2px 4px rgba(170, 110, 115, 0.2), 
                inset -2px -2px 4px rgba(255, 255, 255, 0.4);
}

.tarjeta-charola .precio {
    margin-bottom: 20px;
    color: #DE132A;
    font-size: 22px;
    font-weight: 700;
}

.tarjeta-charola .btn-carrito {
    width: 100%;
    padding: 12px 20px;
    background: #DE132A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(222, 19, 42, 0.4);
    transition: all 0.3s ease;
}

.tarjeta-charola .btn-carrito:hover {
    background: #ff0048;
    box-shadow: 0px 6px 15px rgba(222, 19, 42, 0.6);
}

/* ==========================================
   6. SECCIÓN ARMADOR INTERACTIVO
   ========================================== */
.armador-seccion {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    background: #e8d0d4;
    text-align: center;
    border-bottom: 3px solid #d43333;
}

.selector-modo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.switch-contenedor {
    position: relative;
    display: flex;
    width: 400px;
    height: 55px;
    background: #e8d0d4;
    border-radius: 30px;
    cursor: pointer;
    user-select: none;
    box-shadow: inset 6px 6px 12px rgba(170, 110, 115, 0.5), 
                inset -6px -6px 12px rgba(255, 255, 255, 0.7);
}

.switch-fondo {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 50%;
    height: calc(100% - 10px);
    background: #DE132A;
    border-radius: 25px;
    box-shadow: 0px 4px 10px rgba(222, 19, 42, 0.4);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.switch-contenedor.modo-charola .switch-fondo {
    transform: translateX(95%);
}

.switch-opcion {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: #6d3a40;
    z-index: 2;
    transition: color 0.3s ease;
}

.switch-opcion.activo {
    color: #ffffff;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.armador-contenedor {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.zona-mezcla {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 350px;
    padding: 30px;
    background: #e8d0d4;
    border-radius: 20px;
    box-shadow: inset 8px 8px 16px rgba(170, 110, 115, 0.5), 
                inset -8px -8px 16px rgba(255, 255, 255, 0.7);
}

.zona-mezcla h3 {
    color: #4a151b;
    font-size: 18px;
}

.instruccion-zona {
    margin: 20px 0;
    color: #8c5258;
    font-size: 13px;
    font-style: italic;
}

.ingredientes-agregados {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 100px;
}

.paneles-derecha {
    flex: 1;
    min-width: 320px;
    position: relative;
    min-height: 480px;
}

.panel-creacion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.panel-creacion.activo {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lista-disponibles {
    flex: 1;
    min-width: 320px;
    padding: 30px;
    background: #e8d0d4;
    border-radius: 20px;
    box-shadow: 10px 10px 20px rgba(170, 110, 115, 0.5), 
                -10px -10px 20px rgba(255, 255, 255, 0.7);
}

.lista-disponibles h3 {
    margin-bottom: 20px;
    color: #4a151b;
    font-size: 18px;
}

.items-disponibles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-content: center;
}

.ingrediente-item {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.6);
    color: #5c2229;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border-radius: 12px;
    cursor: grab;
    user-select: none;
    box-shadow: 4px 4px 8px rgba(170, 110, 115, 0.3), 
                -4px -4px 8px rgba(255, 255, 255, 0.6);
    transition: transform 0.2s ease;
}

.ingrediente-item:active {
    cursor: grabbing;
}

.ingrediente-item:hover {
    transform: translateY(-2px);
}

.ingredientes-agregados .ingrediente-item {
    cursor: default;
    background: #DE132A;
    color: #ffffff;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.2);
}

/* ==========================================
   7. COMPONENTES Y TICKET / TAMAÑOS
   ========================================== */
.botones-accion {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.btn-borrar {
    flex: 1;
    padding: 10px 15px;
    background: #e8d0d4;
    color: #8c2732;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #DE132A;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 4px 4px 10px rgba(170, 110, 115, 0.3), 
                -4px -4px 10px rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.btn-borrar:hover {
    background: #fad2d9;
    transform: translateY(-2px);
}

.zona-mezcla .btn-carrito {
    flex: 1;
    margin-top: 0 !important;
}

.items-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    text-align: left;
}

.checkbox-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.5);
    color: #5c2229;
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: inset 2px 2px 5px rgba(170, 110, 115, 0.2), 
                inset -2px -2px 5px rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease;
}

.checkbox-container:hover {
    background: rgba(255, 255, 255, 0.8);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.ingredientes-agregados .complemento-tag {
    padding: 10px 15px;
    background: #c76f1a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.2);
}

.items-tamanios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}

.tarjeta-tamano {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.5);
    color: #5c2229;
    font-size: 12px;
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: inset 2px 2px 5px rgba(170, 110, 115, 0.2), 
                inset -2px -2px 5px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.tarjeta-tamano:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.tarjeta-tamano input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.tarjeta-tamano img {
    width: 45px;
    height: 45px;
    margin-bottom: 6px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(170, 110, 115, 0.3));
    transition: transform 0.3s ease;
}

.tarjeta-tamano:hover img {
    transform: scale(1.08);
}

.tarjeta-tamano input[type="radio"]:checked + img {
    filter: drop-shadow(0px 0px 6px rgba(222, 19, 42, 0.6));
}

.tarjeta-tamano input[type="radio"]:checked ~ span {
    color: #DE132A;
    font-weight: 700;
}

.tarjeta-tamano:has(input[type="radio"]:checked) {
    background: #f2dfe2;
    border: 2px solid #DE132A;
    box-shadow: 4px 4px 10px rgba(170, 110, 115, 0.3), 
                -4px -4px 10px rgba(255, 255, 255, 0.8);
}

.badge-gratis {
    padding: 2px 6px;
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    vertical-align: middle;
}

.ingredientes-agregados .tamano-tag-activo {
    width: 100%;
    background: #4a151b;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    border: 2px dashed #DE132A;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.3);
}

.selector-cantidad {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.5);
    color: #5c2229;
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: inset 2px 2px 5px rgba(170, 110, 115, 0.2), 
                inset -2px -2px 5px rgba(255, 255, 255, 0.5);
}

.control-cantidad {
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-cantidad button {
    width: 28px;
    height: 28px;
    background: #DE132A;
    color: #ffffff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(222, 19, 42, 0.4);
    transition: background 0.2s;
}

.control-cantidad button:hover {
    background: #ff0048;
}

.control-cantidad input {
    width: 35px;
    background: transparent;
    color: #4a151b;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    border: none;
}

.control-cantidad input::-webkit-outer-spin-button,
.control-cantidad input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ticket-pedido {
    width: 100%;
    max-height: 250px;
    margin: 15px 0;
    padding-right: 5px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-ticket {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.7);
    text-align: left;
    border-radius: 12px;
    box-shadow: inset 2px 2px 5px rgba(170, 110, 115, 0.2);
}

.item-ticket h4 {
    margin-bottom: 4px;
    color: #4a151b;
    font-size: 14px;
}

.item-ticket p {
    margin: 2px 0;
    color: #6d3a40;
    font-size: 11px;
}

.btn-quitar-item {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #DE132A;
    color: white;
    font-size: 11px;
    font-weight: bold;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.resumen-pedido {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.total-estimado {
    padding-right: 5px;
    color: #4a151b;
    font-size: 15px;
    font-weight: 700;
    text-align: right;
}

.btn-agregar-otro {
    width: 100%;
    padding: 10px;
    background: #4a151b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(74, 21, 27, 0.3);
    transition: background 0.3s ease;
}

.btn-agregar-otro:hover {
    background: #6d3a40;
}

/* --- ESTILOS DEL BOTÓN HAMBURGUESA (Oculto en escritorio) --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.35s ease-in-out;
}


/* ==========================================
   8. MEDIA QUERY PARA 1024px
   ========================================== */
@media screen and (max-width: 1024px) {
    .menu {
        max-width: 95%;
        left: 15px;
        right: 15px;
        top: 20px;
    }

    .items ul {
        gap: 35px;
        padding: 15px 30px;
    }

    .bienvenida {
        padding: 140px 40px 40px;
    }

    .bienvenida h1 {
        font-size: 32px;
    }

    .bienvenida p {
        font-size: 20px;
    }

    .cocteles-grid,
    .charolas-grid {
        max-width: 950px;
        padding: 0 30px;
    }

    .armador-contenedor {
        max-width: 950px;
        gap: 25px;
    }

    .items-disponibles {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   9. MEDIA QUERY PARA 768px (MENÚ HAMBURGUESA Y ADAPTACIONES)
   ========================================== */
@media screen and (max-width: 768px) {
    /* 1. Mostrar el botón hamburguesa */
    .menu-toggle {
        display: flex;
    }

    .imagen img {
        width: 1250px;
        height: 100%;
    }

    /* 2. Transformar los ítems de navegación en menú desplegable absoluto */
    .items {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 100%;
        background: rgba(109, 58, 64, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    }

    /* Clase activa para mostrar el menú mediante JavaScript (.items.active) */
    .items.active {
        max-height: 350px;
        padding: 20px 0;
    }

    .items ul {
        flex-direction: column;
        gap: 20px;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .items ul li a {
        font-size: 16px;
    }

    .menu {
        left: 15px;
        right: 15px;
        top: 15px;
        padding: 5px 15px;
    }

    .bienvenida {
        padding: 130px 25px 20px 50px;
        text-align: left;
    }

    .bienvenida h1 {
        font-size: 28px;
    }

    .bienvenida p {
        font-size: 18px;
    }

    .dos {
        margin-top: 40px;
        padding: 12px 50px;
    }

    .cocteles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 720px;
        padding: 0 10px;
    }
}

/* ==========================================
   10. MEDIA QUERY PARA 425px (MÓVILES PEQUEÑOS)
   ========================================== */
@media screen and (max-width: 426px) {
    .menu {
        left: 10px;
        right: 10px;
        top: 10px;
        padding: 0px 10px;
    }

    .logo img {
        width: 38px;
    }

    .imagen {
        top: 235px;
        right: 0;
        width: 100%;
    }
    
    .imagen img {
        width: 100%;
        height: 55%;
        object-position: center;
        filter: brightness(55%) blur(0.5px);
    }

    .bienvenida {
        padding: 70px 15px 30px;
        text-align: center;
    }

    .bienvenida h1 {
        font-size: 24px;
    }

    .bienvenida p {
        font-size: 15px;
    }

    .dos {
        margin-top: 30px;
        padding: 12px 35px;
        font-size: 14px;
        width: 100%;
    }

    .tarjeta {
        width: 270px;
        padding: 20px 15px;
    }

    .precio-tarjeta {
        right: 10px;
    }

    .cocteles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .tarjeta-coctel {
        flex-direction: row;
        text-align: left;
        padding: 15px;
    }

    .tarjeta-coctel img {
        width: 75px;
        height: 75px;
    }

    .tarjeta-coctel .precio-tarjeta {
        position: absolute;
        top: 12px;
        left: auto;
        right: 12px;
    }

    .charolas-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .switch-contenedor {
        width: 100%;
        max-width: 280px;
        height: 48px;
    }

    .switch-opcion {
        font-size: 13px;
    }

    .items-disponibles {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .ingrediente-item {
        padding: 8px 10px;
        font-size: 11px;
    }

    .zona-mezcla, 
    .lista-disponibles {
        padding: 20px 15px;
        min-width: 100%;
    }

    .items-checkboxes {
        grid-template-columns: 1fr;
    }

    .items-tamanios {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   11. MEDIA QUERY PARA 375px (MÓVILES COMPACTOS)
   ========================================== */
@media screen and (max-width: 376px) {
    .menu {
        left: 8px;
        right: 8px;
        top: 8px;
        padding: 4px 8px;
    }

    .logo {
        margin: 6px 0 6px 10px;
    }

    .logo img {
        width: 34px;
    }

    .imagen {
        top: 260px;
        right: 0;
        width: 100%;
    }

    .imagen img {
        width: 100%;
        height: 50%;
        object-position: center;
        filter: brightness(50%) blur(1px);
    }

    .bienvenida {
        padding: 110px 12px 25px;
        text-align: center;
    }

    .bienvenida h1 {
        font-size: 22px;
    }

    .bienvenida p {
        font-size: 14px;
        margin-top: 10px;
    }

    .dos {
        margin-top: 25px;
        padding: 10px 25px;
        font-size: 13px;
        width: 100%;
    }

    .tarjeta {
        width: 250px;
        padding: 15px 12px;
    }

    .tarjeta img {
        width: 70px;
        height: 70px;
    }

    .tarjeta h2 {
        font-size: 18px;
    }

    .precio-tarjeta {
        right: 10px;
    }

    .cocteles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 8px;
    }

    .tarjeta-coctel {
        flex-direction: row;
        text-align: left;
        padding: 12px;
        gap: 10px;
    }

    .tarjeta-coctel img {
        width: 65px;
        height: 65px;
    }

    .tarjeta-coctel h3 {
        font-size: 16px;
    }

    .tarjeta-coctel .descripcion {
        font-size: 11px;
    }

    .tarjeta-coctel .precio-tarjeta {
        position: absolute;
        top: 10px;
        left: auto;
        right: 10px;
        font-size: 11px;
        padding: 4px 8px;
    }

    .charolas-grid {
        grid-template-columns: 1fr;
        padding: 0 8px;
    }

    .tarjeta-charola {
        padding: 20px 15px;
    }

    .switch-contenedor {
        width: 100%;
        max-width: 260px;
        height: 44px;
    }

    .switch-opcion {
        font-size: 12px;
    }

    .items-disponibles {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .ingrediente-item {
        padding: 6px 8px;
        font-size: 10px;
    }

    .zona-mezcla, 
    .lista-disponibles {
        padding: 15px 10px;
        min-width: 100%;
    }

    .items-checkboxes {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .items-tamanios {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .selector-cantidad {
        padding: 6px 10px;
        font-size: 12px;
    }

    .control-cantidad button {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================
   12. MEDIA QUERY PARA 320px (MÓVILES ULTRA COMPACTOS)
   ========================================== */
@media screen and (max-width: 321px) {
    .menu {
        left: 5px;
        right: 5px;
        top: 6px;
        padding: 4px 6px;
    }

    .logo {
        margin: 4px 0 4px 6px;
    }

    .logo img {
        width: 30px;
    }

    .imagen {
        right: 0;
        width: 100%;
    }

    .imagen img {
        width: 100%;
        height: 100%;
        object-position: center;
        filter: brightness(45%) blur(1px);
    }

    .bienvenida {
        padding: 100px 10px 20px;
        text-align: center;
    }

    .bienvenida h1 {
        font-size: 20px;
    }

    .bienvenida p {
        font-size: 13px;
        margin-top: 8px;
    }

    .dos {
        margin-top: 20px;
        padding: 10px 20px;
        font-size: 12px;
        width: 100%;
    }

    .tarjeta {
        width: 230px;
        padding: 12px 10px;
    }

    .tarjeta img {
        width: 75px;
        height: 75px;
    }

    .tarjeta h2 {
        font-size: 16px;
    }

    .tarjeta p,
    .tarjeta .descripcion {
        font-size: 11px;
    }

    .cocteles-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 5px;
    }

    .tarjeta-coctel {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
        gap: 8px;
    }

    .tarjeta-coctel img {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .tarjeta-coctel h3 {
        font-size: 15px;
    }

    .tarjeta-coctel .descripcion {
        font-size: 11px;
    }

    .tarjeta-coctel .precio-tarjeta {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-bottom: 4px;
        display: inline-block;
        font-size: 11px;
        padding: 3px 8px;
    }

    .charolas-grid {
        grid-template-columns: 1fr;
        padding: 0 5px;
    }

    .tarjeta-charola {
        padding: 15px 10px;
    }

    .tarjeta-charola h3 {
        font-size: 18px;
    }

    .tarjeta-charola .precio-tarjeta {
        font-size: 10px;
        right: 5px;
    }

    .switch-contenedor {
        width: 100%;
        max-width: 240px;
        height: 40px;
    }

    .switch-opcion {
        font-size: 11px;
    }

    .items-disponibles {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .ingrediente-item {
        padding: 6px;
        font-size: 10px;
    }

    .zona-mezcla, 
    .lista-disponibles {
        padding: 12px 8px;
        min-width: 100%;
    }

    .items-checkboxes {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .items-tamanios {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .selector-cantidad {
        padding: 5px 8px;
        font-size: 11px;
    }

    .control-cantidad button {
        width: 22px;
        height: 22px;
    }
}