.payment-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 22px;
}

.payment-option-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.payment-option-card h3 {
    margin-top: 0;
    color: #062f1b;
}

.payment-option-card p {
    color: #64748b;
    line-height: 1.6;
}

.payment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 14px 20px;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
}

.cod-btn {
    background: #f59e0b;
    color: #111827;
}

.online-btn {
    background: #005f2f;
    color: #ffffff;
}

.payment-reminder-box {
    margin-top: 22px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #14532d;
    border-radius: 18px;
    padding: 18px;
    line-height: 1.6;
}

.payment-status-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: #1e3a8a;
    font-weight: 800;
}