/**
 * Floating WhatsApp Button Styles
 * File: whatsapp-float.css (place in Astra Child Theme root)
 */

.giftsnbakery-whatsapp-float {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 32px;
}

.giftsnbakery-whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.giftsnbakery-whatsapp-float i {
    color: #ffffff;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .giftsnbakery-whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
        font-size: 26px;
    }
}

/* Pulse Animation */
.giftsnbakery-whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.6;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}