.hcat-search {
  margin: 15px;
  text-align: center;
}
.hcat-search input {
  width: 90%;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Horizontal Category Icons */
.hcat-category-row {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin: 10px;
  padding-bottom: 10px;
}
.hcat-category {
  text-align: center;
  cursor: pointer;
  padding: 5px;
}
.hcat-category img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}
.hcat-category.active {
  border: 2px solid #0073aa;
  border-radius: 10px;
}

/* Skeleton Loader */
.hcat-skeleton-item {
  height: 80px;
  margin: 10px;
  background: #f0f0f0;
  border-radius: 8px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% {opacity: 1;}
  50% {opacity: 0.5;}
  100% {opacity: 1;}
}

/* Product Row Style */
#hcat-product-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px;
}
.hcat-product-row {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
}
.hcat-img-col img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.hcat-info-col {
  flex-grow: 1;
}
.hcat-info-col .hcat-name {
  font-weight: bold;
  margin-bottom: 5px;
}
.hcat-info-col .hcat-price {
  color: #0073aa;
  font-size: 15px;
}

.hcat-cart-col {
  display: flex;
  align-items: center;
  gap: 8px;
}
.add-button, .qty-minus, .qty-plus {
  padding: 6px 12px;
  border: none;
  background: #0073aa;
  color: white;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}
.qty-display {
  min-width: 20px;
  text-align: center;
  font-weight: bold;
}
.no-products {
  text-align: center;
  color: #777;
  padding: 20px;
}
