/* WhatsApp Bağlam — mobil öncelikli.
   Dokunma hedefi her yerde >=44px; hover'a bağlı hiçbir işlev yok. */

.wwb-buton {
    --wwb-yesil: #25d366;
    --wwb-yesil-koyu: #1da851;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 16px;
    border: 0;
    border-radius: 6px;
    background: var(--wwb-yesil);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color .15s ease;
}

.wwb-buton:hover,
.wwb-buton:focus {
    background: var(--wwb-yesil-koyu);
    color: #fff;
    text-decoration: none;
}

/* Klavye kullanıcısı için görünür odak — fare tıklamasında görünmez. */
.wwb-buton:focus-visible {
    outline: 3px solid #0b5d2e;
    outline-offset: 2px;
}

.wwb-ikon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
}

/* --- Ürün sayfası: sepete ekle düğmesinin altı --- */

.wwb-tekil-sarmal {
    display: block;
    width: 100%;
    margin: 12px 0 4px;
    clear: both;
}

.wwb-buton.wwb-tekil {
    width: 100%;
    max-width: 320px;
    font-size: 15px;
    padding: 12px 18px;
}

/* --- Ürün kartı (mağaza / kategori / arama) --- */

.wwb-dongu-sarmal {
    display: block;
    padding: 0 10px 12px;
    text-align: center;
}

.wwb-buton.wwb-dongu {
    width: 100%;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 5px;
}

.wwb-buton.wwb-dongu .wwb-ikon {
    width: 17px;
    height: 17px;
}

/* --- Yüzen destek butonu --- */

.wwb-yuzen-sarmal {
    position: fixed;
    z-index: 9998; /* Flatsome modal/menü katmanının altında kalsın. */
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
}

/* Konum sınıfı sarmalın KENDİSİNDE. Böylece left/right asla birlikte
   atanmaz — ikisi birden atanırsa kap genişler ve buton yine sola yapışır. */
.wwb-yuzen-sarmal--sol {
    left: calc(16px + env(safe-area-inset-left, 0px));
    right: auto;
}

.wwb-yuzen-sarmal--sag {
    right: calc(16px + env(safe-area-inset-right, 0px));
    left: auto;
}

.wwb-buton.wwb-yuzen {
    pointer-events: auto;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 28px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .28);
}

.wwb-buton.wwb-yuzen .wwb-ikon {
    width: 24px;
    height: 24px;
}

/* Dar ekranda yazı gizlenir, yuvarlak ikon kalır — ama hedef 48px'in
   altına DÜŞMEZ. */
@media (max-width: 480px) {
    .wwb-buton.wwb-yuzen {
        width: 56px;
        height: 56px;
        min-height: 56px;
        padding: 0;
        border-radius: 50%;
    }

    .wwb-buton.wwb-yuzen .wwb-metin {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .wwb-buton.wwb-yuzen .wwb-ikon {
        width: 28px;
        height: 28px;
    }

    .wwb-dongu-sarmal {
        padding: 0 6px 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wwb-buton {
        transition: none;
    }
}

/* Yazdırmada WhatsApp butonu anlamsız. */
@media print {
    .wwb-yuzen-sarmal,
    .wwb-dongu-sarmal,
    .wwb-tekil-sarmal {
        display: none !important;
    }
}
