* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #f4f7ff 0%, #f8fafc 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #111827;
}

.background{
    position:fixed;
    inset:0;
    z-index:-1;
    background:
    radial-gradient(circle at 18% 18%,rgba(160,255,165,.65),transparent 22%),
    radial-gradient(circle at 72% 25%,rgba(255,247,145,.55),transparent 22%),
    radial-gradient(circle at 28% 75%,rgba(181,255,255,.55),transparent 25%),
    radial-gradient(circle at 78% 70%,rgba(255,205,232,.45),transparent 22%),
    #f8f9fc;
    filter:blur(18px);
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.payment-card {
    width: min(450px, 100%);
    background: #ffffff;
    border-radius: 1px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* .progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
} */

/* .step-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
} */

/* .step-pill--active {
    background: #eef2ff;
    color: #4f46e5;
} */

/* .step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
} */

.step-pill--active .step-dot {
    background: #4f46e5;
}

.step-dot--muted {
    background: #cbd5e1;
}

.progress-line {
    width: 34px;
    height: 1px;
    background: #d1d5db;
}

.card-header {
    text-align: center;
    margin-bottom: 2px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.section {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.section:last-of-type {
    border-bottom: none;
}

.section h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.item span {
    color: #6b7280;
    font-size: 13px;
}

.item strong {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    text-align: right;
}

.item.total {
    padding-top: 10px;
    margin-top: 2px;
}

.item.total span {
    font-weight: 600;
    color: #111827;
}

.green {
    color: #16a34a;
}

.red {
    color: #dc2626;
}

.notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fff8e1;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 10px 12px;
    margin-top: 2px;
}

.notice-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f59e0b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.notice p {
    font-size: 12px;
    line-height: 1.45;
    color: #92400e;
}

.notice strong {
    font-weight: 600;
}

.confirm-link {
    display: block;
    text-decoration: none;
    margin-top: 2px;
}

.confirm-btn {
    width: 100%;
    border: none;
    border-radius: 3px;
    background:#7066E0;
    color: #fff;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

/* .confirm-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
    filter: brightness(1.02);
} */

.confirm-btn:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    body {
        padding: 14px;
    }

    .payment-card {
        padding: 16px;
        border-radius: 14px;
    }

    h2 {
        font-size: 18px;
    }

    .section h3 {
        font-size: 14px;
    }

    .item span,
    .item strong {
        font-size: 13px;
    }

    .notice p {
        font-size: 11px;
    }

    .confirm-btn {
        padding: 12px 14px;
        font-size: 13px;
    }
}