a.added_to_cart.wc-forward {
    display:none !important;
}
.whciu-category-bar {
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
}
.category-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}
.category-icon {
  flex: 0 0 auto;
  width: 80px;
  text-align: center;
  cursor: pointer;
  padding: 5px;
  border-radius: 10px;
}
.category-icon img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.category-icon span {
  color: black;
  font-size: 12px;
  display: block;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.category-icon.active {
  background-color: #cceeff;
}

.whciu-product-list {
  padding: 15px;
}
.whciu-product-row {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #eee;
  background: #fff;
}
.whciu-product-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.whciu-product-info {
  flex-grow: 1;
}
.whciu-product-info .title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 4px;
  color:black;
}
.whciu-product-info .price {
  color: #28a745;
  font-size: 14px;
  margin-bottom: 6px;
}
.whciu-product-info form.cart {
  display: flex;
  gap: 6px;
  align-items: center;
}
form.cart .quantity input.qty {
  width: 50px;
  text-align: center;
}
