/** Shopify CDN: Minification failed

Line 6:22 Unexpected "="

**/
Main Container Styles ===== */
.product-image-container.product-image-container--thumbnails {
  position: relative;
  width: 100%;
  max-width: 100vw; /* Ensure it doesn't exceed viewport width */
  display: flex;
  flex-direction: column;
  min-height: 300px;
  margin-bottom: 15px;
  padding: 0; /* Ensure no padding is causing overflow */
  box-sizing: border-box; /* Include padding in width calculation */
}

/* ===== Thumbnail Container ===== */
.product-image-container.product-image-container--thumbnails .product-thumbnail-container {
  order: 2;
  display: flex;
  gap: 6px; /* Reduced gap */
  overflow-x: auto;
  padding: 8px 0; /* Reduced padding */
  margin-top: auto;
  background: #fff;
  scrollbar-width: none;
  width: 100%;
  -webkit-overflow-scrolling: touch; /* Better scrolling on iOS */
}

/* ===== Individual Thumbnails ===== */
.product-image-container.product-image-container--thumbnails .product-thumbnail {
  flex: 0 0 50px; /* Smaller thumbnails */
  height: 50px;
  position: relative;
  cursor: pointer;
  border: none;
  outline: none !important;
  box-shadow: none !important;
  margin: 0; /* Remove any margins */
}

/* ===== Main Slider Container ===== */
.product-images__slider {
  width: 100%;
  max-width: 100%; /* Prevent overflow */
  order: 1;
  margin-bottom: 10px;
  padding: 0;
}

/* ===== Flickity Overrides ===== */
.flickity-viewport, 
.flickity-slider {
  width: 100% !important; /* Force full width */
}

.flickity-prev-next-button {
  z-index: 10;
  width: 25px;
  height: 25px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  transform: scale(0.8); /* Smaller buttons */
}



/* ===== Mobile Overrides ===== */
@media (max-width: 767px) {
  .product-image-container.product-image-container--thumbnails {
    min-height: 250px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  
  .product-image-container.product-image-container--thumbnails .product-thumbnail {
    flex: 0 0 40px; /* Even smaller on mobile */
    height: 40px;
  }
  
  /* Reset any potential parent padding causing overflow */
  body, .main-content, .page-width {
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
  }
  
  /* Ensure images don't cause horizontal overflow */
  .product-images__slider img {
    max-width: 100%;
    height: auto;
  }
}