.hero {
  margin: 0 auto;
}
.hero__container {
  position: relative;
  width: 100%;
  height: 390px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 8px;
  border-radius: 20px;
  overflow: hidden;
  background-color: white;
}
.hero__slider-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  cursor: grab;
}
.hero__slider-container#slider {
  transition: transform 0.5s ease-in-out;
}
.hero__slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
}
.hero__slide picture {
  width: 100%;
  height: 100%;
}
.hero__slide-content {
  position: absolute;
  top: 48px;
  left: 28px;
  color: white;
  display: flex;
  flex-direction: column;
  height: 80%;
}
.hero__slide-content h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 18px;
  margin-bottom: 12px;
}

.hero__slide__description {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 4px;
  margin-right: 28px;
}

.hero__slide__additional-text {
  font-size: 16px;
  font-weight: 400;
  display: none;
}

.cta-button {
  font-size: 12px;
  line-height: 13px;
  font-weight: 400;
  padding: 7px 20px;
  border-radius: 20px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background: #f90000;
  margin-top: auto;
  max-width: 110px;
}
.hero__slide__price {
  display: flex;
  flex-direction: row;
  gap: 6px;
  margin-bottom: 12px;
  align-items: center;
  position: relative;
  width: fit-content;
}
.hero__slide__price span[badge] {
  font-size: 14px;
  line-height: 13px;
  font-weight: 400;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f90000;
}
.hero__slide__price span[price] {
  font-size: 13px;
  font-weight: 400;
}
.hero__slide__price span[oldPrice] {
  font-size: 10px;
  color: #f90000bf;
  text-decoration: line-through;
  position: absolute;
  transform: translateX(110%);
  right: 0;
  top: 0;
}

.hero__slide__tags {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.hero__slide__tag {
  background: #ffffff;
  border-radius: 999px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 4px 12px;
}
.hero__slide__tag img {
  width: 12px;
  height: 12px;
}
.hero__slide__tag p {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  line-height: 14px;
}

.hero__slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .hero__slide-bg {
    object-position: top;
  }
  .cta-button {
    margin-top: 60px;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    padding: 10px 24px;
    max-width: 211px;
  }
  .hero__slide__additional-text {
    display: block;
  }
  .hero__slide__description {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 6px;
  }
  .hero__slide-content h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
  }

  .hero__container {
    height: 527px;
    padding: 16px;
    border-radius: 28px;
  }
  .hero__slide-content {
    top: 57px;
    left: 50px;
    max-width: 60%;
  }

  .hero__slide__price {
    gap: 10px;
    margin-bottom: 20px;
  }
  .hero__slide__price span[badge] {
    font-size: 20px;
    line-height: 20px;
    padding: 3px 8px;
  }
  .hero__slide__price span[price] {
    font-size: 24px;
  }
  .hero__slide__price span[oldPrice] {
    font-size: 12px;
  }

  .hero__slide__tag {
    padding: 8px 12px;
  }
  .hero__slide__tag img {
    width: 16px;
    height: 16px;
  }
  .hero__slide__tag p {
    font-size: 14px;
    line-height: 16px;
  }
}
