/*
Theme Name:   RedParts Child
Theme URI:    https://themeforest.net/item/redparts-auto-parts-woocommerce-wordpress-theme/30040243
Author:       Konstantin Veselovsky
Author URI:   https://themeforest.net/user/kos9
Description:  Auto Parts WordPress Child Theme - Custom modifications and enhancements
Version:      1.18.0
License:      ThemeForest Split License
License URI:  http://themeforest.net/licenses/standard
Text Domain:  redparts-child
Template:     redparts
*/

/* 
 * Child Theme Custom Styles
 * All custom CSS modifications should be added below this line
 * This ensures they override the parent theme styles
 */

/* Custom styles for the child theme */
.redparts-child-custom {
    /* Add your custom styles here */
}

/* Example: Custom styling for the product year display */
.product-year {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: #f8f9fa;
    border-left: 3px solid #007cba;
    border-radius: 3px;
}

/* Example: Custom styling for term description */
.term-description-exists .term-description {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #007cba;
}

/* Example: Custom styling for product instruction tabs */
.woocommerce-tabs .tabs li a[href="#tab-product_instructions"] {
    background-color: #007cba;
    color: white;
}



/* Example: Custom styling for fuel maps tabs */
.woocommerce-tabs .tabs li a[href="#tab-fuel_maps"] {
    background-color: #dc3545;
    color: white;
}

/* Product download buttons styling */
.product-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.woo-download-buttons {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.woo-download-buttons:hover {
    background-color: #005a87;
    color: white;
    text-decoration: none;
}

/* Fitment styling */
.makes_types,
.models_types,
.years_types {
    margin: 15px 0;
}

.makes_types ul,
.models_types ul,
.years_types ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.makes_types li,
.models_types li,
.years_types li {
    display: inline-block;
    background-color: #f8f9fa;
    padding: 5px 10px;
    margin: 2px;
    border-radius: 3px;
    border-left: 3px solid #007cba;
}