

    .menu_all {
      display: flex;
      flex-direction: column; 

    }




    /* =========== APP BAR =========== */
    /* =========== APP BAR =========== */
    /* =========== APP BAR =========== */

    .app_bar {
      background-color: #202020;
      width: 100%;
    }
    
    .app_bar_inner {
      display: flex;
      justify-content: space-between;  /* Размещение элементов по краям */
      align-items: center;
      max-width: 1154px;  /* Максимальная ширина */
      height: 93.5px;
      margin: 0 auto;  /* Центрируем по горизонтали */
      box-sizing: border-box;  /* Включаем отступы в расчет размера */
    }
    
    /* Добавляем отступы слева и справа, но не изменяем ширину */
    @media (max-width: 1154px) {
      .app_bar_inner {
        margin-left: 40px;  /* Отступ слева */
        margin-right: 40px;  /* Отступ справа */
      }
    }

    @media (max-width: 800px) {
    .app_bar_inner {
      height: 110px;
    }
    }
    @media (max-width: 500px) {
    .app_bar_inner {
      height: 130px;
    }
    }
    
    a:link { text-decoration: none; }
    a:visited { text-decoration: none; }
    a:hover { text-decoration: none; }
    a:active { text-decoration: none; }
    




    .app_bar_left {
      display: flex;
      flex-direction: row; 
      align-items: center; /* Центрируем элементы по вертикали */
      gap: 18px;
    }
    


    .app_bar_ico_cont {
    }

    .app_bar_ico {
      display: flex;
      align-items: center; /* Центрируем элементы по вертикали */
    }
    
    .app_bar_ico img {
      width: 61.5px;
      height: 61.5px;
    }

    

    .app_bar_info {
      display: flex;
      flex-direction: column; 
    }
    
    .app_bar_title {
      text-align: left;
      font-family: Helvetica, sans-serif; 
      font-weight: bold;
      font-size: 18.5px;
      letter-spacing: 0.3px;
      color: #ffffff;
      margin-bottom: 3px;
    }

    .app_bar_descr {
      text-align: left;
      font-family: Helvetica, sans-serif; 
      font-weight: normal;
      font-size: 14px;
      color: #ffffff;
      margin-bottom: 5px;
    }



    .app_bar_stars {
      display: flex;
      flex-direction: row; 
      gap: 6px;
    }
    
    .app_bar_stars_img img {
      width: 79.5px;
      height: 14px;
    }

    .app_bar_stars_txt {
      text-align: left;
      font-family: Helvetica, sans-serif; 
      font-weight: normal;
      font-size: 11.5px;
      color: #959595;
      margin-top: 0.5px;
    }




    .app_bar_right {
      display: flex;
      align-items: center; /* Центрируем элементы по вертикали */
    }
    
    .app_bar_button {
      margin-left: 15px; 
      display: flex;
      justify-content: center; /* Горизонтальное центрирование */
      align-items: center; /* Вертикальное центрирование */
      width: 115px;
      height: 36px;
      background-color: #000000;
      color: #ffffff;
      font-family: Helvetica, sans-serif;
      font-size: 12.5px;
      font-weight: bold;
      text-transform: uppercase;
      border-radius: 9px;
      text-decoration: none;
      transition: background-color 0.3s ease; /* Плавный переход ховера */
    }
    
    .app_bar_button:hover {
      background-color: #f50a0a; /* Более темный красный оттенок */
    }
    



    /* =========== PROMO =========== */
    /* =========== PROMO =========== */
    /* =========== PROMO =========== */

    .menu_promo {
      display: flex;
      align-items: center;      /* по вертикали */
      justify-content: center;  /* по горизонтали */
      margin: 0 auto;  /* Центрируем по горизонтали */
      background-color: #000000;
      width: 100%;
      height: 43px;
          border-bottom: 0.5px solid #2b2c2b; /* нижняя граница */
    }


.promo_fade {
  position: relative;
  height: 43px;
}

.promo_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 43px;
  font-family: Helvetica, sans-serif;
  font-size: 15px;
  color: #ffffff;
  white-space: nowrap;
}

