  /* Стиль по умолчанию (default) */
  .filter__tab {
    background-color: white;
    color: black;
    transition: all 0.2s ease;
  }
  
  /* Стиль активного таба (active) */
  .filter__tab.active {
    background-color: black; 
    color: white;
  }
  
  .filter__text {
    backface-visibility: hidden !important;
    perspective: 1000px !important;
    transform: scale (1) translateZ(0) !important;
  }
  
  /* === Скрытые секции: невидимы, но доступны для анимаций === */
  .hidden {
    visibility: hidden; !important;
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(5%) !important;
    filter: blur(2vw) !important;
    transform: scale(0.97) !important;
    transform-origin: bottom;
    transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease !important;
  }
  
  /* === Видимая секция === */
  .visible {
    visibility: visible; !important;
    position: relative !important;
    filter: blur(0vw) !important;
    transform: scale(1) !important;
    transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease !important;
    opacity: 1 !important;
    transform-origin: bottom;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
  
    .filter--pj {
    overflow-x: auto;
    overflow-y: hidden; /* если вертикальная прокрутка не нужна */
    -webkit-overflow-scrolling: touch; /* плавность на iOS */
    /* Скрываем скроллбар */
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE/Edge Legacy */
    /* WebKit (Chrome, Safari, Edge Chromium) */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  
  @media (max-width: 1023px) {
    
    /* Стиль активного таба (active) */
    .filter__tab {
      border-radius: 5.64vw;
    }
    
    /* === Скрытые секции: невидимы, но доступны для анимаций === */
    .hidden {

    }
    
    /* Стиль активного таба (active) */
    .filter__tab.active {
      background-color: black; 
      color: white;
      border-radius: 5.64vw;
    }
  }