:root {
    --primary-color: #bed81f; /* Amarillo verde */
    --secondary-color: #101010; /* Negro profundo */
    --aviso-height: 50px; /* Altura del aviso fijado */
}

* {
    font-family: "Heebo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

#elfos-body {
    overflow-x: hidden;
}

/* === AVISO FIJADO === */
.aviso-fijado {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-image: url("../img/elfos_bg2.png");
    background-repeat: repeat;
    background-size: 15%;
    border-bottom: 3px solid #bed81f;
    padding: 0.75rem 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.aviso-fijado-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.aviso-fijado-texto {
    font-family: "Heebo", sans-serif;
    font-size: 1rem;
    color: #101010;
    font-weight: 500;
    flex: 1;
    text-align: center;
}

.aviso-fijado-cerrar {
    background: transparent;
    border: 2px solid #101010;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    font-weight: bold;
    color: #101010;
    line-height: 1;
    padding: 0;
}

.aviso-fijado-cerrar:hover {
    background-color: #101010;
    color: #bed81f;
    transform: rotate(90deg);
}

/* Ajustar el body cuando hay aviso fijado */
body:has(.aviso-fijado) nav.navbar {
    top: var(--aviso-height);
}

body:has(.aviso-fijado) .hero-section {
    padding-top: calc(100px + var(--aviso-height));
}

/* Cuando el aviso se cierra */
.aviso-fijado.hidden {
    animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.z-index-90 {
    z-index: 90;
}

.stonehenge {
    font-family: 'Stonehenge';
    font-weight: 100;
    font-style: normal;
}

.lilita-one-regular {
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.heebo {
  font-family: "Heebo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

nav.navbar a {
    color: white;
    text-transform: uppercase;
    text-indent: 2px;
}

.nav-item a.active {
    font-weight: 400;
}

.nav-item a.active, .nav-item a:hover {
    color: var(--primary-color)!important;
}

nav.navbar {
    transition: all 0.5s ease-in-out;
    margin-top: -10px;
    padding: 20px 10px 10px 10px !important;
}

/* Botón de teléfono en navbar (solo desktop) */
.btn-telefono-navbar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #bed81f 0%, #a8c31a 100%);
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(190, 216, 31, 0.3);
    transition: all 0.3s ease;
}

.btn-telefono-navbar .fastfood-icon {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1;
}

.btn-telefono-navbar .telefono-text {
    font-family: "Heebo", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.btn-telefono-navbar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(190, 216, 31, 0.4);
}

/* Menú móvil pantalla completa */
@media (max-width: 991px) {
    .navbar-brand {
        margin-right: auto !important;
    }

    .navbar-toggler {
        background-color: var(--primary-color);
        border-radius: 8px;
        padding: 0.5rem 0.75rem;
    }

    .navbar-toggler i {
        color: #101010 !important;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(190, 216, 31, 0.5);
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: url("../img/black-felt.png");
        background-color: rgba(0, 0, 0, 0.75);
        z-index: 9999;
        padding: 80px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
    }

    .navbar-collapse.collapsing {
        opacity: 0.5;
        transition: opacity 0.3s ease, visibility 0.3s ease, height 0s;
    }

    .mobile-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: var(--primary-color);
        border: none;
        border-radius: 8px;
        padding: 0.5rem 0.75rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-close-btn i {
        font-size: 2rem;
        color: #101010;
        line-height: 1;
    }

    .mobile-close-btn:hover {
        transform: rotate(90deg);
        box-shadow: 0 0 0 0.2rem rgba(190, 216, 31, 0.5);
    }

    .mobile-logo {
        margin-bottom: 2rem;
        text-align: center;
    }

    .mobile-logo-img {
        max-width: 200px;
        height: auto;
    }

    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0.5rem auto;
        max-width: 300px;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 1.2rem 1.5rem !important;
        font-size: 1.3rem !important;
    }
}

.navbar-fixed {
    background-image: url("../img/black-felt.png")!important;
}

.btn {
    background-color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white!important;
}

.navbar-initial {
    top: 10px;
}

.navbar-fixed {
    position: fixed;
    background: rgba(0, 0, 0, 0.7); /* Color negro con transparencia */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    padding-top: 20px!important;
    top:0;
}

.logo {
    width: 120px;
    height: auto;
}
/*** HERO SECTION ***/
/* Estilos para la sección */
.hero-section {
    background: url("../img/elfos_bg1.jpg") no-repeat center center/cover;
    padding: 100px 0;
    position: relative;
}

/* Capa oscura encima del fondo */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Ajustar el contenido para que respete la capa oscura */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Texto */
.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-section [class^="ri-"] {
    font-size: 2em;
}


/* Botón */
.btn-primary {
    background-color: #f5a623;
    border: none;
    padding: 12px 24px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e6951c;
}

.hero-img {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
}
/* D9E060 */

section.menu {
    background: linear-gradient(180deg, #f9f9f9 0%, #fff 100%);
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    font-size: 1.0rem;
    font-weight: bold;
    color: var(--secondary-color) !important;
    background-color: #edef82;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease-in-out;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    border: 2px solid #c4d54e;
}

.btn-custom i {
    font-size: 1.2rem;
    line-height: 1;
}

.btn-custom:hover, .btn-custom:active {
    background-color: #bed81f;
    transform: scale(1.05);
    background-image: url("../img/elfos_bg2.png");
    background-size: cover;
    color: #000;
}



.btn-custom:hover::before, .btn-custom:active {
    border-color: #bed81f!important;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    font-size: 1.0rem;
    font-weight: bold;
    color: var(--secondary-color) !important;
    background-color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease-in-out;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    border: 2px solid #edef82;
}

.btn-outline-custom i {
    font-size: 1.2rem;
    line-height: 1;
}

.btn-outline-custom:hover {
    background-color: #bed81f;
    background-image: url("../img/elfos_bg2.png");
    background-size: cover;
    color: #000 !important;
    transform: scale(1.05);
    border-color: #c4d54e;
}

.btn-outline-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #edef82;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    border-radius: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}

.btn-outline-custom:hover::before {
    border-color: #bed81f;
}

.btn-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #edef82;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

/* Remix icons */
[class^="ri-"] {
    vertical-align: top!important;
}

/* Divider homepage */
.custom-shape-divider-bottom-1712345678 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.custom-shape-divider-bottom-1712345678 svg {
    display: block;
    width: 100%;
    height: 100px;
}

.custom-shape-divider-bottom-1712345678 .shape-fill {
    fill: #ffffff;
}

#home-menu .section-menu {
    background-image: url("../img/elfos_bg2.png");
    background-repeat: repeat;
    background-size: 15%;
    position: relative;
    border-radius: 0 0 5px 5px;
    text-transform: uppercase;
    padding: 5px 10px;
}

#home-menu .section-menu p.title {
    font-family: "Lilita One", sans-serif;
    margin: -15px 0 0 0;
}

#home-menu .section-menu p {
    margin: 0;
}

