.payment-grid {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

.payment-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(33, 118, 255, 0.06);
    padding: 1rem;
    width: 320px;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: transform .22s ease, box-shadow .22s ease;
    cursor: default;
}

.payment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(33, 118, 255, 0.12);
}

.payment-logo {
    min-width: 72px;
    min-height: 72px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f7f9ff;
    box-shadow: inset 0 -6px 18px rgba(0, 0, 0, 0.03);
}

.payment-logo img {
    width: 58px;
    height: auto;
    display: block;
}

.payment-info {
    flex: 1;
    min-width: 0;
}

.payment-name {
    font-weight: 700;
    color: #222;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.payment-desc {
    color: #5b6772;
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: .6rem;
}

.payment-features {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: .6rem;
}

.feature-pill {
    background: rgba(33, 118, 255, 0.06);
    color: #2176FF;
    font-weight: 600;
    padding: .25rem .5rem;
    border-radius: 999px;
    font-size: .8rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.payment-actions {
    display: flex;
    gap: .6rem;
}

.btn-pay {
    background: linear-gradient(90deg, #2176FF 0%, #4D9BFF 100%);
    color: white;
    border: none;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    font-size: .95rem;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(33, 118, 255, 0.12);
    color: #2176FF;
    padding: .4rem .8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .9rem;
}

@media (max-width:720px) {
    .payment-card {
        width: 100%;
    }
}
