/* whatsapp.css */

.whatsapp-widget {
    position: fixed;
    bottom: calc(var(--space-xl) + 60px); /* scroll-top butonunun üzerinde */
    right: var(--space-xl);
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: var(--z-dropdown);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

/* Pulse ring */
.wa-pulse {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(37,211,102,.4);
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: .7; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}
