/* ============================================
   MOBILE FIXES - FUERZA HAMBURGUESA
   ============================================ */

/* FORZAR HAMBURGUESA VISIBLE EN MÓVIL */
.mobile-menu-toggle {
    display: block !important;
    width: 30px !important;
    height: 30px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 5px 0 !important;
    position: relative !important;
    z-index: 1000 !important;
}

.mobile-menu-toggle span {
    display: block !important;
    width: 28px !important;
    height: 3px !important;
    background-color: #000 !important;
    border-radius: 2px !important;
    margin: 5px 0 !important;
    transition: all 0.3s ease !important;
}

/* X cuando está activo */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
    background-color: #000 !important;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
    background-color: #000 !important;
}

/* Ocultar en desktop */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* LUPA VISIBLE */
.search-toggle {
    display: flex !important;
    color: #000 !important;
    font-size: 1.25rem !important;
}

@media (min-width: 768px) {
    .search-toggle {
        display: flex !important;
    }
}

/* X DEL MODAL DE GALERÍA */
#galleryModal .modal-close {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    width: 45px !important;
    height: 45px !important;
    font-size: 2rem !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10001 !important;
    cursor: pointer !important;
}

#galleryModal .modal-close:hover {
    background: rgba(0, 0, 0, 1) !important;
}
