

    /* =========== MAIN =========== */
    /* =========== MAIN =========== */
    /* =========== MAIN =========== */


    /* Контейнер меню с фоном и тенью */
    .menu {
      background-color: #ffffff;
      width: 100%;
      box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.06);
      position: relative;
      z-index: 10000;
    }
    
    /* Внутренний контейнер */
    .menu_inner {
      display: flex;
      justify-content: space-between;  /* Размещение элементов по краям */
      align-items: center;
      max-width: 1024px;  /* Максимальная ширина */
      height: 72.5px;
      margin: 0 auto;  /* Центрируем по горизонтали */
      box-sizing: border-box;  /* Включаем отступы в расчет размера */
    }
    
    /* Добавляем отступы слева и справа, но не изменяем ширину */
    @media (max-width: 1024px) {
      .menu_inner {
        margin-left: 40px;  /* Отступ слева */
        margin-right: 40px;  /* Отступ справа */
      }
    }
    
    .left {
      display: flex;
      align-items: center;
    }
    
    .logo img {
      display: block;
      width: 143px;
      height: 26px;
      z-index: 1;  /* Обеспечиваем, чтобы логотип был сверху */
    }
    
    .blank_space_1 {
      width: 44px;
      height: 30px;
      background-color: #ffffff;
    }
    
    a:link { text-decoration: none; }
    a:visited { text-decoration: none; }
    a:hover { text-decoration: none; }
    a:active { text-decoration: none; }
    
    /* Стили для текстового пункта меню */
    .menu_txt {
      display: flex;
      align-items: center; /* Центрируем элементы по вертикали */
      margin-right: 24px; 
      transition: opacity 0.3s ease; /* Плавный переход */
    }
    
    .menu_txt img {
      width: 9px; 
      height: 3.5px;
      margin-left: 5px;
      transition: opacity 0.3s ease; /* Плавность для изображения */
    }
    
    .menu_txt .text {
      font-family: Helvetica, sans-serif; 
      font-weight: bold;
      font-size: 13.5px;
      color: #000000;
      text-transform: uppercase; 
      transition: color 0.3s ease; /* Плавность для текста */
    }
    
    .menu_txt .text:hover {
      color: #0052db;
    }
    
    .menu_txt:hover img {
      content: url('../img/main/menu_v_hover.png');
    }
    
    @media (max-width: 1024px) {
      .menu_txt {
        display: none;
      }
    }
    
    /* Обертка для текстовых пунктов меню */
    .menu_txt_wrapper {
      position: relative;
      display: inline-block;
    }
    
    /* Стили для dropdown-окна текстового меню */
    .text_dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 12px); /* 12 пикселей ниже пункта меню */
      left: -16px;
      width: 260px;
      height: auto;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 10;
      /* Внутренние отступы для ссылок */
      padding: 20px 0 20px 20px;
    }
    
    /* Стили для ссылок внутри текстового dropdown */
    .text_dropdown a {
      display: block;
      margin-bottom: 14px;
      font-family: Helvetica, sans-serif;
      color: #000000;
      text-decoration: none;
    }
    /* Убираем отступ у последней ссылки */
    .text_dropdown a:last-child {
      margin-bottom: 0;
    }
    .text_dropdown a:hover {
      color: #0052db;
    }
    
    .right {
      display: flex;
      align-items: center;
    }
    
    .ico_search img {
      display: block;
      width: 20.5px;
      height: 21px;
      transition: opacity 0.3s ease;
    }
    .ico_search img:hover {
      opacity: 0.6;
    }
    
    .ico_user img {
      display: block;
      width: 17px;
      height: 19.5px;
      transition: opacity 0.3s ease;
    }
    .ico_user img:hover {
      opacity: 0.6;
    }
    
    .ico_menu img {
      display: block;
      width: 19px;
      height: 15px;
      transition: opacity 0.3s ease;
    }
    .ico_menu img:hover {
      opacity: 0.6;
    }
    
    .blank_space_2 {
      width: 31px;
      height: 30px;
      background-color: #ffffff;
    }
    
    .blank_space_3 {
      width: 31px;
      height: 30px;
      background-color: #ffffff;
    }
    
    /* Обертки для dropdown-окон иконок */
    .ico_menu_wrapper,
    .ico_user_wrapper {
      position: relative;
      display: inline-block;
    }
    
    /* Для иконки поиска – позиционирование наследуется от .menu */
    .ico_search_wrapper {
      display: inline-block;
    }
    
    /* Dropdown для ico_menu и ico_user */
    .ico_menu_wrapper .dropdown,
    .ico_user_wrapper .dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 24px);
      right: 0;
      width: auto;
      height: auto;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 10;
    }

    /* =====  MEDIA  =====  */
    @media (max-width: 700px) {
    .ico_user_wrapper .dropdown {
      right: -50px;
    }
    }
    
    /* Dropdown для ico_search */
    .ico_search_wrapper .dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 0px);
      left: 0;
      right: 0;
      height: auto;
      background-color: #ffffff;
      z-index: 10;
         /* x-offset: 0, y-offset: 4px, blur: 6px, spread: -4px */
         box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    }


    /* =========== MENU =========== */
    /* =========== MENU =========== */
    /* =========== MENU =========== */

    .dd_menu {
      margin-left: 0px;
      margin-top: 0px;
      width: 297px;
      height: 600px;
      background-color: #ffffff;
      border-right: 0px solid #ccc;
      border-radius: 10px;
      display: flex;
      flex-direction: column; 
    }

    .dd_menu_search {
      left: 24px;
      top: 24px;
      width: 246px;
      height: 39px; /* <<<<<<<<<<<< ВЫСОТА SEARCH ОКНА (1) ======= */
      background-color: white;
      border: 1px solid #eaeaea;
      border-radius: 11px;
      display: flex;
      align-items: center;
      position: relative;
    }

    .dd_menu_search_input_field {
      font-family: Helvetica, Arial, sans-serif;
      font-size: 18px;
      color: black;
      border: none;
      outline: none;
      background: none;
      height: 38px; /* <<<<<<<<<<<< ВЫСОТА SEARCH ОКНА (2) ======= */
      width: 100%;
      padding-left: 2px;
      box-sizing: border-box;
    }

    .dd_menu_search_input_field::placeholder {
      font-family: Helvetica, Arial, sans-serif;
      font-size: 16px;
      color: #919191;
    }

    .dd_menu_search_ico_search {
      margin-left: 14px;
      margin-right: 10px;
      display: flex;
      align-items: center;
    }

    .dd_menu_search_ico_search img {
      display: block;
      width: 17px;
      height: 17px;
    }



    .dd_menu_blank_space {
      width: 300px;
      height: 10px;
      padding-top: 34px;
    }



    .dd_menu_list {
      padding-left: 24px;
      padding-top: 0px;
      font-family: Helvetica, Arial, sans-serif;
      font-size: 17px;
      font-weight: bold;
      overflow-y: auto;
    }

    .dd_menu_list a {
      display: flex;
      align-items: center;
      color: #292929;
      text-decoration: none;
      margin-bottom: 13px;
      cursor: pointer;
  transition: color 0.3s ease; /* Плавное изменение цвета */
    }

    .dd_menu_list a:hover {
      color: #0052db;
    }

    .dd_menu_list a img {
      width: 10px;
      height: 10px;
      margin-right: 7px;
      object-fit: contain;
    }