.section-full {
    border: 1px solid #bed81f;
    border-radius: 5px;
}

/* NUEVO SISTEMA CON GRID */
.item-group-wrapper {
    border-bottom: 1px dotted #929495;
}

.item-group-wrapper:last-child {
    border-bottom: none;
}

#home-menu .item-group-grid {
    display: grid;
    grid-template-columns: max-content 1fr auto auto;
    align-items: baseline;
    gap: 0.5rem;
    padding: 4px 0;
}

#home-menu .item-group-grid:last-child {
    border-bottom: none;
}

#home-menu .item-title {
    font-family: "Lilita One", sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    color: #101010;
    white-space: nowrap;
}

#home-menu .item-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #333;
    font-size: 0.95rem;
}

#home-menu .item-price-container,
#home-menu .item-price-normal-container {
    text-align: right;
    justify-self: end;
}

#home-menu .item-price,
#home-menu .item-price-normal {
    font-family: "Lilita One", sans-serif;
    text-transform: uppercase;
    background-image: url("../img/elfos_bg2.png");
    background-repeat: repeat;
    background-size: 15%;
    padding: 0 8px;
    color: #101010;
    white-space: nowrap;
    display: inline-block;
}

#home-menu .item-price-normal-header {
    font-family: "Lilita One", sans-serif;
    text-transform: uppercase;
    background-color: #ddd;
    background-repeat: repeat;
    background-size: 15%;
    padding: 0 8px;
    color: #101010;
    white-space: nowrap;
    text-align: right;
    justify-self: end;
}


.elipse-nuevo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #bed81f;
    width: auto;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    vertical-align: top;
    margin-right: 8px;
    line-height: 1;
}

.elipse-text {
    font-family: "Lilita One", sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    color: #101010;
    text-transform: uppercase;
}

.elipse-exclusivo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff9800;
    width: auto;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    vertical-align: top;
    margin-right: 8px;
    line-height: 1;
}