.promo_item.active {
  opacity: 1;
  z-index: 1;
}



    /* =====  MEDIA  =====  */
    @media (max-width: 850px) {
    .menu_promo {
      display: none;
    }
    }

    .menu_promo_txt {
      max-width: 1154px;  /* Максимальная ширина */
      text-align: center;
      font-family: Helvetica, sans-serif; 
      font-weight: normal;
      font-size: 15px;
      letter-spacing: 0.2px;    /* Расстояние меджу буквами */
      color: #ffffff;
          box-sizing: border-box;  /* Включаем отступы в расчет размера */
    }

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

    .menu_promo_txt a {
      color: #ffffff;
      text-decoration: none;
      cursor: pointer;
      transition: color 0.3s ease, border-bottom 0.3s ease;
         /* тонкое подчеркивание */
         border-bottom: 0.5px solid #0f3053;
         padding-bottom: 0px;
    }

    .menu_promo_txt a:hover {
      color: #e31212;
      border-bottom-color: transparent;     /* делаем подчеркивание (нижнюю границу) прозрачным */
    }



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

    .menu {
      background-color: #000000;
      width: 100%;
      /* Относительное позиционирование для привязки dropdown-окон */
      position: relative;
              overflow: visible; /* чтобы дропдаун вылезал */
         z-index: 4000;
    }

.menu_bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden; /* фон обрезается по размеру меню */
  z-index: 0;
}
.menu_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /* Заменили width: auto; на 100% */
  width: 100%;
  height: 100%;
  background-image: url('../img/main/bg.jpg');
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  animation: breathe 10s ease-in-out infinite alternate;
  pointer-events: none;
  transform-origin: center;
}


@keyframes breathe {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}



    
    /* Внутренний контейнер */
    .menu_inner {
      display: flex;
      justify-content: space-between;  /* Размещение элементов по краям */
      align-items: center;
      max-width: 1154px;  /* Максимальная ширина */
      height: 69.5px;
      margin: 0 auto;  /* Центрируем по горизонтали */
      box-sizing: border-box;  /* Включаем отступы в расчет размера */
          z-index: 1;
    }
    
    /* Добавляем отступы слева и справа, но не изменяем ширину */
    @media (max-width: 1154px) {
      .menu_inner {
        margin-left: 40px;  /* Отступ слева */
        margin-right: 40px;  /* Отступ справа */
      }
    }
    
    a:link { text-decoration: none; }
    a:visited { text-decoration: none; }
    a:hover { text-decoration: none; }
    a:active { text-decoration: none; }
    
    .left {
      display: flex;
      align-items: center;
      z-index: 1;  /* Обеспечиваем, чтобы элемент был сверху */
    }
    
    .btn_menu {
      display: flex;
      align-items: center; /* Центрируем элементы по вертикали */
      margin-right: 0px; 
      transition: opacity 0.3s ease; /* Плавный переход */
    }
    
    .btn_menu:hover {
      opacity: 0.8;
    }
    
    .btn_menu img {
      width: 20px; 
      height: 14px;
      margin-right: 15px;
    }
    
    .btn_menu .text {
      font-family: Helvetica, sans-serif; 
      font-weight: normal;
      font-size: 12.5px;
      letter-spacing: 1px;    /* Расстояние меджу буквами */
      color: #ffffff;
    }
    
    



    /* Центрируем логотип */
    .logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);  /* Центрируем по горизонтали */
      display: flex;
      align-items: center;
      z-index: 1;  /* Обеспечиваем, чтобы элемент был сверху */
            animation: logoPulse 6s ease-in-out infinite;    /* АНИМАЦИЯ */
    }

@keyframes logoPulse {
  0%   { transform: translateX(-50%) scale(1); }
  16.67% { transform: translateX(-50%) scale(0.95); } /* 1 секунда из 6 (1/6 ≈ 16.67%) */
  25% { transform: translateX(-50%) scale(1); }
  100% { transform: translateX(-50%) scale(1); }
}

    
    .logo img {
      display: block;
      width: 128.5px;
      height: 34.5px;
    }
    





    .right {
      display: flex;
      align-items: center;
      z-index: 1;  /* Обеспечиваем, чтобы элемент был сверху */
    }

    .btn_newsletter {
      display: flex;
      align-items: center; /* Центрируем элементы по вертикали */
      margin-left: 0px; 
      transition: opacity 0.3s ease; /* Плавный переход */
    }
    
    .btn_newsletter:hover {
      opacity: 0.6;
    }
    
    .btn_newsletter img {
      width: 17px; 
      height: 20px;
    }

    @media (max-width: 850px) {
      .btn_newsletter  {
        display: none;
      }
    }


    .btn_user {
      display: flex;
      align-items: center; /* Центрируем элементы по вертикали */
      margin-left: 34px; 
      transition: opacity 0.3s ease; /* Плавный переход */
    }
    
    .btn_user:hover {
      opacity: 0.6;
    }
    
    .btn_user img {
      width: 15px; 
      height: 17px;
    }
    
    

    .btn_search {
      display: flex;
      align-items: center; /* Центрируем элементы по вертикали */
      margin-left: 34px; 
      transition: opacity 0.3s ease; /* Плавный переход */
    }
    
    .btn_search:hover {
      opacity: 0.6;
    }
    
    .btn_search img {
      width: 17px; 
      height: 17px;
    }
    




    /* Стили для обёрток и dropdown окон */
    .ico_wrapper,
    .newsletter_wrapper,
    .search_wrapper {
      /* Только для сохранения css кнопок – без relative для search_wrapper */
      display: inline-block;
    }
    
    .ico_wrapper {
      position: static !important;
    }

