/* WhatsApp Floating Button - Site Wide */
.whatsapp-float {
    position: fixed;
    bottom: 75px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #FFB74D; /* Light Orange */
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 183, 77, 0.4);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    font-size: 36px;
    text-decoration: none;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

/* Text appears on hover */
.whatsapp-float:hover::after {
    content: "Order Now";
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #FFB74D;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    animation: fadeIn 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 65px;
        right: 15px;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}
