.pd-wrap {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.col-6 {
  flex: 1;
  min-width: 300px;
}
.slider-container {
  position: relative;
}
.product-slider img {
  max-height: 500px;
  object-fit: contain;
  display: none;
  width: 500px !important;
  height: 500px !important;
  padding: 0px;
  border: 0.119rem solid #82b341 !important;
  border-radius: 14px !important;
}
.product-slider img.active {
  display: block;
}
.thumb-wrapper {
  position: relative;
  margin-top: 15px;
}
.product-thumb {
  display: flex;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}
.product-thumb img {
  width: 92px !important;
  height: 90px !important;
  object-fit: cover;
  cursor: pointer;
  /* border: 2px solid transparent; */
  flex-shrink: 0;
  padding: 0px;
  border: 0.119rem solid #cfcfcf !important;
  border-radius: 10px !important;
}
.product-thumb img.active {
  border-color: #82b341 !important;
}
.thumb-wrapper .thumb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #98c93c;
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.thumb-wrapper .thumb-btn:hover {
  background-color: #fff;
  color: #98c93c;
  border: 1px solid #98c93c !important;
}
.thumb-wrapper .thumb-btn:focus {
  background-color: #98c93c;
	color: #fff;
}
.thumb-btn.left {
  left: -15px;
}
.thumb-btn.right {
  right: -15px;
}
