/* Product Detail Page Styles */

/* Smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

/* Hide scrollbar for product navigation (horizontal scroll on mobile) */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Smooth transition for sticky navigation state changes */
#product-nav {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Zoom cursor for dimension image */
.cursor-zoom-in {
  cursor: zoom-in;
}
