/* Фиксированная шапка */
.t-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  animation: headerSlideDown 0.4s ease;
}

/* Плавное появление */
@keyframes headerSlideDown {
  from {transform: translateY(-100%);}
  to {transform: translateY(0);}
}

/* Отступ для контента под шапкой */
.t-body {
  padding-top: 80px !important;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
  .t-header {
    padding: 10px 0 !important;
  }
  .t-body {
    padding-top: 60px !important;
  }
}

/* Стили для лого и меню */
.t-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 !important;
}

.t-header__logo img {
  max-height: 50px !important;
  width: auto !important;
}

.t-menu {
  display: flex;
  gap: 25px;
}

.t-menu__link {
  color: #000 !important;
  font-weight: 500;
  position: relative;
}

.t-menu__link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff0000;
  transition: width 0.3s;
}

.t-menu__link:hover:after {
  width: 100%;
}