.product-swiper-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.product-swiper-container .swiper-slide {
  width: 100%;
  flex-shrink: 0;
}

.product-swiper-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Контейнер пагинации */
.swiper-pagination {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

/* Обёртка для черточек */
.swiper-pagination-bullets {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 16px;
}

@media (max-width: 767px) {
  .swiper-pagination-bullets {
    gap: 8px;
  }
}

/* Отдельная черточка */
.swiper-pagination-bullet {
  flex-grow: 1;
  width: auto;
  height: 2px;
  background-color: #B9B9B9;
  transition: background-color 0.3s ease;
}

/* Активная черточка */
.swiper-pagination-bullet-active {
  background-color: #111111;
}
/* Обязательно для корректной работы внутри grid */
.product-swiper-container .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

/* Размер слайда */
.swiper-slide {
  width: 100%!important;
  height: 100%!important;
}