.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: 32px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;  /* Центрирует точки */
  align-items: center;
  z-index: 10;
}

/* Обёртка для черточек */
.swiper-pagination-bullets {
  gap: 8px;
}

/* Отдельная черточка */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #B9B9B9;
  border-radius: 50%;
  opacity: 1;
  transition: background-color 0.3s ease;
}

/* Активная черточка */
.swiper-pagination-bullet-active {
  background-color: #ffffff;
}

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

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