html, body {
  font-family: 'Heebo', sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Smooth transitions for all interactive elements */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Hide scrollbar on mobile for horizontal scrolling areas */
.scrollbar-hide {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}

/* Active nav tab */
.nav-tab.active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border-color: #1d4ed8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Homepage card hover effects */
.homepage-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.homepage-card:hover {
  transform: translateY(-4px);
}

/* Product cards - equal height in grid rows */
.product-card {
  height: 100%;
}