.sub_menu {
  display: none;
  padding-left: 18px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: black;
  list-style: none;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.sub_menu.open {
  display: block;
  height: auto;
}

.sub_menu a {
  color: #616161;
  text-decoration: none;
  display: block;
  padding: 0px 0px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.sub_menu a:hover {
  color: #0052db;
  transform: translateX(4px);
}

.sub_menu .first-item {
  margin-top: 0px; /* Отступ от материнского меню */
}

.sub_menu .last-item {
  margin-bottom: 10px; /* Отступа после последнего пункта */
}

.active-icon {
  content: url('../img/dd_menu/menu_v_hover.png');
}

.default-icon {
  content: url('../img/dd_menu/menu_v.png');
}



    /* =========== NEWSLETTER =========== */
    /* =========== NEWSLETTER =========== */
    /* =========== NEWSLETTER =========== */

        .dd_newsl {
            margin-left: 0px;
            margin-top: 0px;
            width: 492px;
            height: auto;
            background-color: #ffffff;
            border-radius: 10px;
            padding: 0px;
      display: flex;
      flex-direction: column; 
        }


    /* =====  MEDIA  =====  */
    @media (max-width: 700px) {
    .dd_newsl {
        width: 350px;
    }
    }

        .dd_newsl_inner {
            margin-left: 30px;
            margin-right: 30px;
            height: auto;
      display: flex;
      flex-direction: column; 
        }


        .dd_newsl_inner h1 {
            font-family: Helvetica, Arial, sans-serif;
            text-align: center;
            font-size: 28px;
            font-weight: bold;
            color: #000000;
            margin-top: 34px;
            margin-bottom: 10px;
        }

        .dd_newsl_inner p {
            font-family: Helvetica, Arial, sans-serif;
            text-align: center;
            font-size: 16px;
            color: #111014;
      line-height: 22px; /* Расстояние между строками */
      max-width: 410px;
      margin: 0 auto;
            margin-bottom: 20px;
        }


        .dd_newsl_input {
            display: flex;
            justify-content: center;
        }

        .dd_newsl_input input[type="email"] {
            width: 100%;
            max-width: 298px;
            height: 45px;
            font-family: Helvetica, Arial, sans-serif;
            font-size: 14px;
            padding-left: 20px;
            box-sizing: border-box;
            margin-right: 0px;
            border: 1px solid #dbdbdb;
            border-right: none;  /* Скрываем границу */
            border-top-left-radius: 6px;
            border-top-right-radius: 0px;
            border-bottom-left-radius: 6px;
            border-bottom-right-radius: 0px;
        }

        .dd_newsl_input input[type="email"]::placeholder {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 15px;
            font-style: normal;
            color: #a6a5a5;
        }

.dd_newsl_input input[type="email"]:focus {
    outline: none;
}

        .dd_newsl_input button {
            width: 100%;
            max-width: 111px;
            height: 45px;
            font-family: Helvetica, Arial, sans-serif;
            font-size: 15px;
            font-weight: bold;
            color: #ffffff;
            background-color: #0052db;
            border: none;
            border-top-left-radius: 0px;
            border-top-right-radius: 6px;
            border-bottom-left-radius: 0px;
            border-bottom-right-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s ease; /* Плавное изменение фона */
        }

        .dd_newsl_input button:hover {
            background-color: #0f69ff;
        }


        .dd_newsl_legal {
            font-family: Helvetica, Arial, sans-serif;
            text-align: center;
            font-size: 11.5px;
            color: #767676;
      line-height: 16px; /* Расстояние между строками */
      max-width: 400px;
      margin: 0 auto;
            margin-top: 13px;
            margin-bottom: 34px;
        }
        .dd_newsl_legal a {
            font-family: Helvetica, Arial, sans-serif;
            color: #000000;
            text-decoration: underline;
        }
        .dd_newsl_legal a:hover {
            text-decoration: none;
        }


    /* =========== SEARCH =========== */
    /* =========== SEARCH =========== */
    /* =========== SEARCH =========== */

        .dd_search_gray_line {
            background-color: #f0f0f0;
            width: 100%;
            height: 1px;
        }

        .dd_search_bg {
            background-color: #ffffff;
            width: 100%;
        }

        /* Объединённый контейнер для центрирования */
        .dd_search_inner {
            display: flex;
            justify-content: space-between;  /* Размещение элементов по краям */
            align-items: center; 
            max-width: 1024px;
            height: 74px;
            margin: 0 auto;  /* Центрируем по горизонтали */
            box-sizing: border-box;  /* Включаем отступы в расчет размера */
        }

        /* Добавляем отступы слева и справа, но не изменяем ширину */
        @media (max-width: 1024px) {
            .dd_search_inner {
                margin-left: 40px;  /* Отступ слева */
                margin-right: 40px;  /* Отступ справа */
            }
        }


        .dd_search_ico_search {
            margin-right: 10px;
            display: flex;
            align-items: center;
        }

        .dd_search_ico_search img {
            display: block;
            width: 18px;
            height: 17px;
            transition: opacity 0.3s ease; /* Плавный переход */
        }


        .dd_search_search-form {
            width: 100%;  /* Форма будет занимать 100% доступной ширины */
            max-width: 950px;  /* Максимальная ширина */
            height: 30px;
            background-color: white;
            border: 0px solid #808080;
            border-radius: 4px;
            display: flex;
            align-items: center;
            position: relative;
            padding-left: 0;
            box-sizing: border-box;
        }

        .dd_search_input-field {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 18px;
            font-style: normal;
            color: black;
            border: none;
            outline: none;
            background: none;
            width: 100%;
            padding-left: 2px;
            box-sizing: border-box;
        }

        .dd_search_input-field::placeholder {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 18px;
            font-style: normal;
            color: #9c9c9c;
        }


        .dd_search_ico_x {
            margin-left: 20px;
            display: flex;
            align-items: center;
        }

        .dd_search_ico_x img {
            display: block;
            width: 16.5px;
            height: 16.5px;
            transition: opacity 0.3s ease; /* Плавный переход */
        }

        .dd_search_ico_x img:hover {
            opacity: 0.6; /* Уменьшаем непрозрачность на 10% */
        }