/* === ALÉRGENOS === */

/* Desktop: alérgenos en línea con descripción */
.item-description {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.descripcion-texto {
    flex: 1;
}

.producto-alergenos {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.alergeno-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: transparent;
    border-radius: 50%;
    padding: 0;
    transition: all 0.3s ease;
    cursor: help;
}

.alergeno-badge:hover {
    transform: scale(1.2);
}

.alergeno-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Tippy.js tema personalizado para alérgenos */
.tippy-box[data-theme~='elfos'] {
    background-color: #101010;
    color: white;
    font-family: "Heebo", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
    padding: 6px 10px;
}

.tippy-box[data-theme~='elfos'][data-placement^='top'] > .tippy-arrow::before {
    border-top-color: #101010;
}

.tippy-box[data-theme~='elfos'][data-placement^='bottom'] > .tippy-arrow::before {
    border-bottom-color: #101010;
}

.tippy-box[data-theme~='elfos'][data-placement^='left'] > .tippy-arrow::before {
    border-left-color: #101010;
}

.tippy-box[data-theme~='elfos'][data-placement^='right'] > .tippy-arrow::before {
    border-right-color: #101010;
}

/* Móvil: ocultar alérgenos desktop, mostrar versión móvil */
.alergenos-mobile-wrapper {
    display: none;
}

.alergenos-toggle {
    display: none;
}

/* Responsive: móvil */
@media (max-width: 768px) {
    /* Aviso fijado responsive */
    .aviso-fijado {
        padding: 0.5rem 0;
    }

    .aviso-fijado-texto {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .aviso-fijado-cerrar {
        width: 26px;
        height: 26px;
        font-size: 1.3rem;
    }

    /* Tabs responsive */
    .menu-tabs-nav {
        gap: 0.35rem;
        padding: 0.35rem;
    }

    .menu-tab-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 6px;
    }

    .menu-tabs-nav::-webkit-scrollbar {
        height: 4px;
    }

    #home-menu .item-group-grid {
        grid-template-columns: 1fr auto;
        width: 100%;
    }

    #home-menu .item-title {
        white-space: normal;
        grid-column: 1 / -1;
    }

    #home-menu .item-description {
        grid-column: 1 / -1;
    }

    #home-menu .item-price-container,
    #home-menu .item-price-normal-container {
        grid-column: 1 / -1;
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-direction: row-reverse;
    }

    /* Ocultar alérgenos desktop */
    .alergenos-desktop {
        display: none !important;
    }

    /* Mostrar versión móvil - ocupa toda la línea */
    .alergenos-mobile-wrapper {
        display: block;
        grid-column: 1 / -1;
        width: 100%;
        padding: 6px 0 0 0;
        margin-top: 6px;
    }

    .alergenos-toggle {
        background: #e0e0e0;
        border: none;
        border-radius: 50%;
        color: #333;
        font-size: 0.75rem;
        font-weight: 700;
        cursor: pointer;
        padding: 0;
        display: block;
        margin-top: 0;
        margin-left: 0;
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        font-family: "Heebo", sans-serif;
        width: 22px;
        height: 22px;
        line-height: 22px;
        text-align: center;
    }

    .alergenos-toggle:active {
        transform: scale(0.95);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    }

    .alergenos-toggle.active {
        background: #d0d0d0;
    }

    .toggle-icon {
        font-size: 0.75rem;
        transition: transform 0.3s ease;
        font-weight: bold;
        display: inline-block;
    }

    .alergenos-toggle.active .toggle-icon {
        transform: rotate(180deg);
    }

    .producto-alergenos-mobile {
        display: none;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 8px;
        width: 100%;
        padding: 6px;
        background: #f9f9f9;
        border-radius: 6px;
    }

    .alergenos-titulo {
        width: 100%;
        font-weight: 700;
        font-size: 0.75rem;
        color: #101010;
        margin-bottom: 6px;
        text-transform: uppercase;
        font-family: "Heebo", sans-serif;
    }

    .producto-alergenos-mobile.show {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .alergeno-badge-mobile {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background-color: white;
        padding: 4px 8px;
        border-radius: 16px;
        border: 1.5px solid #bed81f;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
        transition: all 0.2s ease;
    }

    .alergeno-badge-mobile:active {
        transform: scale(0.95);
    }

    .alergeno-icon-mobile {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .alergeno-nombre-mobile {
        font-size: 0.7rem;
        color: #101010;
        font-weight: 600;
        font-family: "Heebo", sans-serif;
    }
}

/* === ANOTACIONES DE CATEGORÍA === */
.categoria-anotaciones {
    background-color: #edef82;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-family: "Heebo", sans-serif;
    color: #101010;
    line-height: 1.3;
}

/* === NOTAS DEL MENÚ === */
.notas-menu {
    background-color: #f5f5f5;
    border-left: 4px solid #bed81f;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    font-family: "Heebo", sans-serif;
    color: #333;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.notas-menu p {
    margin-bottom: 0.75rem;
}

.notas-menu p:last-child {
    margin-bottom: 0;
}

.notas-menu ul,
.notas-menu ol {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.notas-menu strong,
.notas-menu b {
    font-weight: 600;
    color: #101010;
}

.notas-menu em,
.notas-menu i {
    font-style: italic;
}

.categoria-anotaciones p {
    margin-bottom: 0.5rem;
}

.categoria-anotaciones p:last-child {
    margin-bottom: 0;
}

.categoria-anotaciones ul,
.categoria-anotaciones ol {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

.categoria-anotaciones strong,
.categoria-anotaciones b {
    font-weight: 600;
}

@media (max-width: 768px) {
    .categoria-anotaciones {
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .notas-menu {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* === TABS DE MENÚ === */
.menu-tabs-container {
    margin: 2rem 0;
}

.menu-tabs-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto 2rem;
}

.menu-tabs-nav {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #bed81f #f5f5f5;
}

/* Ocultar scrollbar en webkit (Chrome, Safari) pero mantener funcionalidad */
.menu-tabs-nav::-webkit-scrollbar {
    height: 6px;
}

.menu-tabs-nav::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.menu-tabs-nav::-webkit-scrollbar-thumb {
    background: #bed81f;
    border-radius: 3px;
}

.menu-tabs-nav::-webkit-scrollbar-thumb:hover {
    background: #a8c31a;
}

.menu-tab-item {
    margin: 0;
    flex-shrink: 0;
}

.menu-tab-button {
    font-family: "Lilita One", sans-serif;
    text-transform: uppercase;
    background-color: #f5f5f5;
    border: 2px solid #bed81f;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: #101010;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-tab-button i,
.menu-tab-button .fastfood-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.fastfood-icon {
    font-family: 'Fast Food Icons', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: none !important;
}

.menu-tab-button:hover {
    background-color: #e8e8e8;
    transform: scale(1.05);
}

.menu-tab-button.active {
    background-image: url("../img/elfos_bg2.png");
    background-repeat: repeat;
    background-size: 15%;
    border: 3px solid #bed81f;
    color: #101010;
    font-weight: bold;
    transform: scale(1);
    box-shadow: 0 4px 8px rgba(190, 216, 31, 0.3);
}

.menu-tabs-content {
    position: relative;
}

.menu-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.menu-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SECCIÓN DE UBICACIÓN === */
.ubicacion-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.ubicacion-section h2 {
    color: #101010;
    margin-bottom: 2rem;
}

.ubicacion-card {
    background: white;
    border: 3px solid #bed81f;
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ubicacion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(190, 216, 31, 0.3);
}

.ubicacion-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-image: url("../img/elfos_bg2.png");
    background-repeat: repeat;
    background-size: 15%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #101010;
    border: 3px solid #bed81f;
}

.ubicacion-info {
    flex: 1;
}

.ubicacion-direccion {
    font-family: "Heebo", sans-serif;
    font-size: 1.3rem;
    color: #101010;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.ubicacion-ciudad {
    font-family: "Heebo", sans-serif;
    font-size: 1.1rem;
    color: #555;
    margin: 0.5rem 0 0 0;
}

.ubicacion-action {
    flex-shrink: 0;
}

.btn-ubicacion {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-image: url("../img/elfos_bg2.png");
    background-repeat: repeat;
    background-size: 15%;
    border: 3px solid #bed81f;
    color: #101010;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: "Lilita One", sans-serif;
    text-transform: uppercase;
}

.btn-ubicacion:hover {
    background-color: #bed81f;
    transform: scale(1.05);
    color: #101010;
    box-shadow: 0 4px 12px rgba(190, 216, 31, 0.4);
}

.mapa-container {
    margin-top: 2rem;
    border: 3px solid #bed81f;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
}

.mapa-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* === MENSAJE SIN MENÚ === */
.no-menu-message {
    margin: 3rem auto;
    max-width: 800px;
    padding: 0 1rem;
}

.no-menu-content {
    background-image: url("../img/elfos_bg2.png");
    background-repeat: repeat;
    background-size: 15%;
    border: 3px solid #bed81f;
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.no-menu-title {
    font-size: 2rem;
    color: #101010;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.no-menu-text {
    font-family: "Heebo", sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 400;
}

/* === AVISO PRÓXIMO MENÚ === */
.proximo-menu-aviso {
    margin: 1rem auto 1rem;
    max-width: 900px;
    padding: 0 1rem;
}

.aviso-content {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-left: 3px solid #bed81f;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    text-align: center;
    margin-bottom: 40px;
}

.aviso-texto {
    font-family: "Heebo", sans-serif;
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .proximo-menu-aviso {
        margin: 1rem 0;
        max-width: 100%;
        padding: 0;
    }

    .no-menu-content {
        padding: 2rem 1.5rem;
    }

    .no-menu-title {
        font-size: 1.5rem;
    }

    .no-menu-text {
        font-size: 1rem;
    }

    .aviso-content {
        padding: 0.6rem 0.75rem;
    }

    .aviso-texto {
        font-size: 0.8rem;
    }
}

    /* Ubicación responsive */
    .ubicacion-section {
        padding: 2rem 0;
    }

    .ubicacion-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .ubicacion-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin: 0 auto;
    }

    .ubicacion-direccion {
        font-size: 1.1rem;
    }

    .ubicacion-ciudad {
        font-size: 1rem;
    }

    .btn-ubicacion {
        font-size: 1rem;
        padding: 0.6rem 1.25rem;
    }
}

/* === FOOTER === */
footer .social-link {
    color: #fff !important;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    will-change: transform;
}

footer .social-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

footer .social-link i {
    color: #fff;
    transition: color 0.3s ease;
    display: block;
}

footer .social-link:hover i {
    color: var(--primary-color);
}

footer h5 {
    font-size: 1.5rem;
}

footer h5 i {
    color: var(--primary-color);
}

footer .ri-restaurant-line {
    font-size: 1.1rem;
}

footer .ri-close-circle-line {
    font-size: 1.1rem;
}

footer .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transition: all 0.3s ease;
}

footer .btn-outline-light:hover {
    background-image: url("../img/elfos_bg2.png");
    background-repeat: repeat;
    background-size: cover;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #101010;
    font-weight: bold;
}

/* === BOTÓN FLOTANTE DE LLAMADA (SOLO MÓVIL) === */
.btn-llamar-flotante {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #bed81f 0%, #a8c31a 100%);
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(190, 216, 31, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.btn-llamar-flotante::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: ripple 1.5s ease-out infinite;
    opacity: 0;
}

.btn-llamar-flotante .fastfood-icon {
    font-size: 2.6rem;
    color: #fff;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.btn-llamar-flotante:hover,
.btn-llamar-flotante:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(190, 216, 31, 0.5);
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .btn-llamar-flotante {
        display: flex;
    }
}

/* === OFERTAS ESPECIALES === */
.ofertas-especiales-section {
    background: white;
}

.ofertas-subtitulo {
    font-family: "Heebo", sans-serif;
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
}

.oferta-card {
    position: relative;
    background: white;
    border: 3px solid #bed81f;
    border-radius: 20px;
    padding: 2rem;
    padding-bottom: 8rem;
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.oferta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.oferta-infantil::before {
    background-image: url('../img/menu-infantil.jpg');
}

.oferta-combo::before {
    background-image: url('../img/hamburguesa.jpg');
}

.oferta-pollo::before {
    background-image: url('../img/pollo-crujiente.jpg');
}

.oferta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(190, 216, 31, 0.3);
    border-color: #a8c31a;
}

.oferta-card:hover::before {
    opacity: 0.15;
}

.oferta-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: url("../img/elfos_bg2.png");
    background-repeat: repeat;
    background-size: 30%;
    opacity: 0.15;
    border-radius: 0 20px 0 100%;
    pointer-events: none;
    z-index: 0;
}

.oferta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #bed81f 0%, #a8c31a 100%);
    color: #101010;
    padding: 0.5rem 1.5rem;
    font-family: "Heebo", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(190, 216, 31, 0.3);
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.oferta-badge-hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    animation: pulse 2s infinite;
}

.oferta-badge-premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #101010;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 4px 16px rgba(255, 107, 107, 0.6);
    }
}

