/* SELVANA - Global Styles */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}
.product-card {
  position: relative;
}
.product-card .img-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.product-card:hover .img-secondary {
  opacity: 1;
}
/* Mobile menu transition */
#mobile-menu {
  transition: max-height 0.3s ease;
}
#mobile-menu.open {
  max-height: 500px;
}
#mobile-menu:not(.open) {
  max-height: 0;
  overflow: hidden;
}