/* Category Box */
.widget_product_categories {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Title */
.widget_product_categories h4.widget-title {
  background: #d60000;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  padding: 12px;
  margin: 0;
  text-transform: uppercase;
}

/* Parent Category */
.widget_product_categories ul.product-categories > li {
  border-bottom: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover */
.widget_product_categories ul.product-categories > li:hover {
  color: #d60000;
}

/* Active */
.widget_product_categories ul.product-categories > li.current-cat,
.widget_product_categories ul.product-categories > li.current-cat-parent {
  color: #d60000;
}

/* Toggle icon */
.widget_product_categories .toggle-icon {
  cursor: pointer;
  font-weight: bold;
  margin-right: 6px;
  color: #d60000;
}

/* Subcategory (hidden) */
.widget_product_categories ul.product-categories ul.children {
  display: none;
  margin: 0;
  padding-left: 15px;
  border-left: 2px solid #eee;
}

/* Subcategory Item */
.widget_product_categories ul.product-categories ul.children li {
  padding: 8px 0;
  font-size: 13px;
  font-weight: normal;
  color: #444;
  transition: all 0.3s ease;
}

/* Hover + Active Subcategory */
.widget_product_categories ul.product-categories ul.children li:hover,
.widget_product_categories ul.product-categories ul.children li.current-cat {
  color: #d60000;
  font-weight: bold;
}
