﻿#whatsapp-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999;
    font-family: Arial, sans-serif;
}

    /* İçerideki her şeye reset gibi davranalım */
    #whatsapp-widget, #whatsapp-widget * {
        box-sizing: border-box;
    }

@media (max-width: 991.98px) {
    #whatsapp-widget {
        display: none !important;
    }
}

#whatsapp-button img {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform .3s;
    display: block;
}

    #whatsapp-button img:hover {
        transform: scale(1.08);
    }

/* Popup: sabit boyut + doğru konum */
#whatsapp-popup {
    display: none;
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    overflow: hidden;
}

/* !!! header class çakışmasın diye wa- prefix */
.wa-head {
    background: #075e54;
    color: #fff;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-head-title {
    font-weight: 700;
    font-size: 14px;
}

#close-popup {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
}

.wa-body {
    padding: 10px 12px;
    background: #f3f3f3;
    font-size: 13px;
    color: #222;
}

    .wa-body p {
        margin: 0;
    }

#start-chat {
    display: block;
    background: #25d366;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 12px;
    font-weight: 700;
}
