.payment-type-group:last-child {
    margin-bottom: 0;
}

.payment-type-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.65rem;
}

.payment-option {
    display: block;
    position: relative;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
    background: #fff;
    height: 100%;
}

.payment-option:hover {
    border-color: rgba(102, 16, 242, 0.45);
}

.payment-option.is-selected {
    border-color: #6610f2;
    background: rgba(102, 16, 242, 0.07);
    box-shadow: 0 0 0 3px rgba(102, 16, 242, 0.12);
}

.payment-option .payment-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.payment-option-check {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    background: #fff;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.payment-option.is-selected .payment-option-check {
    border-color: #6610f2;
    background: #6610f2;
    color: #fff;
}

.payment-option-body {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding-right: 1.75rem;
    min-height: 36px;
}

.payment-option-logo {
    height: 28px;
    width: 40px;
    object-fit: contain;
    object-position: left;
    flex-shrink: 0;
}

.payment-option-logo.payment-option-logo-ovo {
    width: 28px;
    object-fit: cover;
    border-radius: 4px;
}

.payment-option-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(102, 16, 242, 0.08);
    color: #6610f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.payment-option-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.payment-option-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #212529;
    line-height: 1.2;
}

.payment-option-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 20px;
    line-height: 1.3;
    align-self: flex-start;
}

.payment-option-badge.auto {
    background: rgba(25, 135, 84, 0.12);
    color: #198754;
}

.payment-option-badge.manual {
    background: rgba(108, 117, 125, 0.12);
    color: #6c757d;
}

@media (max-width: 575.98px) {
    .payment-option-body {
        padding-right: 1.5rem;
    }
}