.oferta-badge i {
    font-size: 1.1rem;
}

.oferta-content {
    position: relative;
    z-index: 1;
}

.oferta-titulo {
    font-family: "Lilita One", sans-serif;
    font-size: 1.8rem;
    color: #101010;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.oferta-descripcion {
    font-family: "Heebo", sans-serif;
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.oferta-incluye {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.oferta-incluye li {
    font-family: "Heebo", sans-serif;
    font-size: 0.95rem;
    color: #333;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.oferta-incluye li i {
    color: #bed81f;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.oferta-detalle-menu {
    margin-bottom: 1rem;
}

.oferta-categoria {
    font-family: "Heebo", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #bed81f;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.oferta-opciones {
    font-family: "Heebo", sans-serif;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0;
    line-height: 1.4;
}

.oferta-precio-container {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    text-align: center;
    z-index: 2;
}

.oferta-precio {
    display: inline-block;
    font-family: "Lilita One", sans-serif;
    font-size: 2.5rem;
    color: #101010;
    background-image: url("../img/elfos_bg2.png");
    background-repeat: repeat;
    background-size: 15%;
    padding: 0.5rem 1.5rem;
    border-radius: 15px;
    border: 3px solid #bed81f;
}

.oferta-precio-especial {
    display: inline-block;
    font-family: "Lilita One", sans-serif;
    font-size: 2.5rem;
    color: white;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    padding: 0.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.oferta-nota {
    font-family: "Heebo", sans-serif;
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .ofertas-subtitulo {
        font-size: 1rem;
    }

    .oferta-card {
        padding: 1.5rem;
        padding-bottom: 6rem;
        margin-bottom: 1.5rem;
    }

    .oferta-titulo {
        font-size: 1.5rem;
    }

    .oferta-precio,
    .oferta-precio-especial {
        font-size: 2rem;
        padding: 0.4rem 1rem;
    }

    .oferta-incluye li {
        font-size: 0.9rem;
    }
}

/* === DOMICILIO EN FOOTER === */
.domicilio-info {
    font-size: 0.95rem;
}

.domicilio-item {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.domicilio-item i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.domicilio-item strong {
    color: #fff;
}

.domicilio-item-inline {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1.8;
}

.domicilio-item-inline i {
    color: #ffc107;
}

.domicilio-item-inline strong {
    color: #fff;
}

.domicilio-nota {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.domicilio-nota i {
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.domicilio-nota small {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    position: relative;
    top: 1px;
}

.domicilio-nota-footer {
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    padding-left: 1.75rem;
}

.domicilio-nota-footer strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* === FOOTER RESPONSIVE === */
@media (max-width: 768px) {
    footer .col-md-3 {
        margin-bottom: 2.5rem !important;
    }

    footer .col-md-3:last-child {
        margin-bottom: 1.5rem !important;
    }

    .domicilio-info {
        font-size: 0.9rem;
    }
}

/* === RATINGS EN FOOTER === */
.ratings-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.rating-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.rating-platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.rating-platform i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.rating-value {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.rating-stars .stars {
    display: flex;
    gap: 0.1rem;
}

.rating-stars .stars i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.reviews-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .ratings-container {
        gap: 0.5rem;
    }

    .rating-item {
        padding: 0.4rem 0.6rem;
    }

    .rating-platform {
        font-size: 0.85rem;
    }

    .rating-platform i {
        font-size: 1.1rem;
    }

    .rating-value {
        font-size: 0.9rem;
    }

    .rating-stars .stars i {
        font-size: 0.8rem;
    }

    .reviews-count {
        font-size: 0.75rem;
    }
}

/* === PÁGINA DE MENÚ === */
.menu-hero {
    background: linear-gradient(180deg, #101010 0%, #2a2a2a 50%, var(--primary-color) 100%);
    padding: 6rem 0 3rem;
    border-bottom: 3px solid var(--primary-color);
    margin-bottom: 0;
    position: relative;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/elfos_bg2.png");
    background-repeat: repeat;
    background-size: 15%;
    opacity: 0.3;
    pointer-events: none;
}

.menu-hero .container {
    position: relative;
    z-index: 1;
}

.menu-hero-title {
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.menu-hero-subtitle {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 400;
    margin: 0;
}

#menu-page {
    padding-bottom: 4rem;
}

#menu-page .menu-category-section {
    margin-bottom: 3rem;
}

#menu-page .menu-category-section:last-child {
    margin-bottom: 2rem;
}

#menu-page .menu-category-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
}

#menu-page .menu-category-title .fastfood-icon {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 2rem;
}

/* Aplicar los mismos estilos de #home-menu a #menu-page */
#menu-page .item-group-grid {
    display: grid;
    grid-template-columns: max-content 1fr auto auto;
    align-items: baseline;
    gap: 0.5rem;
    padding: 4px 0;
}

#menu-page .item-group-grid:last-child {
    border-bottom: none;
}

#menu-page .item-title {
    font-family: "Lilita One", sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    color: #101010;
    white-space: nowrap;
}

