/* ===============================
   Floating WhatsApp Button
=============================== */

.mwl-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.mwl-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.25s ease;
}

.mwl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}


/* ===============================
   Modal Background
=============================== */

.mwl-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}


/* ===============================
   Modal Card
=============================== */

.mwl-modal-content {
    background: #ffffff;
    width: 380px;
    max-width: 92%;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    font-family: system-ui, -apple-system, sans-serif;
}

.mwl-modal-content h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.mwl-subtext {
    margin: 0 0 18px;
    font-size: 13px;
    color: #666;
}


/* ===============================
   Inputs
=============================== */

.mwl-modal-content input,
.mwl-modal-content textarea,
.mwl-modal-content select {
    width: 100%;
    padding: 12px 14px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    box-sizing: border-box;
}

.mwl-modal-content textarea {
    resize: vertical;
}


/* ===============================
   Checkbox Fix (important)
=============================== */

.mwl-modal-content label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-top: 8px;
}

.mwl-modal-content input[type="checkbox"] {
    width: auto;
    margin: 0;
}


/* ===============================
   Buttons Row
=============================== */

.mwl-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.mwl-start-btn {
    flex: 1;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.mwl-cancel-btn {
    flex: 1;
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}


/* ===============================
   Status Text
=============================== */

#mwl-status {
    margin-top: 12px;
    font-size: 14px;
    color: #444;
}


/* Honeypot anti-spam */
.mwl-hp {
    position: absolute;
    left: -5000px;
}

.mwl-btn {
    padding: 18px 26px;
    font-size: 17px;
}

.mwl-btn svg {
    width: 22px;
    height: 22px;
}