.dropdown_menu {
  display: none;
  position: absolute !important;
  top: 100% !important;      /* сразу под .menu */
  left: 0 !important;
  width: 100% !important;
  max-width: none !important;
  background-color: #000000;
  border-top: 0.5px solid #2b2c2b;
  overflow-y: auto;          /* скролл, если контента больше */
  box-sizing: border-box;
      z-index: 1000;
}




    
    .newsletter_wrapper {
      position: relative;
    }
    .dropdown_newsletter {
      display: none;
      position: absolute;
      top: calc(100% + 24.5px);
      right: 0; /* Выравнивание по правому краю кнопки */
      width: auto;
      height: auto;
      background-color: #ffffff;
      border-radius: 20px;
      box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }
    
    /* dropdown для search теперь находится внутри .menu, чтобы занимать всю ширину */
    .dropdown_search {
      display: none;
      position: absolute;
      top: calc(100% + 0px); /* 30px ниже нижней границы меню */
      left: 0;
      width: 100%;
      height: auto;
      background-color: #ffffff;
      box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.07);
      z-index: 1000;
    }






    /* =========== CATEGORY =========== */
    /* =========== CATEGORY =========== */
    /* =========== CATEGORY =========== */

.menu_category {
  display: flex;
  align-items: center;      /* выравнивание по вертикали */
  justify-content: center;  /* выравнивание по горизонтали */
  margin: 0 auto;           /* центрирование по горизонтали */
  background-color: #ffffff;
  width: 100%;
  height: 43px;
  box-sizing: border-box;   /* включаем отступы в расчёт размера */
  border-bottom: 0.5px solid #dfdfe0; /* нижняя граница */
}

    /* =====  MEDIA  =====  */
    @media (max-width: 850px) {
    .menu_category {
      display: none;
    }
    }




.menu_category_items {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;      /* выравнивание по вертикали */
  justify-content: center;  /* выравнивание по горизонтали */
  margin: 0 auto;           /* центрирование по горизонтали */
  background-color: #ffffff;
  width: 100%;
  height: 43px;
  box-sizing: border-box;   /* включаем отступы в расчёт размера */
  border-bottom: 0.5px solid #dfdfe0; /* нижняя граница */
}

.menu_category_txt {
  position: relative;       /* для псевдо-элемента */
  max-width: 1154px;        /* ограничивает ширину текста */
  text-align: center;
  font-family: Helvetica, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 13.5px;
  letter-spacing: 1.1px;    /* расстояние между буквами */
  color: #000000;
}

.menu_category_txt a {
  position: relative;       /* переносим псевдо-элемент прямо в ссылку */
  display: inline-block;    /* hover срабатывает только над текстом */
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}

/* линия под текстом — изначально скрыта */
.menu_category_txt a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;             /* отступ 14px от текста */
  width: 100%;              /* по ширине текста */
  height: 4px;              /* толщина линии */
  background-color: #000000;
  opacity: 0;               /* скрыта */
  transition: opacity 0.3s ease; /* плавное проявление/скрытие */
  pointer-events: none;     /* чтобы линия не ловила курсор */
}

/* показываем при hover или если у блока есть класс active */
.menu_category_txt a:hover::after,
.menu_category_txt.active a::after {
  opacity: 1;
}

/* задержка при возвращении линии у активного пункта */
.menu_category_txt.active a::after {
  transition-delay: 0.2s;   /* линия вернётся через 200ms после ухода hover */
}

