.products-carousel {
  overflow: hidden;
}

.products-carousel__wrapper {
  position: relative;
  margin-top: 30px;
}

.products-carousel__slider {
  overflow: hidden;
}

.products-carousel__dots {
  display: none;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 31px;
  z-index: 3;
  width: fit-content;
}

.products-carousel__dots .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  background: #303133;
  border-radius: 999px;
  opacity: 1;
  position: relative;
  margin: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.products-carousel__dots .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.products-carousel__dots .swiper-pagination-bullet-active {
  background: #FCAF17;
  opacity: 1;
  width: 8px;
  height: 8px;
}

.products-carousel__dots .swiper-pagination-bullet-active::before {
  border-color: #FCAF17;
}

@media (max-width: 1024px) {
  .products-carousel__wrapper .carousel-arrow {
    display: none;
  }

  .products-carousel__dots {
    display: flex;
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 20px;
    height: 28px;
  }

  .products-carousel__wrapper {
    margin-top: 20px;
  }

  .products-carousel__slider {
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .products-carousel__dots {
    display: none;
  }

  .products-carousel__slider {
    overflow: visible;
  }
}