/* Estilos para el menú primario en dispositivos móviles */
.mobile-menu-content {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid #f0f0f0;
}

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

.mobile-menu-link {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background-color: #f9f9f9;
    color: #19abe3;
}

.mobile-menu-item.dropdown .dropdown-menu {
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.mobile-menu-item.dropdown .dropdown-item {
    padding: 10px 25px;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-item.dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.mobile-menu-item.dropdown .dropdown-item:hover {
    background-color: #f9f9f9;
    color: #19abe3;
}

/* Estilos para los botones especiales */
.mobile-menu-item.special-button {
    margin-top: 15px;
}

.mobile-menu-item.special-button .mobile-menu-link {
    border-radius: 5px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: left;
    margin: 5px 10px;
    width: 30%;
}

/* Estilo para el botón de Oficina Virtual */
.mobile-menu-link.oficina-virtual-link {
    background-color: #19abe3;
}

/* Estilo para el botón de Mi Tienda */
.mobile-menu-link.mi-tienda-link {
    background-color: #19abe3;
}

/* Estilos para pantallas pequeñas */
@media (max-width: 991px) {
    .mobile-menu-content {
        width: 100%;
    }
}