/* Global styling overrides */
body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

.product-card {
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px) scale(1.01);
}
