.dksbp-image-block.dksbp-image-full {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  max-width: 90vw;
  max-height: 90vh;
  margin: auto;
  display: block;
  object-fit: contain;
  cursor: zoom-out;
}
.dksbp-gallery-block {
  margin: 2em 0;
}
.dksbp-gallery-main {
  text-align: center;
  display: flex ;
  flex-direction: column;
  align-items: center;
}
.dksbp-gallery-main-img {
  max-width: 100%;
  max-height: 400px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  margin-bottom: 1em;
}
.dksbp-gallery-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.dksbp-gallery-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: border 0.2s;

}
.dksbp-gallery-thumb.active {
  border: 2px solid #0074d9;
}
