/* Полное отключение адаптивности */
@media (max-width: 9999px) {
  .t-wrapper,
  .t-container,
  .t-content__wrapper,
  .t-content,
  .t-section__wrapper,
  .t-section {
    max-width: 100% !important;
    width: 1200px !important; /* Фиксированная ширина (подстройте под ваш дизайн) */
    min-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  body {
    overflow-x: auto !important;
    min-width: 1200px !important;
  }
  
  /* Отключаем мобильные меню */
  .t-menu, .t-header, .t-footer {
    transform: none !important;
    width: 100% !important;
  }
  
  /* Убираем мобильные отступы */
  .t-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}