/* HOJA DE ESTILOS - LA SANTA PAPITA (DIRECCIÓN A) */

/* 1. CONFIGURACIÓN Y VARIABLES */
:root {
    --bg-black: #000000;      /* Negro puro */
    --card-black: #080808;    /* Negro profundo para tarjetas */
    --gold: #D4AF37;          /* Oro tradicional */
    --gold-glow: rgba(212, 175, 55, 0.4); /* Resplandor LED dorado */
    --gold-light: #F7E7B4;    /* Oro claro */
    --white: #FFFFFF;
    --gray-light: #E5E5EA;
    --gray-medium: #8E8E93;
    --gray-dark: #1C1C1E;
    
    /* Banderas del Logotipo */
    --flag-blue: #0F47AF;     /* Azul El Salvador */
    --flag-red: #E42313;      /* Rojo España */
    
    /* Tipografías */
    --font-display: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. PANTALLA DE CARGA (LOADER) */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo {
    width: 140px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px var(--gold-glow));
    animation: pulseGlow 2s infinite ease-in-out;
}

.loader-bar {
    width: 120px;
    height: 2px;
    background-color: var(--gray-dark);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background-color: var(--gold);
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
    0% { left: -40%; width: 40%; }
    50% { width: 60%; }
    100% { left: 100%; width: 40%; }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px var(--gold-glow)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 25px var(--gold)); }
}

/* 3. CABECERA (NAVBAR) */
.main-navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1.5px solid transparent;
    transition: all 0.4s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 5px var(--gold-glow));
    transition: transform 0.3s ease, height 0.4s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

/* Botón Destacado en Navbar */
.nav-link.highlight-btn {
    background-color: var(--gold);
    color: var(--bg-black) !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
}

.nav-link.highlight-btn::after {
    display: none;
}

.nav-link.highlight-btn:hover {
    background-color: transparent;
    color: var(--gold) !important;
    box-shadow: 0 0 10px var(--gold-glow);
}

.menu-toggle-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle-btn .bar {
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

/* 4. SECCIÓN HERO */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.9) 100%);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

