@media (min-width: 1200px) {
  /* Подложка под верхнюю шапку + меню (только десктоп) */
  header {
    position: relative;
    z-index: 10;
  }

  header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("//sibirtest.ru/wp-content/themes/sibirtest_theme_two_new/assets/image/podl.png") center / cover no-repeat;
    z-index: -1;
  }

  /* Стеклянная карточка вокруг .header-top */
  .header-top {
    padding-top: 32px;
    padding-bottom: 18px; /* меньше, чтобы меню вплотную примыкало */
    border-bottom: none;
    background: transparent;
  }

  .header-top > .container {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 22px 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  /* Логотип — немного крупнее и аккуратнее, без изменения сетки */
  .header-top .header-top__logo {
    width: 260px;
  }

  /* Кнопки в шапке как стеклянные карточки */
  .header-top .header-top__btn-wrapper .header-top__btn {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .header-top .header-top__img-wrapper {
    box-shadow: none;
  }

  .header-top .header-top__btn-wrapper .header-top__link-btn {
    border-bottom-color: rgba(55, 71, 79, 0.6);
  }

  .header-top .header-top__btn-wrapper:hover .header-top__btn {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  .header-top .header-top__btn-wrapper:hover .header-top__link-btn {
    border-bottom-color: #4bae50;
    color: #4bae50;
  }

  /* Навигация чуть заезжает вверх, убираем видимый зазор */
  .header__nav--main.header__nav {
    margin-top: -6px;
  }
}

@media (min-width: 1200px) {
  /* Подложка только под верхнюю шапку (десктоп) */
  .glass-header-bg {
    background: url('//sibirtest.ru/wp-content/themes/sibirtest_theme_two_new/assets/image/podl.png') center / cover no-repeat;
    padding: 24px 0 26px;
  }

  .header-top.glass-header {
    background: transparent;
    margin-bottom: 0;
  }

  /* Стеклянный контейнер шапки */
  .glass-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 25px 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  /* Логотип */
  .glass-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
  }

  .glass-logo img {
    width: 60px;
    height: auto;
    flex-shrink: 0;
  }

  .glass-logo__text {
    display: flex;
    flex-direction: column;
  }

  .glass-logo__text strong {
    font-size: 24px;
    color: #2e7d32;
    line-height: 1.2;
  }

  .glass-logo__text span {
    display: block;
    font-size: 14px;
    color: #555;
  }

  /* Контакты справа */
  .glass-contacts {
    text-align: right;
    font-size: 15px;
    color: #222;
  }

  .glass-contacts .city-item {
    font-weight: 600;
    margin-bottom: 6px;
  }

  .glass-contacts .top-phone__phone a {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #222;
  }

  .glass-contacts .top-phone__email a {
    display: block;
    font-size: 14px;
    color: #455a64;
  }

  /* Блок с тремя действиями в шапке */
  .glass-actions {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    width: 100%;
  }

  .glass-actions .header-top__btn-wrapper {
    flex: 1 1 0;
  }

  .glass-action {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 18px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
  }

  .glass-action .header-top__img-wrapper {
    margin-bottom: 8px;
  }

  .glass-action .header-top__img {
    width: 26px;
    height: 26px;
  }

  .glass-action .header-top__link-btn {
    display: block;
    margin-top: 4px;
    font-weight: 500;
    color: #222;
  }

  .glass-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }
}

