@charset "UTF-8";
.payment-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fff;
}

.payment-card:hover {
    border-color: #0d6efd;
    background-color: #f8f9fa;
}

.payment-card input {
    margin-right: 8px;
}

.payment-card input:checked {
    accent-color: #0d6efd;
}

.payment-card input:checked + div {
    font-weight: 500;
}

.payment-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Mobile optimization */
@media (max-width: 576px) {
    .payment-logo {
        width: 40px;
        height: 40px;
    }
}