/* Borde LED Dorado (Inspiración Kiosko) */
.hero-glow-border {
    position: relative;
    padding: 50px 30px;
    background-color: rgba(10, 10, 12, 0.75);
    border: 1.5px solid var(--gold);
    box-shadow: 0 0 20px var(--gold-glow), inset 0 0 20px var(--gold-glow);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Detalle de luz dorada superior */
.top-light {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background-color: var(--gold-light);
    box-shadow: 0 0 15px var(--gold), 0 0 30px var(--gold);
    border-radius: 10px;
}

.hero-brand-logo {
    width: 180px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.hero-description {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Botones Premium */
.btn-primary-gold {
    background-color: var(--gold);
    color: var(--bg-black);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary-gold:hover {
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

.btn-secondary-dark {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary-dark:hover {
    background-color: var(--white);
    color: var(--bg-black);
    border-color: var(--white);
}

/* Indicador de Deslizamiento */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-indicator span {
    display: block;
    width: 1px;
    height: 40px;
    background-color: var(--gold);
    position: relative;
    overflow: hidden;
}

.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--gold-light);
    box-shadow: 0 0 8px var(--gold);
    animation: scrollAnim 2s infinite ease-in-out;
}

@keyframes scrollAnim {
    0% { top: -15px; }
    50% { top: 20px; }
    100% { top: 40px; }
}

.hero-scroll-indicator p {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* 5. TÍTULOS DE SECCIÓN */
.menu-section, .kiosko-section, .galeria-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-title-main {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-title-main span {
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.section-gold-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto;
    box-shadow: 0 0 5px var(--gold);
}

/* Etiquetas de banderas */
.tag-local, .tag-spain {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 5px;
    vertical-align: middle;
}

.tag-local {
    background-color: var(--flag-blue);
    color: var(--white);
}

.tag-spain {
    background-color: var(--flag-red);
    color: var(--white);
}

/* 6. MAQUETACIÓN MENÚ INTERACTIVO */
.menu-interactive-container {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 40px;
}

.menu-selection-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.selection-card {
    background-color: var(--card-black);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 6px;
    padding: 30px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.selection-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}

.step-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin: 15px 0 20px 0;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.selection-card:hover .step-image {
    border-color: var(--gold);
    transform: scale(1.01);
}

.selection-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    background-color: var(--gold);
    color: var(--bg-black);
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
}

.selection-subtitle {
    font-size: 0.8rem;
    color: var(--gray-medium);
    margin-bottom: 20px;
}

/* Selector de Tamaños */
.size-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.size-option-label input[type="radio"] {
    display: none;
}

.size-option-content {
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 20px;
    cursor: pointer;
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.size-icon-wrapper {
    font-size: 1.8rem;
    color: var(--gray-medium);
    transition: color 0.3s ease;
}

.size-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.size-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-medium);
    margin-bottom: 5px;
}

.size-price {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

/* Estado Activo para el Tamaño de Papa */
.size-option-label input[type="radio"]:checked + .size-option-content {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.size-option-label input[type="radio"]:checked + .size-option-content .size-icon-wrapper {
    color: var(--gold);
}

/* Selección de Checkboxes (Salsas y Toppings) */
.options-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.01);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-option:hover {
    border-color: rgba(212, 175, 55, 0.25);
    background-color: rgba(255, 255, 255, 0.03);
}

.checkbox-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--gray-medium);
    border-radius: 3px;
    margin-right: 12px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-option input:checked ~ .checkbox-custom {
    background-color: var(--gold);
    border-color: var(--gold);
}

.checkbox-custom::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--bg-black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-option input:checked ~ .checkbox-custom::after {
    display: block;
}

.checkbox-option input:checked {
    background-color: rgba(212, 175, 55, 0.05);
}

.checkbox-option input:checked ~ .checkbox-label-text {
    color: var(--gold-light);
    font-weight: 500;
}

.checkbox-label-text {
    font-size: 0.85rem;
    color: var(--gray-light);
    transition: color 0.3s ease;
}

/* Estilo Radio para Bebidas */
.checkbox-option.radio-style .radio-custom {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--gray-medium);
    border-radius: 50%;
    margin-right: 12px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-option.radio-style input:checked ~ .radio-custom {
    border-color: var(--gold);
}

.checkbox-option.radio-style .radio-custom::after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gold);
}

.checkbox-option.radio-style input:checked ~ .radio-custom::after {
    display: block;
}

/* Columna Resumen Sticky */
.menu-summary-panel {
    position: relative;
}

.summary-sticky-card {
    position: sticky;
    top: 100px;
    background-color: var(--card-black);
    border: 1.5px solid var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
}

.summary-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.summary-item-name {
    font-weight: 500;
    color: var(--white);
}

.summary-item-price {
    font-weight: 600;
    color: var(--gold);
}

.summary-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.summary-block-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

.summary-block-content {
    font-size: 0.85rem;
    color: var(--gray-medium);
    line-height: 1.4;
}

.summary-toppings-list-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-topping-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-light);
}

/* Totalizador */
.summary-total-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--gold);
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.summary-total-container span:first-child {
    color: var(--white);
    letter-spacing: 1px;
}

.total-price {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Botón WhatsApp */
.btn-confirm-whatsapp {
    margin-top: 25px;
    background-color: #25D366; /* Color verde WhatsApp corporativo */
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-confirm-whatsapp:hover {
    background-color: #128C7E;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.whatsapp-disclaimer {
    font-size: 0.65rem;
    color: var(--gray-medium);
    text-align: center;
    margin-top: 10px;
    line-height: 1.3;
}

/* 7. SECCIÓN EL KIOSKO */
.kiosko-section {
    position: relative;
}

.kiosko-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.kiosko-flex-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.kiosko-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.05);
}

.kiosko-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.kiosko-image-wrapper:hover .kiosko-img {
    transform: scale(1.03);
}

.kiosko-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(10, 10, 12, 0.4) 0%, transparent 100%);
}

