/* Floating WhatsApp contact button — IL (Hebrew) store only. Brand gold #eeb860. */
.jbb-whatsapp-fab {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Must sit above the theme footer, which carries z-index: 4444444;
       otherwise the button is hidden/unclickable once the footer scrolls in. */
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #eeb860;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.jbb-whatsapp-fab:hover,
.jbb-whatsapp-fab:focus {
    background-color: #e0a641;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    transform: scale(1.06);
    text-decoration: none;
}

.jbb-whatsapp-fab__icon {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    display: block;
}

@media (max-width: 767px) {
    .jbb-whatsapp-fab {
        bottom: 14px;
        left: 14px;
        width: 48px;
        height: 48px;
    }

    .jbb-whatsapp-fab__icon {
        width: 28px;
        height: 28px;
    }
}
