/* === ОЧИСТКА ПОТОКА (Clearfix) === */
.header-top:after,
.header-bottom:after {
  content: '';
  display: block;
  clear: both;
}

/* === ВЕРХНИЙ РЯД (FLOAT-ВЕРСТКА, ИЗОЛИРОВАНО) === */
.header-top .logo {
  float: left;
  margin: 0;
  padding: 0;
}
.header-top .logo img {
  max-height: 60px;
  width: auto;
  height: auto;
}

.header-top .address-block,
.header-top .contact-block {
  float: left;
  padding: 4px 20px 0;
  border-right: 1px solid #eee;
  white-space: nowrap;
}
.header-top .contact-block:last-child {
  border-right: none;
  padding-right: 0;
}

.header-top .block-title {
  font-weight: 400;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  border-bottom: none !important;
}
.header-top .block-title::after {
  display: none !important;
}

.header-top .block-content {
  line-height: 1.5;
}
.header-top .block-content p { margin-bottom: 6px; }
.header-top .block-content a {
  font-weight: 400;
  display: inline-block;
  margin-bottom: 5px;
  transition: color 0.2s ease;
}
.header-top .block-content a:hover { color: #1a1a1a; }
.header-top .block-content a i {
  width: 16px;
  text-align: center;
}

.header-top .contact-cols {
  display: flex;
  gap: 10px;
}
.header-top .contact-col { flex: 1; white-space: nowrap; }

/* Меню */
.header-top #nav {
  float: left;
  height: auto;
}

/* === НИЖНИЙ РЯД === */
.header-bottom {
  position: relative;
}
.header-bottom .search-block {
  width: 100%;
  margin: 0 20px;
}

/* Поиск десктоп */
.search-desktop {
  width: 100%;
  height: 32px;
}

/* ФИКС ЯНДЕКС-ПОИСКА */
.search-desktop .ya-site-form,
.search-desktop .ya-site-form form {
  width: 100% !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  box-sizing: border-box;
}
.search-desktop .ya-site-form input[name="text"] {
  flex: 1 1 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box;
}
.search-desktop .ya-site-form input[type="submit"] {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  border-radius: 0 3px 3px 0 !important;
  margin-left: -1px !important;
}

/* === АДАПТИВ === */
@media (max-width: 1390px) {
  .header-top .address-block { display: none; }
}

@media (max-width: 991px) {
  /* Скрываем контакты и адрес */
  .header-top .address-block,
  .header-top .contact-block { display: none; }

  /* Меню: возвращаем старый контекст, чтобы .uMenuV растягивался корректно */
  .header-top #nav {
    float: none;
    width: 100%;
  }

  .header-bottom {
    height: auto;
    padding: 10px 0;
  }
  .header-bottom .search-block {
    width: 100%;
    margin: 10px 0 0;
  }
  .search-desktop { display: none; }

  /* Финальная страховка растяжения (дублирует логику css.txt) */
  #nav .uMenuV {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 491px) {
  .header-bottom .search-block { margin: 0; }
}

@media (max-width: 350px) {
  .header-top .logo img { width: 240px; }
}