.kiosko-badge-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--gold);
    color: var(--bg-black);
    padding: 6px 15px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.kiosko-text-wrapper {
    flex: 1;
}

.kiosko-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.kiosko-title span {
    font-weight: 700;
    color: var(--gold);
}

.gold-accent-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin-bottom: 30px;
}

.kiosko-paragraph {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.kiosko-paragraph strong {
    color: var(--gold-light);
}

.kiosko-features-list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kiosko-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
}

.feature-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--gray-medium);
}

/* 8. SECCIÓN GALERÍA */
.galeria-section {
    padding-top: 50px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.galeria-grid-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.galeria-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.galeria-grid-item:hover img {
    transform: scale(1.06);
}

.grid-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    background: linear-gradient(360deg, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.4) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.galeria-grid-item:hover .grid-item-overlay {
    opacity: 1;
}

.grid-item-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 3px;
}

.grid-item-overlay p {
    font-size: 0.75rem;
    color: var(--gray-medium);
}

/* 9. PIE DE PÁGINA (FOOTER) */
.main-footer {
    position: relative;
    background-color: var(--card-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px 20px 30px;
    margin-top: 50px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 4fr 4fr 4fr;
    gap: 50px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--gold-glow));
}

.footer-slogan {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.footer-col-title {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background-color: var(--gold);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray-light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hours-list li:last-child {
    border-bottom: none;
}

.contact-info {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-info i {
    color: var(--gold);
    font-size: 0.8rem;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: rgba(212, 175, 55, 0.04);
}

.footer-bottom-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom-bar p {
    font-size: 0.75rem;
    color: var(--gray-medium);
    letter-spacing: 1px;
}

.footer-subtext {
    font-family: var(--font-display);
    color: var(--gold) !important;
    margin-top: 5px;
    letter-spacing: 2px !important;
}

/* 10. RESPONSIVE Y ADAPTACIONES */
@media (max-width: 1024px) {
    .menu-interactive-container {
        grid-template-columns: 1fr;
    }
    
    .summary-sticky-card {
        position: static;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-navbar {
        padding: 10px 0;
    }
    
    .menu-toggle-btn {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-black);
        border-bottom: 1.5px solid var(--gold);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .hero-tagline {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .section-title-main {
        font-size: 2.2rem;
    }
    
    .kiosko-flex-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .options-checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* 11. CARTA EDITORIAL GIGANTE (ESTILO POSTER PREMIUM AWWWARDS) */
.carta-editorial-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.carta-editorial-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .carta-editorial-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .carta-editorial-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.carta-item {
    position: relative;
    height: auto;
    min-height: 560px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--card-black);
}

.carta-item:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-glow);
}

.carta-image-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
    z-index: 1;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.carta-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carta-item:hover .carta-image-wrapper img {
    transform: scale(1.08);
}

/* Indicador de Zoom */
.zoom-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(10, 10, 12, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    z-index: 3;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.carta-item:hover .zoom-indicator {
    opacity: 1;
    transform: scale(1);
}

.zoom-indicator:hover {
    background-color: var(--gold);
    color: var(--bg-black);
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

.carta-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--gold);
    color: var(--bg-black);
    padding: 5px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.carta-text-wrapper {
    position: relative;
    z-index: 2;
    background: var(--card-black);
    padding: 30px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: none;
    transition: none;
}

.carta-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding-bottom: 8px;
}

.carta-item-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-light);
}

.carta-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
}

.carta-text-wrapper p {
    font-size: 0.8rem;
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carta-item:hover .carta-text-wrapper p {
    opacity: 1;
}

.carta-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
}

.carta-item-footer span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-medium);
}

