/* WhatsApp Button Styles */
.whatsapp-fixed-button {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    margin: 0;
}

.whatsapp-fixed-button .banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.whatsapp-fixed-button .banner-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.whatsapp-fixed-button .banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: white !important;
}

.whatsapp-fixed-button .banner-btn:hover::before {
    left: 0;
}

.whatsapp-fixed-button .banner-btn svg {
    margin-right: 8px;
    font-size: 18px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .whatsapp-fixed-button {
        justify-content: center;
    }
    
    .whatsapp-fixed-button .banner-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
