.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.product-img {
  width: 100%;
  max-width: 160px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.product-info h3 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 1.1rem;
}

.product-category {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-weight: bold;
  color: #007bff;
  font-size: 1.1rem;
}

#trending-section, #catalogue-section {
  margin-bottom: 2rem;
}

#trending-section h2, #catalogue-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#catalogue-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .product-list {
    grid-template-columns: 1fr;
  }
  #catalogue-controls {
    flex-direction: column;
    align-items: flex-start;
  }
}
