.stkib {
  margin: 0;
  background: #111317;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.stkib-slides {
  position: relative;
  min-height: 620px;
  height: 620px;
  transition: height 0.45s ease;
}

.stkib-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  min-height: 620px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease;
  z-index: 1;
}

.stkib-slide.is-active {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 2;
}

.stkib-slide.is-entering-from-bottom,
.stkib-slide.is-entering-from-top,
.stkib-slide.is-leaving-to-top,
.stkib-slide.is-leaving-to-bottom {
  visibility: visible;
  pointer-events: none;
}

.stkib-slide.is-entering-from-bottom {
  transform: translateY(100%);
  opacity: 0;
  z-index: 3;
}

.stkib-slide.is-entering-from-top {
  transform: translateY(-100%);
  opacity: 0;
  z-index: 3;
}

.stkib-slide.is-leaving-to-top {
  transform: translateY(-100%);
  opacity: 0;
  z-index: 1;
}

.stkib-slide.is-leaving-to-bottom {
  transform: translateY(100%);
  opacity: 0;
  z-index: 1;
}

.stkib-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.stkib-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stkib-content {
  background: #17191f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 40px 9% 40px calc(9% + 56px);
}

.stkib-range-wrap {
  position: absolute;
  left: calc(58% + 22px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stkib-range-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.32);
}

.stkib-range {
  -webkit-appearance: none;
  appearance: none;
  width: 320px !important;
  min-width: 320px;
  max-width: 320px;
  flex: 0 0 320px;
  height: 46px;
  background: transparent;
  outline: none;
  transform: rotate(90deg);
  transform-origin: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.stkib-range::-webkit-slider-runnable-track {
  height: 1px;
  background: transparent;
}

.stkib-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: #111317;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='white'/%3E%3Cpath d='M4.8 8L7.6 5.2V10.8L4.8 8Z' fill='%23111317'/%3E%3Cpath d='M11.2 8L8.4 10.8V5.2L11.2 8Z' fill='%23111317'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  margin-top: -19px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.stkib-range::-moz-range-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: #111317;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='white'/%3E%3Cpath d='M4.8 8L7.6 5.2V10.8L4.8 8Z' fill='%23111317'/%3E%3Cpath d='M11.2 8L8.4 10.8V5.2L11.2 8Z' fill='%23111317'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.stkib-range::-moz-range-track {
  height: 1px;
  background: transparent;
  border: 0;
}

.stkib-range::-moz-range-progress {
  background: transparent;
}

.stkib-subtitle {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c2c7d2;
  font-size: 12px;
}

.stkib-title {
  margin: 0 0 18px;
  color: #fff;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 400;
}

.stkib-description {
  margin: 0 0 28px;
  max-width: 440px;
  color: #d5d8df;
  font-size: 16px;
  line-height: 1.6;
}

.stkib-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  width: fit-content;
}

.stkib-cta:hover,
.stkib-cta:focus {
  color: #17191f;
  background: #fff;
  text-decoration: none;
}

.stkib-nav {
  margin-top: 28px;
  display: flex;
  gap: 10px;
}

.stkib-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.stkib-arrow:hover,
.stkib-arrow:focus {
  background: #fff;
  color: #17191f;
}

.stkib-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.stkib-point {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #1e2128;
  color: #fff;
  cursor: pointer;
  position: relative;
}

.stkib-point::before,
.stkib-point::after {
  content: "";
  position: absolute;
  background: #fff;
}

.stkib-point::before {
  width: 10px;
  height: 2px;
  left: 9px;
  top: 14px;
}

.stkib-point::after {
  width: 2px;
  height: 10px;
  left: 13px;
  top: 10px;
}

.stkib-hotspot.is-open .stkib-point::after {
  display: none;
}

.stkib-product-card {
  display: none;
  width: 240px;
  background: rgba(20, 20, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  padding: 16px;
  margin-top: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stkib-hotspot.is-open .stkib-product-card {
  display: block;
}

.stkib-product-label {
  margin: 0 0 8px;
  color: #d7d7d7;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.stkib-product-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
}

.stkib-product-desc {
  margin: 0;
  color: #e2e2e2;
  font-size: 13px;
  line-height: 1.4;
}

.stkib-product-bottom {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.stkib-product-price {
  font-size: 18px;
  font-weight: 600;
}

.stkib-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  text-decoration: none;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.stkib-product-btn:hover,
.stkib-product-btn:focus {
  background: #fff;
  color: #111317;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .stkib-range-wrap {
    left: 22px;
  }

  .stkib-slides {
    min-height: 840px;
    height: 840px;
  }

  .stkib-slide {
    grid-template-columns: 1fr;
  }

  .stkib-media,
  .stkib-content {
    min-height: 420px;
  }

  .stkib-title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .stkib-content {
    padding: 26px 18px;
  }

  .stkib-range-wrap {
    display: none;
  }

  .stkib-title {
    font-size: 34px;
  }

  .stkib-product-card {
    width: 210px;
  }
}
