/* Modal WhatsApp Form Styles */
.whats-modal {
    position: fixed;
    right: 30px;
    bottom: 190px;
    z-index: 1002;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: auto;
    pointer-events: none;
}
.whats-modal-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 24px 18px 18px 18px;
    min-width: 320px;
    max-width: 350px;
    width: 100%;
    margin-bottom: 15px;
    margin-right: 15px;
    pointer-events: auto;
    position: relative;
}
.whats-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #888;
    cursor: pointer;
    z-index: 2;
}
#whats-form h5 {
    font-weight: 600;
    margin-bottom: 18px;
    color: #20b038;
}
#whats-form .form-group {
    margin-bottom: 12px;
}
#whats-form .form-control {
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    padding: 8px 12px;
}
#whats-form .btn-success {
    background: linear-gradient(90deg,#20b038,#60d66a);
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 8px;
}
@media (max-width: 600px) {
    .whats-modal-content {
        min-width: 90vw;
        max-width: 95vw;
        padding: 16px 8px 12px 8px;
    }
    .whats-modal {
        right: 0;
        bottom: 180px;
        width: auto;
    }
}
.whats-modal.show {
    display: flex !important;
}
