/* ===== Website Building – double Owl carousel ===== */
.wb-owlWrap {
  margin-top: 12px;
}

/* סידור כללי של פריט */
.wb-carousel .wb-item {
  padding: 6px;
}
.wb-carousel .wb-item img {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 1px solid #e7ecff;
  box-shadow: 0 6px 16px rgba(20,40,120,.06);
  cursor: zoom-in;
}

/* ודא שלשתי הקרוסלות יש מינימום גובה כבר לפני init */
#wb-carousel-top,
#wb-carousel-bottom{
  min-height: 260px;     /* מעט יותר מגובה התמונה + מרווחים */
}

.wb-top    { direction: rtl; }
.wb-bottom { direction: ltr; }

/* ריווח בין סליידים */
.wb-carousel .owl-stage-outer {
  padding: 6px 0;
  min-height: 260px; /* כוון לפי גובה התמונות בפועל */
}

/* ללא חיצים/נקודות */
.wb-carousel .owl-nav, .wb-carousel .owl-dots { display: none !important; }

/* גלילה רציפה – משתמשים ב-transition ליניארי */
.wb-carousel .owl-stage {
  transition-timing-function: linear !important;
}

/* Lightbox */
.wb-lightbox[hidden] { display: none; }
.wb-lightbox {
  position: fixed; inset: 0; z-index: 9999;
}
.wb-lightbox__backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.6);
}
.wb-lightbox__content {
  position: absolute; inset: 0; display: grid; place-items: center;
  padding: 24px;
}
.wb-lightbox__content img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  border-radius: 12px; background: #fff;
}
.wb-lightbox__close {
  position: absolute; top: 14px; left: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid #e7ecff; box-shadow: 0 2px 8px rgba(0,0,0,.15);
  font-size: 26px; line-height: 1; cursor: pointer;
}

/* נקודת שבירה עיקרית – 1280px */
@media only screen and (min-width: 1280px) {

}