.btn-primary-gold-sm {
    background-color: transparent;
    color: var(--gold);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.btn-primary-gold-sm:hover {
    background-color: var(--gold);
    color: var(--bg-black);
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}


/* 12. REDISEÑO DE SELECCIÓN VISUAL (CALCULADOR PREMIUM) */

/* Contenedor de Tamaño con Imagen */
.size-option-content-new {
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--card-black);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.size-card-image-wrapper {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.size-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.size-option-label:hover .size-card-image-wrapper img {
    transform: scale(1.05);
}

.size-details {
    padding: 15px;
}

.size-option-label input[type="radio"]:checked + .size-option-content-new {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* Grid de Opciones Visuales (Salsas y Toppings) */
.options-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .options-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .options-visual-grid {
        grid-template-columns: 1fr;
    }
}

/* Tarjeta Visual de Opción */
.choice-card-visual {
    position: relative;
    cursor: pointer;
    display: block;
}

.choice-card-visual input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.choice-card-content {
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.01);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 160px;
}

.choice-card-visual:hover .choice-card-content {
    border-color: rgba(212, 175, 55, 0.4);
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}

.choice-card-image-wrapper {
    width: 100%;
    height: 100px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg-black);
}

.choice-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.choice-card-visual:hover .choice-card-image-wrapper img {
    transform: scale(1.05);
}

.choice-card-info {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.choice-card-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-light);
    transition: color 0.3s ease;
    line-height: 1.3;
}

/* Indicador de Checkmark */
.choice-card-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-color: rgba(10, 10, 12, 0.8);
    border: 1.5px solid var(--gray-medium);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.65rem;
    color: transparent;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Estado de Selección Activa (Checkboxes y Radios) */
.choice-card-visual input[type="checkbox"]:checked + .choice-card-content,
.choice-card-visual input[type="radio"]:checked + .choice-card-content {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.06);
    box-shadow: 0 0 15px var(--gold-glow);
}

.choice-card-visual input[type="checkbox"]:checked + .choice-card-content .choice-card-name,
.choice-card-visual input[type="radio"]:checked + .choice-card-content .choice-card-name {
    color: var(--gold-light);
    font-weight: 600;
}

.choice-card-visual input[type="checkbox"]:checked + .choice-card-content .choice-card-indicator,
.choice-card-visual input[type="radio"]:checked + .choice-card-content .choice-card-indicator {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--bg-black);
    box-shadow: 0 0 8px var(--gold-glow);
}

/* 14. AJUSTES VISUALES RETRO, KIOSKO FULLSCREEN Y GALERÍA MONUMENTAL */

/* Tipografía retro */
.font-retro {
    font-family: 'Abril Fatface', serif !important;
}

/* Números de pasos sin círculos */
.step-num-retro {
    font-family: 'Abril Fatface', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

/* Vista de imagen completa para La Divina */
.carta-item-contain .carta-image-wrapper {
    background-color: #0b0b0d;
}

.carta-item-contain .carta-image-wrapper img {
    object-fit: contain !important;
    padding: 20px;
}

/* Kiosko Full Screen */
.kiosko-section-fullscreen {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 20px;
    background-color: var(--bg-black);
}

.kiosko-fullscreen-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.kiosko-fullscreen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kiosko-fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.7) 45%, rgba(10, 10, 12, 0.2) 100%);
}

.kiosko-fullscreen-text-card {
    position: relative;
    z-index: 2;
    max-width: 580px;
    background-color: rgba(18, 18, 21, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px 45px;
    border: 1.5px solid var(--gold);
    box-shadow: 0 0 30px var(--gold-glow);
    border-radius: 8px;
    margin-left: 8%;
}

.feature-icon-retro {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 4px;
    font-family: 'Abril Fatface', serif;
    font-size: 1.15rem;
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    flex-shrink: 0;
}

/* Galería Monumental Showcase */
.galeria-monumental-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-monumental-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.galeria-poster-card {
    background-color: var(--card-black);
    border: 1.5px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.galeria-poster-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-glow);
    transform: translateY(-8px);
}

.poster-image-wrapper {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.15);
}

.poster-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.galeria-poster-card:hover .poster-image-wrapper img {
    transform: scale(1.06);
}

.poster-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.poster-badge {
    font-size: 1.5rem;
    color: var(--gold);
    border-bottom: 1.5px solid var(--gold);
    width: fit-content;
    padding-bottom: 3px;
    font-family: 'Abril Fatface', serif;
}

