
/* ===== OVERLAY ===== */
.auto-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

/* ===== POPUP BOX ===== */
.auto-popup-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    max-width: 95%;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
}

/* CLOSE */
.auto-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* TEXT */
.sub-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* TRUST BADGE */
.trust-badge {
    background: #fff3ed;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 15px;
    text-align: center;
}

.trust-badge i {
    color: #ff6a00;
}

.trust-badge strong {
    color: #000;
}

/* INPUT */
.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 7px;
}

.input-group i {
    color: #f0542d;
    min-width: 20px;
}

.input-group input,
.input-group select {
    border: none;
    outline: none;
    flex: 1;
}

/* BUTTON */
.auto-btn {
    width: 100%;
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 25px;
    cursor: pointer;
}

.auto-btn:hover {
    background: #000;
}

/* MOBILE */
@media (max-width: 576px) {
    .auto-popup-box {
        width: 90%;
        padding: 20px 15px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .auto-popup-box h2 {
        font-size: 18px;
    }
}
