.widget_product_categories a.active {
    font-weight: bold;
    color: #d54e21;
}

.woocommerce ul.products.loading {
    opacity: 0.6;
    pointer-events: none;
    text-align: center;
}

#reset-cat-filter {
    width: 100%;
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    cursor: pointer;
}

#reset-cat-filter:hover {
    background-color: #e04343;
}

/* Loading spinner */
.ajax-loading-wrapper {
    display: inline-block;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 48px;
  height: 48px;
  margin: 8px;
  border: 5px solid #d54e21;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #d54e21 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
