/* Контейнер слайдера */
.custom-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* Обертка слайдов */
.custom-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Отдельный слайд */
.slide {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* Навигация */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 1);
}

/* Пагинация */
.slider-pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pagination-dot.active {
  background: #333;
}