/* Баннер для страницы продуктов */
.banner-section {
  width: 100%;
  min-height: 425px;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 100%;
  height: 425px;
  padding: 0 30px;
  background-image: url('/img/products/desktop/head.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.banner-text-box {
  max-width: 50%;
  text-align: left;
}

.banner-image-box {
  display: none;
}

.banner-image-box img {
  width: 100%;
  height: 260px;
  border-radius: 15px;
  object-fit: cover;
  object-position: -360px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.banner-title {
  font-family: 'DINPro', sans-serif;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
  background: #ef786f;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-description {
  font-family: 'DINPro', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #161817;
  max-width: 400px;
}

.banner-description span {
  color: #ef786f;
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
  .banner-section {
    min-height: 400px;
  }

  .banner-title {
    font-size: 36px;
  }

  .banner-description {
    font-size: 16px;
  }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
  .banner-text-box {
    max-width: 100%;
    text-align: center;
  }

  .banner-image-box {
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .banner-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .banner-description {
    font-size: 16px;
    max-width: 100%;
  }
}
