/* Müşteri tarafındaki tüm sayfalarda sabit WhatsApp iletişim düğmesi */
.floating-whatsapp {
    position: fixed;
    top: 85%;
    right: 1rem;
    z-index: 1045;
    display: inline-grid;
    width: 3.5rem;
    height: 3.5rem;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0.75rem 1.75rem rgba(18, 140, 75, 0.32);
    transform: translateY(-50%);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.floating-whatsapp:hover {
    background: #1fb85a;
    color: #fff;
    box-shadow: 0 1rem 2rem rgba(18, 140, 75, 0.4);
    transform: translateY(-50%) scale(1.07);
}

.floating-whatsapp:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.4);
    outline-offset: 3px;
}

.floating-whatsapp .bi {
    font-size: 1.9rem;
    line-height: 1;
}

@media (max-width: 575.98px) {
    .floating-whatsapp {
        top: auto;
        bottom: 1rem;
        left: 0.75rem;
        width: 3.15rem;
        height: 3.15rem;
        transform: none;
    }

    .floating-whatsapp:hover {
        transform: scale(1.06);
    }

    .floating-whatsapp .bi {
        font-size: 1.7rem;
    }
}
