
html, body {
  max-width: 100%;
  overflow-x: hidden;
}



/* Product Page Layout */
.products .product-grid {
  margin-top: 2rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.product-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem 1.25rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: scale(1.07) rotate(-1deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.product-card:hover img {
  transform: scale(1.07);
}
.product-icon {
  width: 64px;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(25%) sepia(95%) saturate(508%) hue-rotate(96deg) brightness(93%) contrast(91%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 600px) {
  .product-icon { width: 60px; }
}
@media (max-width: 480px) {
  .product-icon { width: 56px; }
}
@media (max-width: 380px) {
  .product-icon { width: 52px; }
}
