
@media (max-width: 767px) {
.uni-banner__img {
    height: 130px;
}
.home-banner {
flex-direction: column;
}

}

.home-banner__item {
    padding: 10px;
    border: 1px solid #ddd;
}
@media (max-width: 767px) {
.top-menu .container {
    flex-direction: row-reverse;
}
.top-menu .btn-group {
    justify-content: flex-end;
}
    
}

.header-phones__show-phone {
        color: #fff;
}


.header-phones__show-phone:hover {
    color: #fff;
    opacity:0.8;
}
@media (max-width: 767px) {
    .header-block {
            flex-wrap: wrap;
            justify-content: center;
    row-gap: 12px;
    }
}

.menu-open__icon {
    margin-right: 5px;
}
.header-phones__main {
    color: #fff;
    background: transparent;
}

    .product-thumb__cart .btn {
        height: 40px;
            width: 100%;
    }

@media (max-width: 575px) {
    .product-thumb__model:before, .product-thumb .qty-indicator:before{display:block}
}

.product-thumb__quick-order {
    display: none;
}


/* =========================================
   ОСНОВНОЙ КОНТЕЙНЕР (ПК и Планшеты)
========================================= */
.tactical-main-banner {
    width: 100%;
    height: 50vh; /* 50% высоты окна браузера */
    min-height: 400px; /* Минимальная высота */
    
    /* ССЫЛКА НА ШИРОКУЮ КАРТИНКУ (ДЕСКТОП) */
    background-image: url('./images/banner.jpg'); 
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Затемнение (градиент) только в правом нижнем углу для читаемости текста */
.tactical-main-banner::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 60%; 
    height: 100%;
    /* Градиент по диагонали: прозрачный слева-сверху, темный справа-снизу */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1; 
    pointer-events: none; /* Чтобы клики проходили сквозь градиент */
}

/* Контейнер с текстом и кнопкой */
.tactical-banner-content {
    position: absolute;
    bottom: 50px;
    right: 50px;
    text-align: right;
    z-index: 2; /* Поверх затемнения */
    color: #ffffff;
    font-family: inherit;
    max-width: 50%; /* Ограничиваем ширину текста на больших экранах */
}

/* Заголовок */
.tactical-banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    color: #ffffff;
    line-height: 1.1;
}

/* Подзаголовок */
.tactical-banner-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 25px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    color: #f0f0f0;
}

/* Кнопка */
.tactical-banner-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4A5D23; /* Тематический оливковый цвет */
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.tactical-banner-btn:hover {
    background-color: #3b4a1c;
    color: #ffffff;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

/* =========================================
   АДАПТИВНОСТЬ: ПЛАНШЕТЫ
========================================= */
@media (max-width: 991px) {
    .tactical-banner-title {
        font-size: 2.5rem;
    }
    .tactical-banner-subtitle {
        font-size: 1.2rem;
    }
}

/* =========================================
   АДАПТИВНОСТЬ: МОБИЛЬНЫЕ ТЕЛЕФОНЫ
========================================= */
@media (max-width: 767px) {
    .tactical-main-banner {
        height: 60vh; /* На мобильных делаем повыше */
        
        /* ССЫЛКА НА КВАРДРАТНУЮ ИЛИ ВЕРТИКАЛЬНУЮ КАРТИНКУ (ТЕЛЕФОН) */
        background-image: url('./images/bannermob.jpg');
    }
    
    /* Меняем градиент на мобильных, чтобы он закрывал весь низ (текст на всю ширину) */
    .tactical-main-banner::after {
        width: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    }

    .tactical-banner-content {
        bottom: 30px;
        right: 20px;
        left: 20px; 
        max-width: 90%; /* Разрешаем тексту занимать почти всю ширину экрана */
    }
    
    .tactical-banner-title {
        font-size: 2rem;
    }
    .tactical-banner-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    .tactical-banner-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}