/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 26 2025 | 18:51:33 */
/* Basic styling for the category menu container */
/* OFF
.woocommerce.widget_product_categories {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
*/

/* Styling for the heading */
.woocommerce.widget_product_categories h5 {
    font-weight: bold;
    font-size: 20px;
    color: #207872;
	margin-bottom: 15px;
    font-family: Lato, sans-serif;
}

/* Styling for the unordered list */
.woocommerce.widget_product_categories ul.product-categories {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Styling for list items */
.woocommerce.widget_product_categories ul.product-categories li.cat-item {
    margin-bottom: 10px;
}

/* Styling for list item links */
.woocommerce.widget_product_categories ul.product-categories li.cat-item a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    font-family: Lato, sans-serif;
    font-size: 20px;
}

/* Hover effect for list item links */
.woocommerce.widget_product_categories ul.product-categories li.cat-item a:hover {
    background-color: #d8ece0;
    color: #207872;
    font-weight: bold;
}

/* Styling for the current category */
.woocommerce.widget_product_categories ul.product-categories li.cat-item.current-cat a {
    background-color: #d8ece0;
    color: #207872;
    font-weight: bold;
}
