/** Categories sidebar **/

/* Hide uncategorized */
.category-sidebar li:has(a[href*='uncategorized']) {
  display: none;
}

.product-img img:hover {
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.5); /* soft green glow */
  transition: box-shadow 0.3s ease;
}

/** Categories Sidebar **/
.category-sidebar {
  position: absolute;
  top: 10.3rem;
  left: 2rem;
  width: 16rem; /* tighten the width */
  padding: 0.8rem 1rem;
  border-radius: 10px;
  z-index: 10;
  background: #08a43c;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
/** Categories Heading **/
.category-sidebar h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  padding-top: 0.5rem;
  padding-left: 1rem;
  color: #fff;
}
/** remove categories theme styles **/
.category-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/** Categories li styles and anchors**/
.category-sidebar li {
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid #eee;
  color: #fff;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.category-sidebar li a {
  color: #fff;
  text-decoration: none;
}

/* Hover effect for all items */
.category-sidebar li:hover {
  background: #2ecc71;
  color: white;
  box-shadow: 0 0 10px 3px rgba(46, 204, 113, 0.5);
  border-radius: 6px;
  cursor: pointer;
}

/* Submenu container */
.category-sidebar ul ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: #00a950 !important;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  font-size: 0.95rem;
  color: #555;
}

/* Show submenu on hover */
.category-sidebar li:hover > ul {
  display: block;
}
.category-sidebar ul ul li:hover {
  background: #2ecc71;
  color: white;
  box-shadow: 0 0 10px 3px rgba(46, 204, 113, 0.5);
  border-radius: 6px;
  cursor: pointer;
}