/* ========== MENÚ MÓVIL ANAKU - ESTILOS ========== */

/* Ocultar en escritorio */
@media (min-width: 1200px) {
    .anaku-mobile-menu-container {
        display: none !important;
    }
}

/* Mostrar en móvil */
@media (max-width: 1199px) {
    .anaku-mobile-menu-container {
        display: block;
    }
}

/* Barra superior */
.anaku-mobile-bar {
    background: #ffffff;
    border-bottom: 1px solid #E2DDDA;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.anaku-mobile-logo {
    text-align: center;
}

.anaku-mobile-logo-img {
    height: 45px;
    width: auto;
}

/* Botón hamburguesa - a la derecha */
.anaku-hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    display: flex;
    position: absolute;
    right: 20px;  /* Cambiado de left a right */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
}

.anaku-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #292929;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.anaku-hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.anaku-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.anaku-hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Menú lateral */
.anaku-side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: #ffffff;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 10002;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.anaku-side-menu.open {
    left: 0;
}

.anaku-side-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #E2DDDA;
}

.anaku-side-logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3A2D2B;
}

.anaku-side-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #292929;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anaku-side-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.anaku-side-item {
    border-bottom: 1px solid #f0f0f0;
}

.anaku-side-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: #292929;
    cursor: pointer;
}

.anaku-side-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #999;
}

.anaku-side-item.active .anaku-side-arrow {
    transform: rotate(180deg);
}

.anaku-submenu {
    display: none;
    background: #f9f9f9;
    padding: 16px 20px 20px 32px;
}

.anaku-side-item.active .anaku-submenu {
    display: block;
}

.anaku-submenu-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: #D5BCAB;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 16px 0 10px 0;
}

.anaku-submenu-title:first-child {
    margin-top: 0;
}

.anaku-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.anaku-submenu-list li {
    margin-bottom: 8px;
}

.anaku-submenu-list a {
    text-decoration: none;
    color: #666;
    font-size: 0.85rem;
    display: block;
    padding: 5px 0;
}

.anaku-submenu-list a:hover {
    color: #D5BCAB;
    padding-left: 8px;
}

.anaku-submenu-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.anaku-submenu-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.anaku-submenu-img {
    width: 100%;
    height: auto;
    display: block;
}

.anaku-submenu-img-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
}

.anaku-side-footer {
    padding: 20px;
    border-top: 1px solid #E2DDDA;
    margin-top: auto;
}

.anaku-side-language {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.anaku-lang-link {
    text-decoration: none;
    color: #292929;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 30px;
}

.anaku-lang-link.active {
    background: #D5BCAB;
    color: #3A2D2B;
}

.anaku-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.anaku-overlay.active {
    opacity: 1;
    visibility: visible;
}