/* Shell under the main image */
.single-product .dwtcnl-shell, 
.single-product .dwtcnl-shell {
  margin-top: 12px;
  position: relative;
}

/* The scrollable track */
.single-product .dwtcnl-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

/* Slides auto-size to image contents */
.single-product .dwtcnl-slide {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Thumbs */
.single-product .dwtcnl-slide img {
  display: block;
  max-height: 80px;
  height: auto;
  width: auto;
  border-radius: 6px;
  cursor: pointer;
}

/* Prev/Next buttons */
.single-product .dwtcnl-prev,
.single-product .dwtcnl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(0,0,0,.08);
  z-index: 2;
}
.single-product .dwtcnl-prev { left: -6px; }
.single-product .dwtcnl-next { right: -6px; }

.single-product .dwtcnl-prev::after,
.single-product .dwtcnl-next::after {
  content: '';
  display: block;
  width: 0; height: 0;
  margin: 12px auto;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.single-product .dwtcnl-prev::after  { border-right: 8px solid rgba(0,0,0,.6); }
.single-product .dwtcnl-next::after  { border-left: 8px solid rgba(0,0,0,.6); }

/* Normalize Divi/Woo gap if needed */
.single-product .et_pb_wc_images .woocommerce-product-gallery { margin-bottom: 10px; }
