/* Product gallery styles (moved out of PHP templates) */

/* Ensure thumbnails scroll horizontally on mobile */
.woocommerce-product-gallery__thumbnails {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.woocommerce-product-gallery__thumbnails::-webkit-scrollbar {
  height: 6px;
}

.woocommerce-product-gallery__thumbnails::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.woocommerce-product-gallery__thumbnails::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.woocommerce-product-gallery__thumbnails::-webkit-scrollbar-thumb:hover {
  background: #555;
}