#menu-page .item-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #333;
    font-size: 0.95rem;
}

#menu-page .item-price-container,
#menu-page .item-price-normal-container {
    text-align: right;
    justify-self: end;
}

#menu-page .item-price,
#menu-page .item-price-normal {
    font-family: "Lilita One", sans-serif;
    text-transform: uppercase;
    background-image: url("../img/elfos_bg2.png");
    background-repeat: repeat;
    background-size: 15%;
    background-color: #bed81f;
    padding: 2px 6px;
    color: #101010;
    white-space: nowrap;
    display: inline-block;
}

#menu-page .item-price-normal-header {
    font-family: "Lilita One", sans-serif;
    text-transform: uppercase;
    background-color: #ddd;
    background-repeat: repeat;
    background-size: 15%;
    padding: 2px 6px;
    color: #101010;
    white-space: nowrap;
    text-align: right;
    justify-self: end;
}

/* === PÁGINA DE CONTACTO === */
.contacto-card {
    background: white;
    border: 3px solid #bed81f;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contacto-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    font-family: "Heebo", sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.contacto-alert i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contacto-alert-success {
    background-color: #d4edda;
    border: 2px solid #bed81f;
    color: #155724;
}

.contacto-alert-success i {
    color: #bed81f;
}

.contacto-alert-error {
    background-color: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
}