/* мгновенно гасим активную линию, когда hover на другом пункте */
.menu_category_items:has(.menu_category_txt:not(.active) a:hover)
  .menu_category_txt.active a::after {
  opacity: 0;
  transition-delay: 0s;     /* отменяем delay при скрытии */
}








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

    .dd_menu {
      margin-left: 0px;
      margin-top: 0px;
      margin: 0 auto; /* центрируем по горизонтали */
      max-width: 1154px;
      height: auto;
      background-color: #000000;
      border-right: 0px solid #ccc;
      border-radius: 0px;
      display: flex;
      flex-direction: column; 
      box-sizing: border-box;  /* Включаем отступы в расчет размера */
    }

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


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

    .dd_menu_list a {
      display: flex;
      align-items: center;
      color: #ffffff;
      text-decoration: none;
      margin-bottom: 13px;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .dd_menu_list a:hover {
      color: #e31212;
    }




/* 1) Убираем старые псевдоэлементы только у главных пунктов */
.dd_menu_list > a::before,
.dd_menu_list > a::after {
  content: none;
}

/* 2) Делаем главные ссылки флексами, чтобы текст слева, иконка — справа */
.dd_menu_list > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 14px 0;            /* 14px сверху и снизу */
  border-top: 1px solid #404040; /* линия над каждым пунктом */
}

/* 3) Разделитель под последним главным пунктом */
/* Применится к последнему <a> среди прямых детей .dd_menu_list */
.dd_menu_list > a:last-of-type {
  border-bottom: 1px solid #404040;
}

/* 4) Сдвигаем иконку вправо (можно убрать, если не нужен) */
.dd_menu_list > a .menu-icon {
  margin-left: auto;
}






