/* ================================
   OWL CAROUSEL – THUMBNAILS & NAV
   ================================ */

.owl-carousel {
  position: relative;
}

/* ================================
   THUMBNAILS
   ================================ */
.owl-carousel .thumb {
  width: 175px;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.owl-carousel .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* ================================
   NAV WRAPPER
   ================================ */
.owl-carousel .owl-nav {
  pointer-events: auto;
  z-index: 20;
}

/* ================================
   ARROWS – ALWAYS VISIBLE
   ================================ */
.owl-carousel .owl-prev,
.owl-carousel .owl-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}

/* Horizontal positioning */
.owl-carousel .owl-prev { left: 8px; }
.owl-carousel .owl-next { right: 8px; }

/* Circular arrow buttons */
.owl-carousel .owl-prev i,
.owl-carousel .owl-next i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* Custom arrow shapes */
.icon-ar-018-l::before,
.icon-ar-018-r::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.icon-ar-018-l::before { transform: rotate(-135deg); }
.icon-ar-018-r::before { transform: rotate(45deg); }

/* Disabled state */
.owl-carousel .owl-nav button.disabled {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Kill default Owl styles */
.owl-carousel .owl-nav button {
  background: transparent !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ================================
   MOBILE STYLES
   ================================ */
@media (max-width: 767px) {

  /* Bigger tap target for arrows */
  .owl-carousel .owl-prev i,
  .owl-carousel .owl-next i {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
  }

  /* Dark arrow lines on light background */
  .icon-ar-018-l::before,
  .icon-ar-018-r::before {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }

  /* Center outer carousel thumbnails */
  .outer-carousel .owl-stage {
    display: flex !important;
    justify-content: center !important;
  }

  .outer-carousel .owl-item {
    display: flex !important;
    justify-content: center !important;
	  
  }
	div.owl-item.active.center{
		margin-right:0px !important;
	}
  .outer-carousel .outer-slide {
    width: 100%;
    max-width: 100%;
  }
}

/* ================================
   OPTIONAL INNER / OUTER CLEANUP
   ================================ */
.outer-carousel .outer-slide { padding: 0; }
.inner-carousel .thumb img { width: 100%; height: auto; display: block; }
.slide-title { margin-bottom: 10px; }
