/* Floating Menu Styles */
@media (max-width: 991px) {
    .floating-oso-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        z-index: 999999 !important;
    }
}

.floating-oso-menu {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99999;
}

/* Botón principal (cabeza del oso / mascara) */
.oso-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--neon-red);
    background: #000;
    padding: 8px;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.3);
    transition: all 0.3s ease;
}

.oso-fab:hover {
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.6);
    transform: scale(1.05);
}

.oso-fab img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.oso-fab-menu {
    position: absolute;
    bottom: 80px;
    /* el menú aparecerá arriba del botón */
    left: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    /* animación hacia arriba */
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-oso-menu.open .oso-fab-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.oso-item {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 999px;
    /* Rounded vertices */
    padding: 8px 20px;
    /* Slightly more padding for pill shape */
    text-decoration: none;
    border: 1px solid var(--neon-red);
    /* Red border like the circle */
    transition: all 0.2s ease;
    min-width: 150px;
}

.oso-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 1px;
}

.oso-item:hover {
    background: var(--neon-red);
    border-color: var(--neon-red);
}

.oso-item:hover .oso-label {
    color: #000;
    font-weight: bold;
}