.dd_menu_list a .menu-icon {
  margin-left: auto; /* Сдвигаем иконку вправо */
  margin-right: 0px; /* Интервал между иконкой и правым краем */
}


    .dd_menu_list a img {
      width: 19px !important;
      height: 11px !important;
      object-fit: contain;
      margin-bottom: 0px; /* Сдвигаем иконку по вертикали */
    }

    .sub_menu {
      display: none;
      padding-left: 10px;
      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;
      background-color: #000000;
      margin-left: 0px;
    }

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

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

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

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



    .active-icon {
      display: inline-block;
      width: 19px !important;
      height: 11px !important;
      object-fit: contain;
      content: url('../img/dd_menu/ico_v_hover.png');
    }

    .default-icon {
      display: inline-block;
      width: 19px !important;
      height: 11px !important;
      object-fit: contain;
      content: url('../img/dd_menu/ico_v.png');
    }



    .dd_menu_blank_space {
      width: 300px;
      height: 10px;
      margin-top: 50px;
    }



        .dd_menu_buttons {
            display: flex;
            flex-direction: column; 
            width: 100%;
            height: auto;
            gap: 10px;
            margin-bottom: 30px;
        }

        .dd_menu_btn_login button {
            width: 100%;
            height: 54px;
            font-family: Helvetica, Arial, sans-serif;
            font-size: 15px;
            font-weight: bold;
            text-transform: uppercase;
            color: #ffffff;
            background-color: #000000;
            border: 1px solid #ccc;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease; /* Плавное изменение фона */
                  margin-top: 4px;
                  margin-bottom: 5px;
        }

        .dd_menu_btn_login button:hover {
            background-color: #f21f28;
            border: none;
            color: #ffffff;
        }

        .dd_menu_btn_register button {
            width: 100%;
            height: 54px;
            font-family: Helvetica, Arial, sans-serif;
            font-size: 15px;
            font-weight: bold;
            text-transform: uppercase;
            color: #000000;
            background-color: #ffffff;
            border: 0px solid #ccc;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease; /* Плавное изменение фона */
                  margin-top: 4px;
                  margin-bottom: 5px;
        }

        .dd_menu_btn_register button:hover {
            background-color: #f21f28;
            border: none;
            color: #ffffff;
        }




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

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

    /* =====  MEDIA  =====  */

    @media (max-width: 850px) {
    .dd_newsl {
      display: none;
    }
    }

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


        .dd_newsl_inner h1 {
            font-family: Helvetica, Arial, sans-serif;
            text-align: center;
            font-size: 26px;
            font-weight: bold;
            color: #111014;
      line-height: 35px; /* Расстояние между строками */
      max-width: 451px;
            margin-top: 34px;
            margin-bottom: 21px;
        }

        .dd_newsl_inner p {
            font-family: Helvetica, Arial, sans-serif;
            text-align: left;
            font-size: 15px;
            font-weight: bold;
            color: #262626;
      line-height: 28px; /* Расстояние между строками */
      max-width: 451px;
      margin: 0;
            margin-top: 12px;
            margin-bottom: 12px;
        }


         /* ===== INPUT 1 ===== */

        .dd_newsl_input_1 {
            display: flex; /* чтобы элементы располагались горизонтально */
            justify-content: left;
            gap: 18px;
        }

        .dd_newsl_input_1 input[type="email"] {
            width: 100%;
            max-width: 216px;
            height: 57px;
            font-family: Helvetica, Arial, sans-serif;
            font-size: 13px;
            padding-left: 15px;
            box-sizing: border-box;
            margin-right: 0px;
            background-color: #f7f7f7;
            border: 2px solid #000000;
                   border-top: none; /* Убирает границу */
                   border-left: none;
                   border-right: none;
            border-top-left-radius: 0px;
            border-top-right-radius: 0px;
            border-bottom-left-radius: 0px;
            border-bottom-right-radius: 0px;
                   margin-bottom: 18px;
        }

        .dd_newsl_input_1 input[type="email"]::placeholder {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 13px;
            font-style: normal;
            color: #7f7f7f;
        }

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


          /* ===== INPUT 2 ===== */

        .dd_newsl_input_2 {
            display: block; /* чтобы элементы располагались вертикально */
            justify-content: left;
        }

        .dd_newsl_input_2 input[type="email"] {
            width: 100%;
            max-width: 451px;
            height: 57px;
            font-family: Helvetica, Arial, sans-serif;
            font-size: 13px;
            padding-left: 15px;
            box-sizing: border-box;
            margin-right: 0px;
            background-color: #f7f7f7;
            border: 2px solid #000000;
                   border-top: none; /* Убирает границу */
                   border-left: none;
                   border-right: none;
            border-top-left-radius: 0px;
            border-top-right-radius: 0px;
            border-bottom-left-radius: 0px;
            border-bottom-right-radius: 0px;
                   margin-bottom: 4px;

        }

        .dd_newsl_input_2 input[type="email"]::placeholder {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 13px;
            font-style: normal;
            color: #7f7f7f;
        }

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

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

        .dd_newsl_input_2 button:hover {
            background-color: #f21f28;
        }


        .checkbox_group {
            display: flex;
                  align-items: top;
            max-width: 451px;
            margin: 0;
            margin-top: 1px;
            margin-bottom: 11px;
        }

        .checkbox_group input[type="checkbox"] {
            appearance: none;
            min-width: 20px;
            height: 20px;
            border: 2px solid #000000;
            border-radius: 50%; /* Круглая форма */
            margin-right: 13px;
            position: relative;
            cursor: pointer;
                margin-top: 4px;
        }

        .checkbox_group input[type="checkbox"]:checked::before {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 10px;
            height: 10px;
            background-color: #000000;
            border-radius: 50%; /* Круглая форма */
        }

        .checkbox_group label {
            display: flex;
            flex-direction: column;
        }

        .checkbox_group label .title {
            font-family: Helvetica, Arial, sans-serif;
            text-align: left;
            font-size: 15px;
            font-weight: bold;
            color: #262626;
            line-height: 22px;
        }

        .checkbox_group label .description {
            font-family: Helvetica, Arial, sans-serif;
            text-align: left;
            font-size: 13.5px;
            font-weight: normal;
            color: #606060;
            line-height: 22px;
            margin-top: 0px;
        }


        /* Класс для красной обводки */
        .error {
            border-color: red !important;
        }


        .dd_newsl_legal {
            font-family: Helvetica, Arial, sans-serif;
            text-align: left;
            font-size: 12px;
            color: #616161;
      line-height: 17px; /* Расстояние между строками */
      max-width:451px;
      margin: 0;
            margin-top: 10px;
            margin-bottom: 38px;
        }
        .dd_newsl_legal a {
            font-family: Helvetica, Arial, sans-serif;
            color: #616161;
            text-decoration: underline;
            font-weight: bold;
        }
        .dd_newsl_legal a:hover {
            text-decoration: none;
        }


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

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

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

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

        .dd_search_search-form {
            width: 100%;  /* Форма будет занимать 100% доступной ширины */
            max-width: 987.5px;  /* Максимальная ширина */
            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_cursor {
            width: 2px;
            height: 23px;
            background-color: #f63a3a;
            position: absolute;
            border-radius: 1px;
            left: 0;
            animation: blink 1s infinite step-start;
        }

        .dd_search_input-field {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 17px;
            font-style: normal;
            border: none;
            outline: none;
            background: none;
            width: 100%;
            padding-left: 2px;
            box-sizing: border-box;
              caret-color: transparent;   /* СКРЫВАЕМ Нативный курсор (работает только псевдо курсор) */
        }

        .dd_search_input-field::placeholder {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 17px;
            font-style: italic;
            color: #b8b8b8;
        }

        .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% */
        }

        /* ====== Мигание Курсора ====== */
        @keyframes blink {
            50% {
                opacity: 0;
            }
        }




