/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* ===== STICKY WIDGET STYLES ===== */
.sticky-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: auto;
}

.sw-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: none;
    outline: none;
}

/* Donate Button */
.sw-donate {
    background: linear-gradient(135deg, #8B0000, #B22222, #DC143C);
}

/* Amazon/Wishlist Button */
.sw-wishlist {
    background: linear-gradient(135deg, #FF9900, #FFB84D, #FFCC80);
}

/* Animal Sponsorship Button */
.sw-sponsor {
    background: linear-gradient(135deg, #8B4513, #A0522D, #CD853F);
}

/* Volunteer Button */
.sw-volunteer {
    background: linear-gradient(135deg, #28a745, #34ce57, #48d968);
}

/* Contact Button */
.sw-contact {
    background: linear-gradient(135deg, #007bff, #3395ff, #66afff);
}

.sw-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.sw-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.sw-button:hover .sw-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(139, 0, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-widget {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .sw-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .sw-tooltip {
        right: 60px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .sticky-widget {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .sw-button {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .sw-tooltip {
        display: none;
    }
}