.dp-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dp-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 0;
  order: 1;
}
.dp-slide {
  display: none;
  box-shadow: 0 10px 16px -4px rgba(0, 0, 0, 0.1), 0 0 6px 0 rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.dp-slide.is-active {
  display: block;
  opacity: 1;
}
.dp-slide.is-hidden {
  display: none !important;
  opacity: 0;
}
.dp-gallery-main .dp-slide img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: contain;
  border-radius: 24px;
}
@media (max-width:768px){
	.dp-gallery-main .dp-slide img {
		  height: 350px;
	}	
}
.dp-gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0 0;
  position: static;
  left: unset;
  transform: unset;
  bottom: unset;
  z-index: 3;
  height: 24px;
  order: 2;
}

.dp-gallery-dots .dp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #f2f2f2 !important;
  padding: 0 !important;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s, opacity 0.3s ease;
}

.dp-gallery-dots .dp-dot.is-active {
  background: #35f !important;
  transform: scale(1.3);
}

.dp-gallery-dots .dp-dot.is-hidden {
  display: none !important;
  opacity: 0;
}

.dp-gallery-dots .dp-dot:focus {
  outline: 2px solid #0035f0;
}
.dp-gallery-thumbs {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
  order: 3;
}
@media (max-width:768px){
	.dp-gallery-thumbs {
		gap:12px;
	}
}
.dp-thumb {
  padding: 0 !important;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  background: transparent !important;
  width: 80px;
  height: 80px;
  overflow: hidden;
  transition: border-color 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
}
.dp-thumb.is-hidden {
  display: none !important;
  opacity: 0;
}
@media (max-width:768px){
	.dp-thumb {
	 width: 50px;
  height: 50px;
		}
}
.dp-thumb.is-active {
  border-color: #35f;
}
.dp-thumb:focus {
  outline: none;
  box-shadow: 0 0 0 2px #2a7de133;
  border-color: #2a7de1;
}
.dp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
