/* === Общая плавная анимация для всех кнопок === */
.t-btn,
.tn-elem__btn,
.tn-elem .tn-atom {
  transition: all 0.3s ease; /* плавный переход */
}

.t-btn:hover,
.tn-elem__btn:hover,
.tn-elem .tn-atom:hover {
  transform: translateY(-3px); /* лёгкий подъём при наведении */
  transition: all 0.3s ease;
}

/* === Только правая кнопка (вторая в обложке) === */
.t-cover__wrapper .t-btn.t-btn_secondary {
  transition: all 0.3s ease !important;
}

.t-cover__wrapper .t-btn.t-btn_secondary:hover {
  background-color: #e7dac9 !important; /* песочный фон */
  color: #000 !important; /* чёрный текст */
  border-color: #e7dac9 !important;
  transform: translateY(-3px); /* сохраняем анимацию */
  transition: all 0.3s ease !important;
}
/* ==== ЭФФЕКТ МЕНЮ ПРИ СКРОЛЛЕ ==== */
#rec1459099611 {
  background-color: rgba(25, 31, 45, 0.85) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Цвет пунктов меню */
.t-menu__link-item {
  color: #e7dac9 !important;
  transition: color 0.3s ease;
}
.t-menu__link-item:hover {
  color: #fff !important;
}
/* ==== Плавная анимация фиксированного меню ==== */
#rec1459099611 { /* замени на ID твоего меню ME201 */
  transition: all 0.4s ease;
  background-color: rgba(25, 31, 45, 0.85) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
}

/* Меню после прокрутки вниз (усиление тени и цвета) */
body.scrolled #rec1459099611 {
  background-color: rgba(25, 31, 45, 0.95) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  height: 10vh;
}/* ==== Фон меню по умолчанию (прозрачный) ==== */
#rec1459099611 { /* замени ID на свой, если другой */
  background-color: rgba(25, 31, 45, 0.75) !important;
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
/* ==== ФОН МЕНЮ ПО УМОЛЧАНИЮ (ПРОЗРАЧНЫЙ) ==== */
#rec1459103381.tmenu-fixed {
  background-color: rgba(25, 31, 45, 0.75) !important;
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* ==== ФОН МЕНЮ ПОСЛЕ СКРОЛЛА (НЕПРОЗРАЧНЫЙ) ==== */
body.scrolled #rec1459103381.tmenu-fixed {
  background-color: rgba(25, 31, 45, 1) !important;
  backdrop-filter: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
#rec1459103381 {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999 !important;
}
.t-accordion__header:after {
  content: '⌄';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(231, 218, 201, 0.4);
  border-radius: 50%;
  color: #E7DAC9;
  font-size: 14px;
  margin-left: 14px;
  transition: all 0.3s ease;
}

.t-accordion__item.t-accordion__item-opened .t-accordion__header:after {
  transform: rotate(180deg);
  border-color: rgba(231, 218, 201, 1);
}