.contacto-alert-error i {
    color: #dc3545;
}

.contacto-alert-info,
.contacto-alert-warning {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
}

.contacto-alert-info i,
.contacto-alert-warning i {
    color: #ffc107;
}

.contacto-form .form-label {
    font-family: "Heebo", sans-serif;
    font-weight: 600;
    color: #101010;
    margin-bottom: 0.5rem;
}

.contacto-form .form-control {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem;
    font-family: "Heebo", sans-serif;
    transition: all 0.3s ease;
}

.contacto-form .form-control:focus {
    border-color: #bed81f;
    box-shadow: 0 0 0 0.2rem rgba(190, 216, 31, 0.25);
}

.contacto-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contacto-form .form-check-input {
    border: 2px solid #ddd;
    width: 1.25rem;
    height: 1.25rem;
}

.contacto-form .form-check-input:checked {
    background-color: #bed81f;
    border-color: #bed81f;
}

.contacto-form .form-check-label {
    font-family: "Heebo", sans-serif;
    color: #555;
    margin-left: 0.5rem;
}

.btn-enviar-contacto {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, #bed81f 0%, #a8c31a 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-family: "Heebo", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(190, 216, 31, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-enviar-contacto:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(190, 216, 31, 0.4);
    color: #fff;
}

.btn-enviar-contacto i {
    font-size: 1.2rem;
}