.poster-content h3 {
    font-size: 1.3rem;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.font-light {
    font-weight: 300;
    color: var(--gray-medium);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* Banderas SVG inline styling */
.choice-card-flag-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: rgba(10, 10, 12, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.flag-svg {
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.choice-card-visual:hover .flag-svg {
    transform: scale(1.05);
}

/* Iconos de Fusión para salsas sin bandera */
.fusion-icon {
    font-size: 2.2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.tomato-color {
    color: #FF5A5F;
}

.mayo-color {
    color: #FFFDD0;
}

.samurai-color {
    color: #E25822;
}

/* Responsive Kiosko y Galería */
@media (max-width: 1024px) {
    .galeria-monumental-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .kiosko-fullscreen-text-card {
        margin-left: 5%;
        padding: 45px 30px;
    }
}

@media (max-width: 768px) {
    .kiosko-section-fullscreen {
        flex-direction: column;
        justify-content: flex-end;
        padding: 60px 15px 40px;
    }
    .kiosko-fullscreen-image-wrapper {
        height: 100%;
    }
    .kiosko-fullscreen-overlay {
        background: linear-gradient(180deg, rgba(10, 10, 12, 0.3) 0%, rgba(10, 10, 12, 0.95) 100%);
    }
    .kiosko-fullscreen-text-card {
        margin-left: 0;
        width: 100%;
        padding: 35px 25px;
    }
    .galeria-monumental-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .poster-image-wrapper {
        height: 300px;
    }
}


/* 13. ESTILOS DEL LIGHTBOX PORTFOLIO (MODAL VISOR) */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 6, 8, 0.96);
    backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 100000;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-content-wrapper {
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: zoomEffect 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes zoomEffect {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
    border: 1.5px solid var(--gold);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-glow);
}

.lightbox-caption {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    text-align: center;
}

/* Habilitar cursor interactivo en elementos ampliables */
.lightbox-trigger {
    cursor: pointer;
}

/* AJUSTES ADICIONALES DE FORMATO 16/9, 9/16 Y KIOSKO HORIZONTAL */

.aspect-16-9 {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
}

.aspect-9-16 {
    aspect-ratio: 9 / 16 !important;
    height: auto !important;
}

.aspect-3-4 {
    aspect-ratio: 3 / 4 !important;
    height: auto !important;
}

/* Kiosko Horizontal Layout */
.kiosko-section-horizontal {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 80px 20px 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-black);
}

.kiosko-banner-wrapper {
    position: relative;
    width: 100%;
    height: 480px; /* Panoramic image display */
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.05);
    margin-bottom: 40px;
}

.kiosko-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.kiosko-banner-wrapper:hover .kiosko-banner-img {
    transform: scale(1.02);
}

.kiosko-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 12, 0.5) 100%);
    pointer-events: none;
}

.kiosko-content-row {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 50px;
    align-items: flex-start;
}

.kiosko-main-text {
    display: flex;
    flex-direction: column;
}

.kiosko-side-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-color: var(--card-black);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Superposición de banderas en tarjetas 16/9 de salsas */
.choice-card-flag-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    pointer-events: none;
}

.choice-card-flag-badge .flag-svg {
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    width: 28px;
    height: auto;
}

/* Modificar altura de tarjetas de bebidas para que se adapten a 16/9 */
.choice-card-content {
    min-height: auto !important;
}

@media (max-width: 1024px) {
    .kiosko-content-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .kiosko-banner-wrapper {
        height: 280px;
    }
    .kiosko-content-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .kiosko-side-features {
        padding: 20px;
    }
}

/* ==========================================
   ESTILOS PRESENTACIÓN DEFINITIVA (PHASE 3)
   ========================================== */

/* Layout general de showcase de opciones (Customizer reemplazado) */
.menu-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 70px;
    width: 100%;
    margin-top: 50px;
}

.selection-card-full {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 20px 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Grid de tamaño (3/4 vertical premium) */
.size-options-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.size-option-card-premium {
    background-color: #000000;
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.size-option-card-premium .size-card-image-wrapper {
    max-height: 380px;
}

.size-option-card-premium:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15), 0 0 25px var(--gold-glow);
    transform: translateY(-8px);
}

