
/* Payment Method Selector Styles */
.viz-payment-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
}

.viz-payment-option {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
    gap: 12px;
}

.viz-payment-option:hover {
    border-color: #ddd;
    background: #fafafa;
}

.viz-payment-option.selected {
    border-color: #4caf50;
    background: #f1f8e9;
}

.viz-payment-option input[type="radio"] {
    margin-top: 4px;
    accent-color: #4caf50;
    width: 18px;
    height: 18px;
}

.viz-payment-option-content {
    display: flex;
    flex-direction: column;
}

.viz-payment-option-title {
    font-weight: 700;
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.viz-payment-option-title i {
    color: #4caf50;
    width: 20px;
}

.viz-payment-option-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.viz-checkout-divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}
