.swiper {
  width: 100%;
}

.master-card {
  min-height: 310px;
  max-height: 310px;
}

.title-swaper {
  margin: 0;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.swiperImg, .swiperImgCont {
  width: 99%;
  border-radius: 15px;
  height: 140px;
  margin-bottom: 5px;
  margin-top: 5px;
  object-fit: cover;
}

.buy-master {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

/* Базовые стили стрелок */
.swiper-button-next,
.swiper-button-prev {
    color: rgba(255, 255, 255, 0.5); /* Белый цвет с прозрачностью 50% */
    transition: color 0.3s ease; /* Плавный переход при наведении */
}

/* При наведении на стрелки */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: rgba(255, 255, 255, 0.8); /* Белый цвет с прозрачностью 80% */
}

/* Базовые стили точек пагинации */
.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5); /* Белый цвет с прозрачностью 50% */
    transition: background-color 0.3s ease; /* Плавный переход при наведении */
}

/* При наведении на точки пагинации */
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, 0.8); /* Белый цвет с прозрачностью 80% */
}