.products-carousel__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.products-carousel {
  overflow: hidden;
}

.products-carousel__inner {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.products-carousel__inner .card {
  flex-shrink: 0;
  width: calc((100% - 60px) / 4);
  box-sizing: border-box;
}

.products-carousel__arrow {
    background-color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 800px;
    border: 1px solid #E6E6E6;
    box-shadow: 0px 1px 8px 0px #0000001F;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.products-carousel__arrow svg {
    width: 16px;
    height: 16px;
}

.products-carousel__arrow--prev {
    left: 15px;
} 

.products-carousel__arrow--next {
    right: 15px;
} 

.products-carousel__pagination {
  width: max-content;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  height: 20px;
  margin-inline: auto;
}

.products-carousel__pagination .increazy-carousel-bullet {
  width: 16px;
  min-width: 16px;
  height: 16px;
  border: 1px solid #e6e6e6;
  border-radius: 100%;
  transition: all .3s ease;
  background-color: #ffffff;
  cursor: pointer;
}

.products-carousel__pagination .increazy-carousel-bullet-active {
  background-color: #000000;
  border-color: #000000;
}

@media (max-width: 1024px) {
  .products-carousel__inner { 
    gap: 15px; 
  }

  .products-carousel__inner .card { 
    width: calc((100% - 30px) / 3); 
  }
}

@media (max-width: 768px) {
  .products-carousel__inner .card { 
    width: calc((100% - 15px) / 2); 
  }
}

@media (max-width: 560px) {
  .products-carousel__inner { 
    gap: 0; 
  }

  .products-carousel__inner .card { 
    width: 100%; 
  }
}