/*
 * common.css - Общие исправления родительских стилей
 */

body {
    color: #282C31;
}

.cookie {
  background: #606A77;
}


.cooperation__form-wrapp .cooperation__input {
  background: #fff;
}

.offer {
  padding: 2em 0;
}


/* ===== ВОССТАНАВЛИВАЕМ ЛОГОТИП ===== */
.header__logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 200px !important;
    height: auto !important;
}

.header__logo img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
}

/* ===== РАСШИРЯЕМ КОНТЕЙНЕР НА ШИРОКИХ ЭКРАНАХ ===== */
@media (min-width: 1200px) {
    .container {
        width: 1200px !important;
        max-width: 1200px !important;
    }
}

@media (min-width: 1400px) {
    .container {
        width: 1300px !important;
        max-width: 1300px !important;
    }
}

@media (min-width: 1600px) {
    .container {
        width: 1400px !important;
        max-width: 1400px !important;
    }
}

/* Если нужно оставить зеленый только в определенных местах */
.text-green {
    color: #1EAD82 !important;
}

/* Заголовки секций */
.advantages__title, 
.mission__title, 
.cooperation__title,
.products__title {
    font-weight: 900;
    color: #393E46;
}



/* Минимальные правки для секции Пресса если нужно */
#press .news__title {
    font-weight: 900;
    color: #393E46;
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

/* Адаптивность заголовка */
@media (max-width: 768px) {
    #press .news__title {
        font-size: 26px;
        margin-bottom: 40px;
    }
}



.catalog__detail.df {
    align-items: flex-start;
}

.catalog__detail .circle {
    position: relative;
    top: 6px; /* Точная настройка положения кружка */
    flex-shrink: 0;
}

.catalog__detail p {
    margin: 0;
    padding-left: 0px!important;
    line-height: 1.5;
}


/* ===== АККУРАТНЫЙ ФИКС ДЛЯ СПИСКОВ С КРУЖКАМИ НА МОБИЛЬНЫХ ===== */
@media (max-width: 991px) {
    /* Секция Дистрибьюторам */
    .cooperation__offers {
        text-align: left;
        padding-left: 0;
    }
    
    .cooperation__offer.df {
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .cooperation__offer .circle {
        margin-right: 12px;
        margin-top: 4px;
        flex-shrink: 0;
    }
    
    .cooperation__offer p {
        text-align: left;
    }
    
    /* Секция Миссия */
    .founder__list {
        text-align: left;
        padding-left: 0;
    }
    
    .founder__item.df {
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .founder__item .circle {
        margin-right: 12px;
        margin-top: 4px;
        flex-shrink: 0;
    }
    
    .founder__item p {
        text-align: left;
    }
    
    /* Секция Продукция */
    .catalog__detail.df {
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .catalog__detail .circle {
        margin-right: 12px;
        margin-top: 4px;
        flex-shrink: 0;
    }
    
    .catalog__detail p {
        text-align: left;
    }
}

/* ===== ОТСТУП СНИЗУ ДЛЯ КРУЖКОВ НА МОБИЛЬНЫХ ===== */
@media (max-width: 991px) {
    .cooperation__offer .circle,
    .founder__item .circle,
    .catalog__detail .circle {
        margin-bottom: 5px; /* Отступ снизу */
    }
}



/* Кнопка скачивания документации - КОМПАКТНАЯ и СЛЕВА */
.catalog__docs {
    margin-top: 20px;
    text-align: left; /* Выравниваем влево */
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.catalog__docs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start; /* Текст и иконка слева */
    gap: 8px; /* Меньше расстояние между текстом и иконкой */
    background: #1EAD82;
    color: white;
    padding: 8px 16px; /* Уменьшили padding */
    border-radius: 6px; /* Меньше скругление */
    text-decoration: none;
    font-weight: 600;
    font-size: 14px; /* Меньше шрифт */
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    min-width: auto; /* Убираем минимальную ширину */
    max-width: 280px; /* Максимальная ширина */
}

.catalog__docs-btn:hover {
    background: white;
    color: #1EAD82;
    border-color: #1EAD82;
    transform: translateY(-1px); /* Меньше подъём */
    box-shadow: 0 2px 8px rgba(30, 173, 130, 0.2);
}

.catalog__docs-btn:active {
    transform: translateY(0);
}

.catalog__docs-btn svg {
    width: 14px; /* Меньше иконка */
    height: 14px;
    stroke: currentColor;
    transition: transform 0.2s ease;
    flex-shrink: 0; /* Иконка не сжимается */
}

.catalog__docs-btn:hover svg {
    transform: translateY(1px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .catalog__docs-btn {
        padding: 7px 14px;
        font-size: 13px;
        max-width: 250px;
    }
    
    .catalog__docs-btn svg {
        width: 13px;
        height: 13px;
    }
    
    .catalog__docs {
        margin-top: 15px;
        padding-top: 12px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .catalog__docs-btn {
        padding: 6px 12px;
        font-size: 12px;
        max-width: 220px;
    }
}