#custom-payment-selector {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.custom-payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.custom-payment-method img {
    max-width: 80px;
    margin-bottom: 10px;
}

.custom-payment-method span {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.custom-payment-method.selected {
    border-color: #48AA9D;
    box-shadow: 0 4px 15px rgba(72,170,157,0.3);
}

.custom-payment-method .payment_box {
    margin-top: 15px;
    width: 100%;
    display: none;
}

.custom-payment-method .payment_box input,
.custom-payment-method .payment_box label {
    width: 100%;
    display: block;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 480px) {
    .custom-payment-method {
        padding: 12px;
    }
    .custom-payment-method img {
        max-width: 70px;
        margin-bottom: 8px;
    }
    .custom-payment-method span {
        font-size: 15px;
    }
}
/* Hide default WooCommerce payment methods except custom cards */
ul.wc_payment_methods li.payment_method_om_node_proxy,
ul.wc_payment_methods li.payment_method_wave_node_proxy {
    display: none !important;
}
