/* Стили шапки */
.header {
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.header__logo img {
    max-height: 52px;
    width: auto;
    display: block;
}

.header__info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.header__item svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-green);
}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.header__contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    white-space: nowrap;
}

.header__contact-link:hover {
    color: var(--primary-green);
}

.header__contact-link svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-green);
}

.header__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--text-soft);
    transition: fill 0.2s;
}

.header__social-link:hover svg {
    fill: var(--primary-green);
}

.header__button {
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.header__button:hover {
    background-color: var(--primary-green);
    color: #ffffff;
}

/* Адаптивность */
@media (max-width: 900px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header__info {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .header__info {
        flex-wrap: wrap;
        gap: 12px;
    }

    .header__item {
        font-size: 12px;
    }

    .header__contacts {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}