.hero__container {
  max-width: 1600px;
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(10px, 2vw, 30px);
  display: flex;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .hero__container {
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .hero__container {
    gap: 30px;
  }
}
.hero__main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hero__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: var(--color-bg);
  border-radius: 16px;
  padding: 15px 5px;
  box-shadow: var(--color-shadow);
  min-height: 220px;
  height: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero__banner {
    padding: 28px 12px 40px 12px;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .hero__banner {
    padding: 30px 0 30px 35px;
  }
}
@media (min-width: 1280px) {
  .hero__banner {
    min-height: 285px;
    height: 460px;
    padding: 60px 0 60px 70px;
  }
}
.hero__badge {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.32px;
  border-radius: 6px;
  padding: 5px 8px;
  margin-bottom: 7px;
  display: inline-block;
  max-width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__badge {
    font-size: 13px;
    max-width: 50%;
    padding: 5px 8px;
    margin-bottom: 9px;
  }
}
@media (min-width: 1280px) {
  .hero__badge {
    max-width: 170px;
    padding: 6px 10px;
    margin-bottom: 9px;
  }
}
.hero__title {
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.7px;
  color: var(--color-secondary);
  margin-bottom: 10px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .hero__title {
    max-width: 50%;
  }
}
@media (min-width: 1280px) {
  .hero__title {
    max-width: 500px;
    letter-spacing: -1.4px;
  }
}
.hero__text {
  font-size: clamp(13.5px, 1.5vw, 16px);
  color: var(--color-muted);
  max-width: 100%;
  line-height: 1.55;
  letter-spacing: -0.2px;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .hero__text {
    max-width: 50%;
  }
}
@media (min-width: 1280px) {
  .hero__text {
    margin-bottom: 41px;
    max-width: 430px;
    letter-spacing: -0.32px;
  }
}
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (min-width: 1024px) {
  .hero__cta {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}
.hero__btn {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.28px;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.18s;
  order: 3;
}
@media (min-width: 1024px) {
  .hero__btn {
    order: unset;
  }
}
.hero__btn:hover {
  background-color: var(--color-primary);
  filter: brightness(90%);
}
.hero__price {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 2;
}
.hero__price-current {
  color: var(--color-error);
  font-weight: 700;
  font-size: clamp(21px, 2.5vw, 28px);
  line-height: 28px;
  letter-spacing: -0.56px;
}
.hero__price-old {
  color: var(--color-muted);
  font-size: clamp(15px, 1.8vw, 19.6px);
  font-weight: 500;
  letter-spacing: -0.56px;
  text-decoration: line-through;
  margin-left: 5px;
}
@media (min-width: 1024px) {
  .hero__price {
    order: unset;
  }
}
.hero__image {
  position: static;
  width: 100%;
  margin-top: 16px;
  right: unset;
  bottom: unset;
  opacity: 1;
}
@media (min-width: 768px) {
  .hero__image {
    position: absolute;
    bottom: 10px;
    right: 30px;
  }
}
@media (min-width: 1024px) {
  .hero__image {
    right: 20px;
  }
}
@media (min-width: 1280px) {
  .hero__image {
    position: absolute;
    bottom: 16px;
    right: 40px;
    width: auto;
  }
}
.hero__image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero__image img {
    margin: 0;
    float: right;
    max-width: 320px;
  }
}
@media (min-width: 1024px) {
  .hero__image img {
    max-width: 330px;
  }
}
@media (min-width: 1280px) {
  .hero__image img {
    max-width: 450px;
  }
}
.hero .swiper-slide {
  min-width: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero .swiper-slide {
    min-height: 450px;
    height: 100%;
  }
}
.hero .swiper-wrapper {
  align-items: stretch;
}

.hero__banner-slider {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

/* Swiper navigation buttons */
.hero__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: var(--color-secondary);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.hero__slider-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.hero__slider-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hero__slider-btn--prev {
  left: 16px;
}

.hero__slider-btn--next {
  right: 16px;
}

/* Swiper pagination is now handled by main.css */
.hero .swiper-pagination {
  bottom: 16px !important;
}

