/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Custom scrollbar for thumbnail container */
.thumbnail-scroll::-webkit-scrollbar {
  height: 6px;
}

.thumbnail-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.thumbnail-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.thumbnail-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Image gallery enhancements */
.image-gallery-thumbnail {
  position: relative;
  overflow: hidden;
}

.image-gallery-thumbnail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: background 0.3s ease;
}

.image-gallery-thumbnail:hover::after {
  background: rgba(251, 146, 60, 0.1);
}

/* Hide scrollbar for category tabs */
.scrollbar-hide {
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;  /* Safari and Chrome */
}
