   /* Секция с меню */



    .navbar-section {
      position: static;
      width: 100%;
      z-index: 1030;
    }

    /* На десктопе — фиксируем */
    @media (min-width: 992px) {
      .navbar-section {
        position: fixed;
        top: 0;
        left: 0;
      }

      .content {
        margin-top: 80px;
      }
    }

    /* Прозрачный фон по умолчанию */
    .navbar {
      background-color: transparent !important;
      transition: background-color 0.4s ease;
      border: none;
    }

    /* При прокрутке — цвет #24A59E */
    .navbar.scrolled {
      background-color: #24A59E !important;
    }

    .navbar.scrolled .nav-link,
    .navbar.scrolled .wish-icon,
    .navbar.scrolled .navbar-toggler-icon::before,
    .navbar.scrolled .navbar-toggler-icon::after,
    .navbar.scrolled .navbar-toggler-icon span {
      color: white;
   
    }

    /* Логотип */
    .navbar-brand img {
      height: 40px;
    }

    /* Кастомное сердечко (изображение) */
    .wish-icon {
      display: block;
      width: 24px;
      height: 22px;
      background: url('https://tour2turkey.com/wp-content/themes/tour2turkey_tmp/img/wish.svg') no-repeat center center;
      background-size: contain;
      text-indent: -9999px;
      overflow: hidden;
    }

    /* Позиционирование сердечка справа на десктопе */
    .desktop-right {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
    }

    @media (max-width: 991.98px) {
      .desktop-right {
        display: none;
      }
    }

    /* Мобильные действия — сердечко + бургер */
    .mobile-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    /* Гамбургер-меню 28x4px */
    .navbar-toggler {
      border: none;
      padding: 0.5rem 0.75rem;
      width: 28px;
      height: 22px; /* 3 полоски по 4px, с отступами */
      position: relative;
    }

    .navbar-toggler-icon {
      display: none;
    }

    .navbar-toggler .navbar-toggler-icon-custom {
      position: absolute;
      width: 100%;
      height: 4px;
      background-color: white;
      transition: all 0.3s;
      border-radius: 1px;
    }

    .navbar-toggler .navbar-toggler-icon-custom:nth-child(1) {
      top: 0;
    }

    .navbar-toggler .navbar-toggler-icon-custom:nth-child(2) {
      top: 50%;
      transform: translateY(-50%);
    }

    .navbar-toggler .navbar-toggler-icon-custom:nth-child(3) {
      bottom: 0;
    }

    /* При активации — анимация в "крестик" */
    .navbar-toggler.collapsed .navbar-toggler-icon-custom:nth-child(1) {
      transform: rotate(45deg);
      top: 50%;
    }

    .navbar-toggler.collapsed .navbar-toggler-icon-custom:nth-child(2) {
      opacity: 0;
    }

    .navbar-toggler.collapsed .navbar-toggler-icon-custom:nth-child(3) {
      transform: rotate(-45deg);
      bottom: 50%;
    }

    /* Full-screen оверлей меню */
    .navbar-collapse {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #24A59E;
      z-index: -1;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s, visibility 0.4s;
      overflow: auto;
      padding-top: 120px;
    }

    .navbar-collapse.show {
      opacity: 1;
      visibility: visible;
      z-index: 1020;
    }

    /* Центральные пункты на десктопе */
    .navbar-center {
      flex-grow: 1;
      display: flex;
      justify-content: center;
    }

    @media (max-width: 991.98px) {
      .navbar-center {
        display: none;
      }
    }
#headermenu .nav-link:first-child::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 3px;
    background: none!important;
    border-radius: 2px;
}
    /* Стиль пунктов меню */
    .navbar-nav .nav-link {
      color: #FFFFFF !important;
      font-weight: 400;
      font-style: normal;
      font-size: 17.89px;
      line-height: 23px;
      letter-spacing: -0.41px;
      margin: 0 1rem;
    }

    .overlay-nav .nav-link {
      color: #FFFFFF !important;
      font-weight: 400;
      font-style: normal;
      font-size: 17.89px;
      line-height: 23px;
      letter-spacing: -0.41px;
      margin: 1.5rem 0;
    }