/* Honeypot fields - ocultos visualmente */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Cards de información de contacto */
.info-contacto-card {
    background: #f9f9f9;
    border: 2px solid #bed81f;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.info-contacto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(190, 216, 31, 0.3);
}

.info-contacto-card .info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #bed81f 0%, #a8c31a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-contacto-card .info-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.info-contacto-card h5 {
    font-family: "Lilita One", sans-serif;
    color: #101010;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.info-contacto-card p {
    font-family: "Heebo", sans-serif;
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

.info-contacto-card a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-contacto-card a:hover {
    color: #bed81f;
}

@media (max-width: 768px) {
    .contacto-card {
        padding: 2rem 1.5rem;
    }

    .btn-enviar-contacto {
        width: 100%;
        justify-content: center;
    }

    .menu-hero {
        padding: 5rem 0 2rem;
    }

    .menu-hero-title {
        font-size: 2.5rem;
    }

    .menu-hero-subtitle {
        font-size: 1rem;
    }

    #menu-page .menu-category-title {
        font-size: 1.5rem;
    }

    #menu-page .menu-category-section {
        margin-bottom: 2rem;
    }

    #menu-page .item-group-grid {
        grid-template-columns: 1fr auto;
        width: 100%;
    }

    #menu-page .item-title {
        white-space: normal;
        grid-column: 1 / -1;
    }

    #menu-page .item-description {
        grid-column: 1 / -1;
    }

    #menu-page .item-price-container,
    #menu-page .item-price-normal-container {
        grid-column: 1 / -1;
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