.size-details-premium {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.size-details-premium .size-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.size-details-premium .size-desc {
    font-size: 0.85rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.size-details-premium .size-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 15px;
    margin-top: 5px;
}

/* Grid de salsas, toppings y bebidas (16/9 apaisado premium) */
.options-visual-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (max-width: 1024px) {
    .options-visual-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .size-options-grid-full,
    .options-visual-grid-full {
        grid-template-columns: 1fr;
    }
    .selection-card-full {
        padding: 25px 20px;
    }
}

.choice-card-visual-premium {
    position: relative;
    background-color: #000000;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.choice-card-visual-premium:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15), 0 0 20px var(--gold-glow);
    transform: translateY(-6px);
}

.choice-card-info-premium {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.choice-card-info-premium .choice-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.choice-card-surcharge {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

/* Grid de Kiosko dual */
.kiosko-banners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    margin-bottom: 50px;
}

.kiosko-banner-wrapper {
    position: relative;
    height: 580px;
    overflow: hidden;
    border-radius: 8px;
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.kiosko-img-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .kiosko-banners-grid {
        grid-template-columns: 1fr;
    }
    .kiosko-banner-wrapper {
        height: 260px;
    }
}

/* Footer Banner de la bandera de El Salvador */
.footer-flag-banner {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 8px;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.1);
    margin-bottom: 50px;
}

.footer-flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease;
}

.footer-flag-banner:hover .footer-flag-img {
    transform: scale(1.03);
}

.footer-flag-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 50px 40px;
}

.footer-flag-text {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-flag-badge {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 1.5px solid var(--gold);
    width: fit-content;
    padding-bottom: 3px;
}

.footer-flag-title {
    font-size: 2.2rem;
    color: var(--white);
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
    .footer-flag-banner {
        height: 280px;
    }
    .footer-flag-overlay {
        padding: 30px 20px;
    }
    .footer-flag-title {
        font-size: 1.6rem;
    }
}

.hero-intro-section {
    padding: 100px 20px;
    background-color: var(--bg-black);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 5;
}

/* CUSTOM GOLDEN HALO CURSOR (AWARDS STYLE) */
@media (min-width: 1025px) {
    html, body, a, button, input, select, textarea, .lightbox-trigger, .choice-card-visual-premium, .size-option-card-premium, .galeria-poster-card {
        cursor: none !important;
    }
}

.custom-cursor {
    width: 24px;
    height: 24px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 100000;
    box-shadow: 0 0 10px var(--gold-glow), inset 0 0 5px rgba(212, 175, 55, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 100001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 1024px) {
    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
}

/* ----------------------------------------------------
   REVAMP DE DISEÑO: DEGRADADOS RADIALES Y RUPTURA LINEAL
   ---------------------------------------------------- */

/* Ambient Glowing Orbs */
.ambient-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.045) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(50px);
}

.glow-top-left {
    top: -250px;
    left: -250px;
}

.glow-bottom-right {
    bottom: -250px;
    right: -250px;
}

.glow-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Make section containers relative & hide overflow to hold absolute glows */
.carta-editorial-section, 
.menu-section, 
.kiosko-section-horizontal, 
.galeria-monumental-section, 
.hero-intro-section {
    position: relative;
    overflow: hidden;
}

/* Outline Watermark Text */
.bg-watermark-text {
    position: absolute;
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-size: 14vw;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.005);
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.018);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.watermark-materia-prima {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.watermark-sacrificio {
    top: 50px;
    left: 5%;
}

.watermark-kiosko {
    top: 10px;
    right: 5%;
}

/* Staggered Masonry and Vertical Sizing for Gallery */
@media (min-width: 1025px) {
    .galeria-monumental-container .galeria-poster-card:nth-child(2) {
        transform: translateY(60px);
    }
    .galeria-monumental-section {
        padding-bottom: 180px !important;
    }
}

/* Overlapping Editorial Border Frame Effect */
.editorial-frame-container {
    position: relative;
    padding: 10px;
}

.editorial-frame-border {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1.5px solid var(--gold);
    transform: translate(20px, 20px);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.galeria-poster-card:hover .editorial-frame-border {
    transform: translate(10px, 10px);
}

/* ----------------------------------------------------
   MAQUETACIÓN PRESENTATION DECK (SNAP SCROLL FULLSCREEN)
   ---------------------------------------------------- */

/* Estilos de Diapositiva a Pantalla Completa (Fullscreen Slide) */
.fullscreen-slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    background-color: var(--bg-black);
}

.slide-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease;
}

