/* CryptoFlex Pay - Checkout Styles */

.cfp-payment-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.cfp-method {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.cfp-method:hover {
    border-color: #2E86C1;
    background: #f8fbff;
}

.cfp-method input[type="radio"] {
    display: none;
}

.cfp-method input[type="radio"]:checked + label {
    color: #1B4F72;
    font-weight: 600;
}

.cfp-method:has(input:checked) {
    border-color: #2E86C1;
    background: #edf5ff;
    box-shadow: 0 0 0 1px #2E86C1;
}

.cfp-method label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #4a5568;
    margin: 0;
}

.cfp-method-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f7fafc;
    flex-shrink: 0;
}

.cfp-method-icon img {
    max-width: 28px;
    max-height: 28px;
}

.cfp-method-name {
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive */
@media (min-width: 600px) {
    .cfp-payment-selector {
        flex-direction: row;
    }
    .cfp-method {
        flex: 1;
    }
}
