/* Фикс для шапки - только ПК версия */

/* Базовые стили для восстановления нормальной шапки */
.header {
    position: relative !important;
    padding: 15px 0 !important;
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000 !important;
    width: 100% !important;
}

.header__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.logo {
    flex: 0 0 auto !important;
    margin-right: 20px !important;
}

.nav {
    display: flex !important;
    position: static !important;
    margin: 0 20px !important;
}

.nav__list {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nav__item {
    margin: 0 !important;
    padding: 0 !important;
}

.contact-header {
    display: flex !important;
    margin-left: auto !important;
}

.contact-header__row {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

/* Скрываем мобильные элементы на ПК */
.menu-toggle {
    display: none !important;
}

.logo__phone {
    display: none !important;
} 