.fullscreen-slide:hover .slide-bg-wrapper img {
    transform: scale(1.03);
}

.slide-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.slide-content-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* Tarjeta Flotante Editorial en Cristal y Oro */
.slide-content-card {
    background: rgba(8, 8, 10, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    padding: 40px;
    border-radius: 12px;
    max-width: 390px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px var(--gold-glow);
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 15;
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-width: thin;
}

.slide-content-card:hover {
    border-color: var(--gold);
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.15), 0 0 45px var(--gold-glow);
}

.slide-content-card.align-left {
    align-self: flex-start;
    margin-right: auto;
}

.slide-content-card.align-right {
    align-self: flex-end;
    margin-left: auto;
}

/* Adaptación del Navbar para que flote sin bloquear el scroll */
@media (min-width: 1025px) {
    html {
        scroll-snap-type: y proximity;
        scroll-behavior: smooth;
    }
    
    body {
        margin: 0;
        padding: 0;
    }

    .main-navbar {
        position: fixed !important;
        background-color: rgba(0, 0, 0, 0.25) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border-bottom: 1.5px solid rgba(212, 175, 55, 0.1) !important;
    }

    /* Comportamiento de Snap a Pantalla Completa */
    .fullscreen-slide,
    .hero-section,
    .hero-intro-section {
        scroll-snap-align: start;
        scroll-snap-stop: normal;
        height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* Permitir altura natural en el configurador para mostrarlo completo */
    .menu-section {
        scroll-snap-align: start;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        padding-top: 100px !important;
        padding-bottom: 100px !important;
        display: block !important;
    }
    
    .menu-section .section-title-wrapper {
        margin-bottom: 40px !important;
        margin-top: 20px !important;
    }

    .menu-showcase-container {
        max-height: none !important;
        overflow-y: visible !important;
        width: 100%;
    }
    
    .menu-showcase-container::-webkit-scrollbar {
        width: 6px;
    }
    .menu-showcase-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }
    .menu-showcase-container::-webkit-scrollbar-thumb {
        background-color: var(--gold);
        border-radius: 4px;
    }

    /* Ajuste para el Footer Fullscreen */
    .main-footer {
        scroll-snap-align: start;
        position: relative;
        padding: 80px 40px 30px 40px !important;
        background-color: #000000 !important;
        display: block !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        border-top: 1.5px solid rgba(212, 175, 55, 0.1) !important;
    }

    /* Enmarcar imágenes de fondo de las diapositivas para dar respiración (Awwwards Style) */
    .slide-bg-wrapper,
    .slide-dark-overlay {
        top: 35px !important;
        bottom: 35px !important;
        left: 35px !important;
        right: 35px !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        width: auto !important;
        height: auto !important;
    }
}

/* Hover de marcos editoriales en tarjetas estáticas */
.galeria-poster-card:hover .editorial-frame-border,
.carta-item:hover .editorial-frame-border {
    transform: translate(10px, 10px) !important;
}

@media (max-width: 1024px) {
    .slide-content-container {
        padding: 80px 20px;
    }
    .slide-content-card {
        padding: 30px;
        max-width: 100%;
    }
}

/* Kiosk Step Banners Style */
.step-banner-wrapper {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 1376 / 768;
    height: auto;
    margin: 15px auto 45px auto;
    overflow: hidden;
    border-radius: 8px;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.05);
    position: relative;
    z-index: 10;
}

.step-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.step-banner-wrapper:hover .step-banner-img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .step-banner-wrapper {
        margin-bottom: 30px;
    }
}


