/* ===== WhatsApp Chat Widget ===== */
.jks-wa-toggle {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    transition: transform .2s ease;
}

.jks-wa-toggle:hover {
    transform: scale(1.08);
}

.jks-wa-window {
    position: fixed;
    right: 24px;
    bottom: 96px;
    width: 320px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    font-family: inherit;
}

.jks-wa-window.jks-open {
    display: flex;
}

.jks-wa-header {
    background: #25d366;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jks-wa-header-title {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.jks-wa-header-title strong {
    font-size: 15px;
}

.jks-wa-header-title span {
    font-size: 11px;
    opacity: .85;
}

.jks-wa-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}

.jks-wa-body {
    padding: 14px 16px;
    background: #f7f9fc;
}

.jks-wa-body p {
    margin: 0 0 10px;
    font-size: 13.5px;
    color: #333;
    line-height: 1.45;
}

.jks-wa-body textarea {
    width: 100%;
    resize: none;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}

.jks-wa-body textarea:focus {
    border-color: #25d366;
}

.jks-wa-send {
    margin-top: 10px;
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.jks-wa-send:hover {
    background: #1fbd5a;
}

@media (max-width: 480px) {
    .jks-wa-window {
        left: 16px;
        right: 16px;
        width: auto;
    }

    .jks-wa-toggle {
        right: 16px;
        bottom: 16px;
    }
}
