<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-float:focus {
    outline: none;
    color: white;
    text-decoration: none;
}

.whatsapp-float i {
    margin-top: 16px;
    color: white;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        line-height: 55px;
        font-size: 26px;
    }
    
    .whatsapp-float i {
        margin-top: 14px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-float i {
        margin-top: 13px;
    }
}

/* Ensure button doesn't interfere with cookie banner */
.cookie-consent-banner.show ~ .whatsapp-float {
    bottom: 120px;
    transition: bottom 0.3s ease;
}

@media (max-width: 768px) {
    .cookie-consent-banner.show ~ .whatsapp-float {
        bottom: 200px;
    }
}

/* Hide during print */
@media print {
    .whatsapp-float {
        display: none;
    }
}</pre></body></html>