/* Container for all categories - only active tab is visible */
.product-category-tab {
  display: none;
}
.product-category-tab.active {
  display: block !important;
}

/* Product Grid */
.top-productcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  padding: 20px;
  box-sizing: border-box;
}

/* Individual product card */
.productcat-card {
  background: #fcfcfc;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  box-sizing: border-box;
}

/* Product image styling */
.productcat-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

/* Text styling */
.productcat-title {
  font-size: 0.9rem;
  color: black;
  margin: 10px 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.productcat-model {
  font-size: 0.75rem;
  color: #706f6f;
  text-align: left;
}

.productcat-price {
  color: black;
  font-weight: bold;
  font-size: 0.85rem;
  text-align: left;
}

.productcat-discount {
  text-decoration: line-through;
  color: red;
  font-size: 0.75rem;
  margin-left: 5px;
}
.productcat-discount-percent {
  margin-left: 5px;
  color: green;
  font-size: 0.75rem;
}

/* Action buttons */
.productcat-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.productcat-action-button {
  background: #25d366;
  color: white;
  border-radius: 5px;
  font-size: 0.85rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 8px;
  cursor: pointer;
}
.productcat-cart-button {
  background: #007bff;
  border: none;
  border-radius: 5px;
  font-size: 0.8rem;
  width: 100%;
  padding: 8px;
  cursor: pointer;
}
.productcat-cart-button:hover {
  background: #0056b3;
}
.productcat-action-button i {
  margin-right: 5px;
}

/* Badges */
.productcat-best-seller {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #e60023;
  color: white;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 12px;
  font-weight: bold;
}
.productcat-heart-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid lightgray;
  border-radius: 20%;
  cursor: pointer;
}
.productcat-heart-icon::before {
  content: "\2764";
  font-size: 12px;
  color: lightgray;
}

/* Responsive */
@media (max-width: 768px) {
  .top-productcat-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}
@media (max-width: 480px) {
  .top-productcat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }
}
