/* <!-- ==============================
            POPUP STYLES
            ============================== --> */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-overlay.active {
    display: flex;
}

.popup-card {
    background: #ffffff;
    padding: 24px;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.popup-card h3 {
    margin-bottom: 6px;
}

.popup-card input,
.popup-card textarea {
    width: 100%;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}