.main-banner-desktop {
  min-height: 0;
  min-width: 0;
}

.main-banner-desktop .skay-swiper {
  border-radius: 30px;
}

@media (max-width: 1260px) {
  .main-banner-desktop {
    margin-left: 0;
  }
}

.skay-swiper.has-dots {
  padding-bottom: 20px !important;
}

.skay-dots {
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important; 
  align-items: center !important;
}

.skay-dot {
  background: #0055AA !important;
}
.skay-dot.active {
  background: #0055AA !important;
}

.skay-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

/* ---- Track ---- */
.skay-slider-track {
  display: flex;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

/* ---- Slide ---- */
.skay-slide {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-sizing: border-box;
}

.skay-slide a {
  display: block;
  width: 100%; height: 100%;
  text-decoration: none;
}

.skay-slide-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
  will-change: transform;
  aspect-ratio: 495 / 1000;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .skay-slide-img {
    aspect-ratio: 750 / 820;
  }
}
.skay-slide:hover .skay-slide-img {
  transform: scale(1.025);
}
@media (max-width: 767px) {
  .main-banner-desktop {
    margin: 120px 10px 0 10px;
  }
  .skay-slide {
    height: auto !important;
    max-height: none !important;
  }
}

.skay-slide-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 40px;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  color: #fff;
  transition: opacity .3s;
  border-radius: 0 0 30px 30px;
}

.skay-slide-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 10px;
}

.skay-slide-title {
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.skay-slide-subtitle {
  font-size: clamp(13px, 1.5vw, 18px);
  margin: 0;
  opacity: .85;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

/* ---- ARROWS ---- */
.skay-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(110, 81, 81, 0.22);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all .2s ease;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  outline: none;
}
.skay-arrow:hover {
  background: rgba(255,255,255,.3);
  transform: translateY(-50%) scale(1.08);
}
.skay-arrow-prev { left: 16px; }
.skay-arrow-next { right: 16px; }

.skay-arrow svg { width: 18px; height: 18px; pointer-events: none; }

.skay-arrow--hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .skay-arrow {
    display: none !important;
  }
}

/* ---- DOTS ---- */
.skay-dots {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px;
  z-index: 10;
}

.skay-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
  outline: none;
}
.skay-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}

.skay-slide-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(270deg, #e8edf5, #d0d8e8, #e8edf5);
  background-size: 400% 400%;
  animation: shimmer 1.6s ease infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 767px) {
  .skay-slide { max-height: 280px; }
  .skay-slide-content { padding: 20px; }
  .skay-arrow { width: 36px; height: 36px; font-size: 14px; }
  .skay-arrow-prev { left: 8px; }
  .skay-arrow-next { right: 8px; }
  .skay-slide-title   { font-size: 16px; }
  .skay-slide-subtitle{ font-size: 12px; }
}

.skay-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  overflow: hidden;
  height: 0;
}

.skay-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}

.skay-swiper:not(.swiper-initialized) .swiper-slide:first-child {
  display: block;
  height: auto;
}

.skay-swiper:not(.swiper-initialized) .skay-arrow,
.skay-swiper:not(.swiper-initialized) .skay-dots {
  display: none;
}