/* === GALERÍA DE FOTOS === */
.galeria-section {
    padding: 4rem 0;
    background: white;
}

.galeria-section h2 {
    color: #101010;
    margin-bottom: 0.5rem;
}

.galeria-subtitulo {
    font-family: "Heebo", sans-serif;
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
    margin-bottom: 2rem;
}

.galeria-carousel-container {
    position: relative;
    padding: 0;
}

.galeria-swiper-top,
.galeria-swiper-bottom {
    width: 100%;
    padding: 5px 0;
}

.galeria-swiper-top {
    margin-bottom: 10px;
}

.galeria-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.galeria-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(190, 216, 31, 0.3);
    border-color: #bed81f;
}

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

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

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 16, 16, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.galeria-overlay i {
    font-size: 2.5rem;
    color: #bed81f;
}


/* === LIGHTBOX === */
.galeria-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-title {
    font-family: "Heebo", sans-serif;
    color: #fff;
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.9;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(190, 216, 31, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close i {
    font-size: 1.8rem;
    color: #101010;
}

.lightbox-close:hover {
    background: #bed81f;
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(190, 216, 31, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev i,
.lightbox-next i {
    font-size: 1.8rem;
    color: #101010;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #bed81f;
    transform: translateY(-50%) scale(1.1);
}

/* Responsive galería */
@media (max-width: 768px) {
    .galeria-section {
        padding: 2rem 0;
    }

    .galeria-subtitulo {
        font-size: 1rem;
    }

    .galeria-overlay i {
        font-size: 1.8rem;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-close i,
    .lightbox-prev i,
    .lightbox-next i {
        font-size: 1.4rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-title {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}

/* ========================================
   PANEL DEBUG FECHA/HORA
   ======================================== */

.debug-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    padding: 0;
    z-index: 9999;
    min-width: 320px;
    max-width: 400px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    transition: all 0.3s ease;
}

.debug-panel.active {
    border: 2px solid #bed81f;
    box-shadow: 0 8px 32px rgba(190, 216, 31, 0.3);
}

.debug-panel-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    user-select: none;
}

.debug-panel-icon {
    font-size: 1.2rem;
}

.debug-panel-title {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-grow: 1;
}

.debug-active-badge {
    background: #bed81f;
    color: #101010;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.debug-panel-content {
    padding: 16px;
}

.debug-datetime-display {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
}

.debug-datetime-display.highlight {
    background: rgba(190, 216, 31, 0.15);
    border: 1px solid rgba(190, 216, 31, 0.3);
}

.debug-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.debug-value {
    font-size: 0.95rem;
    font-weight: 600;
}

.debug-datetime-real {
    color: #ffffff;
}

.debug-datetime-simulated {
    color: #bed81f;
    font-weight: 700;
}

.debug-form {
    margin-top: 12px;
}

.debug-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.debug-form-group {
    display: flex;
    flex-direction: column;
}

.debug-form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.debug-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px 10px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.debug-input:focus {
    outline: none;
    border-color: #bed81f;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(190, 216, 31, 0.1);
}

.debug-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.debug-form-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.debug-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.debug-btn-primary {
    background: #bed81f;
    color: #101010;
}

.debug-btn-primary:hover {
    background: #d0ea2f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(190, 216, 31, 0.3);
}

.debug-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.debug-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.debug-message {
    display: none;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.debug-message.success {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #2ecc71;
}

.debug-message.error {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #e74c3c;
}

/* Botón de toggle minimizar/maximizar */
.debug-toggle-btn {
    background: rgba(190, 216, 31, 0.2);
    border: 1px solid rgba(190, 216, 31, 0.4);
    border-radius: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    margin-left: auto;
}

.debug-toggle-btn i {
    font-size: 1.2rem;
    color: #bed81f;
    transition: transform 0.2s ease;
}

.debug-toggle-btn:hover {
    background: rgba(190, 216, 31, 0.3);
    transform: scale(1.1);
}

/* Panel minimizado */
.debug-panel.minimized {
    min-width: auto;
}

.debug-panel.minimized .debug-panel-header {
    border-bottom: none;
}

.debug-panel.minimized .debug-panel-content {
    max-height: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.debug-panel-content {
    max-height: 1000px;
    opacity: 1;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .debug-panel {
        bottom: 80px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }

    .debug-form-row {
        grid-template-columns: 1fr;
    }
}
