/* W2C Payment Gateway Styles */

/* Classic checkout icon styling */
.wc_payment_method.payment_method_w2c_custom_gateway img.wc-payment-gateway-icon {
    max-width: 24px;
    max-height: 24px;
    margin-left: 8px;
    vertical-align: middle;
    object-fit: contain;
}

/* Payment method label styling */
.wc_payment_method.payment_method_w2c_custom_gateway label {
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* Form styling for classic checkout */
#wc-w2c_custom_gateway-cc-form {
    background: #fafafa !important;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 10px;
}

#wc-w2c_custom_gateway-cc-form .form-row {
    margin-bottom: 15px;
}

#wc-w2c_custom_gateway-cc-form .form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

#wc-w2c_custom_gateway-cc-form .form-row input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

#wc-w2c_custom_gateway-cc-form .form-row input[type="text"]:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.required {
    color: #e74c3c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wc_payment_method.payment_method_w2c_custom_gateway img.wc-payment-gateway-icon {
        max-width: 20px;
        max-height: 20px;
        margin-left: 6px;
    }
    
    #wc-w2c_custom_gateway-cc-form {
        padding: 12px;
    }
    
    #wc-w2c_custom_gateway-cc-form .form-row input[type="text"] {
        padding: 8px;
        font-size: 16px; /* Prevents zoom on mobile */
    }
} 