/* Updated styling to match design with better spacing */
.page-content {
  background-color: #f5f5f5;
  padding: 12px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-card {
  background-color: #e8f4f8;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.product-price {
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #ff4757;
  text-align: center;
  background-color: #fff;
}
