﻿.whatsapp-float {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    padding: 10px 15px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 45px;
        right: 10px;
        padding: 8px 12px;
    }

    .whatsapp-icon {
        width: 25px;
        height: 25px;
    }

    .whatsapp-text {
        font-size: 14px;
    }
}
