/**
 * Owl Carousel v2.3.4 - Custom SUKABET
 * Versi disesuaikan: lebih ringan, dark red, mobile responsive.
 * Simpan sebagai: assets/css/owl.css
 */

/* ================================
   OWL CAROUSEL CORE
================================ */
.owl-carousel {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  line-height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: auto;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading,
.owl-carousel.owl-hidden {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.no-js .owl-carousel {
  display: block;
}

/* ================================
   NAVIGATION
================================ */
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  padding: 0 !important;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

/* Tombol panah jika nanti nav:true dipakai */
.owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  width: 44px;
  height: 44px;
  margin: 0 18px;
  border-radius: 999px !important;
  color: #fff !important;
  background: rgba(127, 0, 0, .72) !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .45);
  pointer-events: auto;
  transition: .25s ease;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: #dc2626 !important;
  transform: translateY(-2px);
}

/* ================================
   DOTS DARK RED STYLE
================================ */
.owl-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
}

.owl-dots .owl-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12);
  transition: .25s ease;
}

.owl-dots .owl-dot.active {
  width: 34px;
  background: linear-gradient(135deg, #dc2626, #7f0000) !important;
  box-shadow: 0 0 18px rgba(220, 38, 38, .65);
}

.owl-dots .owl-dot:hover {
  background: rgba(255, 255, 255, .75) !important;
}

/* ================================
   ANIMATION
================================ */
.owl-carousel .animated {
  animation-duration: 850ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: owlFadeOut;
}

@keyframes owlFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.owl-height {
  transition: height 450ms ease-in-out;
}

