/**
 * WhatsApp Floating Button Styles
 * 
 * @package RevHyper
 * @since 1.0.0
 */

.revhyper-whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999998;
    animation: revhyper-whatsapp-fadeIn 0.5s ease-out;
}

.revhyper-whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.revhyper-whatsapp-link:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white;
    text-decoration: none;
}

.revhyper-whatsapp-link:active {
    transform: translateY(0);
}

.revhyper-whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.revhyper-whatsapp-text {
    font-size: 1rem;
    font-weight: 600;
}

@keyframes revhyper-whatsapp-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .revhyper-whatsapp-button {
        bottom: 15px;
        right: 15px;
    }
    
    .revhyper-whatsapp-link {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
        gap: 0.5rem;
    }
    
    .revhyper-whatsapp-icon {
        width: 20px;
        height: 20px;
    }
    
    .revhyper-whatsapp-text {
        font-size: 0.9375rem;
    }
}

/* Hide on very small screens if needed */
@media (max-width: 480px) {
    .revhyper-whatsapp-link {
        padding: 0.625rem 0.875rem;
    }
}

/* Ensure it doesn't overlap with other fixed elements */
@media (max-width: 1024px) {
    .revhyper-whatsapp-button {
        bottom: 80px; /* Space for mobile menu if exists */
    }
}














