/* ===================================
   АДАПТИВНЫЕ СТИЛИ БАННЕРА ДЛЯ МОБИЛЬНЫХ
   =================================== */

/* Мобильные устройства (до 767px) */
@media (max-width: 767px) {
  .banner-container {
    height: auto;
    min-height: 400px;
    padding: 30px 20px 20px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 20px;
  }

  .banner-background {
    height: 100%;
    object-position: center center;
    border-radius: 15px;
  }

  .banner-content {
    gap: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .banner-header {
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .banner-title {
    font-size: 32px !important;
    line-height: 110%;
    text-align: center !important;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .banner-badge {
    position: static !important;
    left: auto !important;
    top: auto !important;
    padding: 8px 16px !important;
    margin: 0 auto 20px !important;
    align-self: center;
  }

  .banner-subtitle {
    font-size: 14px;
    line-height: 120%;
    white-space: nowrap;
  }

  .banner-actions {
    flex-direction: column !important;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .banner-prices {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }

  .banner-price-current {
    font-size: 18px;
    line-height: 120%;
  }

  .banner-price-old {
    font-size: 16px;
    line-height: 120%;
    opacity: 0.7;
  }

  .banner-buttons {
    flex-direction: column !important;
    gap: 15px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .banner-button-primary,
  .banner-button-secondary {
    width: 100%;
    max-width: 280px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
  }

  .banner-button-primary {
    background: #6e3514;
    color: #ffffff;
  }

  .banner-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
  }

  .banner-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
  }

  .banner-play-icon {
    width: 24px;
    height: 24px;
  }

  .banner-delivery {
    position: static !important;
    left: auto !important;
    top: auto !important;
    text-align: center !important;
    margin-top: 20px !important;
    font-size: 14px;
    line-height: 120%;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 20px;
  }
}

/* Планшеты (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .banner-container {
    padding: 40px 30px 0px 40px;
    height: 450px;
  }

  .banner-background {
    height: 450px;
  }

  .banner-title {
    font-size: 60px;
    width: 600px;
  }

  .banner-content {
    gap: 80px;
  }
}

/* Маленькие мобильные устройства (до 480px) */
@media (max-width: 480px) {
  .banner-container {
    padding: 20px 15px 0px 15px;
    height: 380px;
    margin: 0 10px 30px 10px;
  }

  .banner-background {
    height: 380px;
  }

  .banner-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .banner-badge {
    margin-bottom: 15px;
    padding: 8px 16px;
  }

  .banner-subtitle {
    font-size: 18px;
  }

  .banner-content {
    gap: 25px;
  }

  .banner-actions {
    gap: 20px;
  }

  .banner-prices {
    gap: 10px;
  }

  .banner-price-current,
  .banner-price-old {
    font-size: 18px;
  }

  .banner-text {
    font-size: 16px;
  }

  .banner-button-primary,
  .banner-button-secondary {
    padding: 12px 20px;
    max-width: 250px;
  }

  .banner-delivery {
    font-size: 16px;
    margin-top: 15px;
  }
}

/* Очень маленькие экраны (до 375px) */
@media (max-width: 375px) {
  .banner-container {
    height: 320px;
    padding: 12px 8px 0px 8px;
  }

  .banner-background {
    height: 320px;
  }

  .banner-title {
    font-size: 22px;
  }

  .banner-badge {
    padding: 5px 10px;
  }

  .banner-subtitle {
    font-size: 14px;
  }

  .banner-button-primary,
  .banner-button-secondary {
    max-width: 200px;
    padding: 8px 14px;
  }

  .banner-text {
    font-size: 13px;
  }
}

