/* Add custom CSS styles below */ 
/* Hide default JS warning once scripts load */
.js-enabled .enable-js-warning {
  display: none !important;
}
/* Center hero text and adjust spacing */
.hero-section {
  text-align: center;
  padding: 40px 20px;
}
/* Add hover shadow & transition on product cards */
.product-card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  transition: box-shadow .25s ease;
}
.header.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
}