/* =========================
   VOUCHER BUY PAGE
========================= */

.voucher-section {
    font-family: 'Poppins', sans-serif;
}

/* HEADER */
.voucher-header h2 {
    font-weight: 700;
    color: #222;
}

.wallet-box {
    display: inline-block;
    padding: 8px 14px;
    background: #f1f3f5;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 10px;
}

/* CARD */
.voucher-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* PAYMENT BOX */
.payment-box {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 10px;
}

/* BUTTON */
.btn-success {
    border-radius: 10px;
    font-weight: 600;
}

/* =========================
   MODALS
========================= */

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

.voucher-modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    width: 320px;
    text-align: center;
    animation: pop .25s ease-in-out;
}

@keyframes pop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ICONS */
.success-icon {
    font-size: 42px;
    color: #28a745;
}

.warning-icon {
    font-size: 42px;
    color: #f39c12;
}

.voucher-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.voucher-modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    width: 320px;
    text-align: center;
}

.voucher-card {
    padding: 20px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.wallet-box {
    margin-top: 10px;
    font-weight: bold;
}