/* 3D Carousel — generic styles scoped by class */
.je3dc-wrap {
  position: relative;
  width: var(--w, 900px);
  margin: 20px auto;
}
.je3dc-stage {
  width: 100%;
  height: var(--h, 520px);
  perspective: 1600px;
  perspective-origin: 50% 50%;
  overflow: visible;
}
.je3dc-ring {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.1, 1);
}
.je3dc-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  will-change: transform;
  width: 70%;
  height: 92%;
  margin: -46% 0 0 -35%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #fff;
}
.je3dc-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

/* Controls */
.je3dc-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  display: flex;
  justify-content: center;
  gap: 12px;
  pointer-events: none;
}
.je3dc-controls button {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: #111;
  color: #fff;
  font-size: 22px;
  line-height: 40px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.je3dc-controls button:active {
  transform: translateY(1px);
}

@media (max-width: 980px) {
  .je3dc-wrap {
    width: 95vw;
  }
}

.flipster--carousel {
  direction: rtl;
    overflow: hidden !important;
}

.flipster-wrap .flipster__item img {
    height: 645px;
    object-fit: contain;
}
.flipster-wrap .flipster__item__content {
  
}
.flipster-wrap .flipster__button {
  line-height: 1em;
  margin: 0;
  padding: 15px 20px 15px 20px;
  border-radius: 0px 0px 0px 0px;
  background-color: #00000000 !important;
  width: 8px;
  srtroke: #000;
  font-size: 6px !important;
  color: #000;
}
.flipster-wrap .flipster__button--next {
     left: auto;
}
.flipster-wrap .flipster__button--prev {
   right: auto;
}
@media (max-width: 767px) {
  .flipster-wrap .flipster__item img {
        height: 355px;
    }
}