@charset "UTF-8";
.sale-slider .swiper-slide {
  background: var(--gradient-type-3);
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sale-slider .swiper-slide {
    height: 300px;
  }
}
@media screen and (min-width: 1440px) {
  .sale-slider .swiper-slide {
    height: 390px;
    padding: 20px;
  }
}
.sale-slider .swiper-slide .sale-slider-item-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding: 15px;
  gap: 20px;
}
.sale-slider .swiper-slide .sale-slider-item-container .sale-slider-item-title {
  font-size: var(--heading-size-5);
  text-transform: uppercase;
  font-weight: bold;
  text-wrap: balance;
  position: relative;
  z-index: 5;
  width: 60%;
  line-height: 130%;
}
.sale-slider .swiper-slide .sale-slider-item-container .sale-slider-item-subtitle {
  text-wrap: balance;
  position: relative;
  z-index: 5;
  width: 60%;
  line-height: 130%;
}
.sale-slider .swiper-slide .sale-slider-item-container .sale-slider-item-counter {
  margin-top: auto;
  position: relative;
  z-index: 5;
  display: flex;
  gap: 10px;
}
.sale-slider .swiper-slide .sale-slider-item-container .sale-slider-item-counter .counter-item {
  height: 30px;
  width: 30px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  padding: 4px 0;
}
@media screen and (min-width: 1024px) {
  .sale-slider .swiper-slide .sale-slider-item-container .sale-slider-item-counter .counter-item {
    height: 40px;
    width: 40px;
  }
}
.sale-slider .swiper-slide .sale-slider-item-container .sale-slider-item-counter .counter-item i {
  font-style: normal;
  font-size: 10px;
}
.sale-slider .swiper-slide .sale-slider-item-container .sale-slider-item-media {
  position: absolute;
  left: 50%;
  height: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sale-slider .swiper-slide .sale-slider-item-container .sale-slider-item-media img {
  max-height: 100%;
  animation: leafSway 40s ease-in-out infinite;
  transform-origin: 50% 100%; /* Точка вращения в нижнем центре */
}
.sale-slider .swiper-slide:nth-child(2n) {
  background: var(--gradient-type-2);
}

@keyframes leafSway {
  0%, 100% {
    transform: rotate(0deg) translateY(0);
  }
  25% {
    transform: rotate(5deg) translateY(-2px);
  }
  75% {
    transform: rotate(-5deg) translateY(2px);
  }
}