/* ===== Courier Payment / Activation Info ===== */

.payment-section {
    background: var(--bg-card);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto;
}

.payment-section h1 {
    font-size: 2.4em;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: none;
    padding-bottom: 0;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.payment-section h2 {
    color: var(--brand);
    margin-top: 40px;
    margin-bottom: 18px;
    font-size: 1.8em;
    font-weight: 700;
}

.payment-section h3 {
    color: var(--brand-light);
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 1.3em;
    font-weight: 600;
}

.payment-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 1.05em;
}

.status-box {
    background: var(--brand-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    margin: 28px 0;
    text-align: center;
    border: 1px solid rgba(229,57,53,0.1);
}

.status-text {
    font-size: 1.2em;
    color: var(--brand);
    margin-bottom: 12px;
    font-weight: 700;
}

.website-instruction {
    font-size: 1.1em;
    color: var(--text);
    background: var(--bg-card);
    padding: 22px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--brand);
    margin: 22px 0;
    box-shadow: var(--shadow-sm);
}

.steps-list {
    counter-reset: step-counter;
}

.step-item {
    counter-increment: step-counter;
    margin-bottom: 18px;
    padding-left: 46px;
    position: relative;
}

.step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--brand-gradient);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: var(--shadow-brand);
}

.warning-box {
    background: rgba(255,193,7,0.06);
    border: 1px solid rgba(255,193,7,0.18);
    border-radius: var(--radius-md);
    padding: 22px;
    margin: 22px 0;
}

.warning-box h4 {
    color: var(--warning);
    margin-bottom: 12px;
    font-size: 1.1em;
    font-weight: 600;
}

.warning-box p,
.warning-box ul li {
    color: #856404;
    margin: 0;
    font-size: 1em;
}

.allowed-box {
    background: rgba(76,175,80,0.06);
    border: 1px solid rgba(76,175,80,0.18);
    border-radius: var(--radius-md);
    padding: 22px;
    margin: 22px 0;
}

.allowed-box h4 {
    color: var(--success);
    margin-bottom: 12px;
    font-size: 1.1em;
    font-weight: 600;
}

.allowed-box p,
.allowed-box ul li {
    color: #155724;
    margin: 0;
    font-size: 1em;
}

.info-button {
    background: var(--brand-gradient);
    color: #fff;
    padding: 14px 36px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    box-shadow: var(--shadow-brand);
    margin-top: 22px;
}

.info-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--brand-shadow);
}

.update-date {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 32px;
    text-align: center;
    font-size: 1em;
}

@media (max-width: 768px) {
    .payment-section { padding: 28px 20px; }
    .payment-section h1 { font-size: 2em; }
    .payment-section h2 { font-size: 1.5em; margin-top: 28px; }
    .payment-section h3 { font-size: 1.15em; margin-top: 18px; }
    .status-box { padding: 20px; margin: 18px 0; }
    .website-instruction { padding: 16px; font-size: 1em; }
    .step-item { padding-left: 44px; margin-bottom: 14px; }
    .step-item::before { width: 28px; height: 28px; font-size: 0.85em; }
    .warning-box, .allowed-box { padding: 16px; margin: 14px 0; }
    .info-button { width: 100%; padding: 12px 20px; }
}