.header {

  min-height: 75px;  
  border-bottom: 1px solid #d3d3d3;
  background: #f45b67;;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__inner {

    margin: 0px  24px 0px 24px;
    max-width: 1920px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.header__contacts {
   
   width: 100%;
   max-width: 150px;
   display: flex;
   justify-content: space-between;
}

.header__logo {

   display: flex;
   align-items: center;
}

.header__inform {

   width: calc( 100% - 150px );
   display: flex;
   justify-content: space-between;
}

.header__nav { 

  max-width: 420px;
  width: 100%;
  display: flex;

}

.header__menu { 

  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  list-style: none;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-decoration: none;

}

.header__cta{

  border: 2px solid #ffffff;
  border-radius: 7px;
  padding: 5px 3px;
  margin-left:auto;
  background-color: white;
  color: #f45b67;
} 

/* Кнопка-гамбургер (скрыта на десктопе) */
.hamburger {
  display: none;
  position: relative;
  width: 40px; height: 32px;
  background: transparent; border: 0; cursor: pointer;
  margin-right: 12px;
}
.hamburger span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: #fff; border-radius: 2px;
}
.hamburger span:nth-child(1){ top: 8px; }
.hamburger span:nth-child(2){ top: 15px; }
.hamburger span:nth-child(3){ top: 22px; }

/* Ссылки меню на десктопе */
.header_menu .menu__link { color:#fff; text-decoration:none; }

.js-scroll:focus,
.js-scroll:hover, 
.js-scroll:active {

  color: inherit;
  text-decoration: none;
  outline: none;
}

.js-scroll_btn:focus,
.js-scroll_btn:active,
.js-scroll_btn:hover {

  color: #f45b67;;
  text-decoration: none;
  outline: none;
}

.js-scroll_btn_ad:focus,
.js-scroll_btn_ad:active,
.js-scroll_btn_ad:hover {

  color: white;
  text-decoration: none;
  outline: none;
}



/* ===== Мобилка ≤ 800px ===== */
@media (max-width: 800px) {

  .header__inner { margin: 0 8px; }

  /* показываем кнопку */
  .hamburger { display: inline-block; }

  /* превращаем твой UL в off-canvas панель */
  .header__menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh; width: 260px;
    background: #fff; color:#222;
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: flex-start;
    padding: 80px 16px 16px;
    gap: 16px; margin: 0;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -8px 0 24px rgba(0,0,0,.2);
    z-index: 1001;
    list-style: none;
  }
  .header__menu.is-open { transform: translateX(0); }
  .header__menu .menu__link { color:#222; font-weight:600; }

  /* подложка */
  .menu-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 1000;
  }
  .menu-overlay.show { display: block; }

  /* запрет прокрутки страницы при открытом меню */
  body.noscroll { overflow: hidden; }

  /* по желанию можно скрыть CTA, если не влезает */
  /* ._header_cta { display:none; } */
}


