/* =====================================================
   CUSTOMIZATION REQUEST
===================================================== */

.spw-customization-prompt {
    margin-top: 25px;
    padding: 18px;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    background: #f8fafc;
}

.spw-customization-prompt strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.spw-customization-prompt p {
    margin: 0 0 15px;
    line-height: 1.6;
}


/* =====================================================
   MODAL
===================================================== */

.spw-customization-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.spw-customization-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}


.spw-customization-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}


.spw-customization-dialog h2 {
    margin-top: 0;
    margin-bottom: 10px;
}


.spw-customization-intro {
    line-height: 1.6;
    margin-bottom: 25px;
}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.spw-customization-close {
    position: absolute;
    top: 12px;
    right: 15px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}


/* =====================================================
   STATUS
===================================================== */

.spw-customization-status {
    margin: 15px 0;
    line-height: 1.5;
}


/* =====================================================
   HONEYPOT
===================================================== */

.spw-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* =====================================================
   BODY
===================================================== */

body.spw-modal-open {
    overflow: hidden;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .spw-customization-modal {
        padding: 10px;
    }

    .spw-customization-dialog {
        padding: 22px;
        max-height: 94vh;
    }

    .spw-customization-dialog h2 {
        font-size: 22px;
    }

    .spw-customization-dialog
    .spw-button-group {
        flex-direction: column;
    }

    .spw-customization-dialog
    .spw-button {
        width: 100%;
    }

}