/**
 * ItcSlider — Исправленная версия
 */

.itc-slider {
  max-width: 1012px;
  /*! width: 100%; */
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.itc-slider-wrapper {
  position: relative;
  display: flex;
  /*! width: 100%; */
  height: 450px; /* Уменьшена высота */
  overflow: hidden;
}

.itc-slider-items {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.5s ease;
  will-change: transform;
}

.itc-slider-item {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  max-width: 100%;
  user-select: none;
  will-change: transform;
}

.itc-slider-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Адаптирует изображение */
}

/* Кнопки */
.itc-slider-btn {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  width: 40px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.itc-slider-btn-prev { left: 19%;height: 80px;margin-top: 192px;border-radius: 5px;}
.itc-slider-btn-next { right: 19%; height: 80px;margin-top: 192px;border-radius: 5px;}

.itc-slider-btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat center center;
  background-size: 100% 100%;
}

.itc-slider-btn-prev::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.itc-slider-btn-next::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.itc-slider-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.itc-slider-btn-hide {
  display: none !important;
}

/* Индикаторы */
.itc-slider-indicators {
  position: relative;
  /*! bottom: 10px; */ /* Перемещено выше — было 20px, стало 10px */
  left: 96%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  /*! margin: 0; */
  padding: 0;
  list-style: none;
  z-index: 10;
}

.itc-slider-indicator {
  width: 15px;
  height: 15px;
  /*! border-radius: 50%; */
  background: rgba(115, 115, 115, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.itc-slider-indicator:hover,
.itc-slider-indicator-active {
    background: rgb(249, 159, 26);
}

.itc-slider-transition-none {
  transition: none !important;
}

@media (max-width: 600px) {
  .itc-slider {
    max-width: 90%;
    height: 280px;
  }
}