/* SOCIAL BUBBLE FIX - FORCE POSITIONING AND VISIBILITY */

.social-bubble {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.social-bubble-toggle {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #ffc107, #ff8c00) !important;
    border: none !important;
    color: white !important;
    font-size: 24px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 1000000 !important;
}

.social-bubble-toggle:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6) !important;
}

.social-bubble-menu {
    position: absolute !important;
    bottom: 70px !important;
    right: 0 !important;
    display: none !important;
    flex-direction: column !important;
    gap: 10px !important;
    z-index: 999998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(20px) !important;
    transition: all 0.3s ease !important;
}

.social-bubble-menu.show {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.social-item {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    text-decoration: none !important;
    font-size: 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2) !important;
}

.social-item.facebook {
    background: #1877f2 !important;
}

.social-item.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.social-item.whatsapp {
    background: #25d366 !important;
}

.social-item:hover {
    transform: scale(1.1) !important;
    color: white !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .social-bubble {
        bottom: 45px !important;
        right: 15px !important;
    }
    
    .social-bubble-toggle {
        width: 55px !important;
        height: 55px !important;
        font-size: 22px !important;
    }
    
    .social-item {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
}
