/* Панель (блок ST3xx с товарами) — присвой этому блоку HTML-ID mega-catalog */
#mega-catalog{
  position: fixed;
  left: 50%;
  top: 80px; /* подгони под реальную высоту шапки */
  transform: translate(-50%, -10px);
  width: min(1180px, 92vw);
  max-height: min(78vh, 720px);
  overflow: auto;
  z-index: 9999;

  background: rgba(245, 239, 230, .86);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);

  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

/* Открыто */
#mega-catalog.is-open{
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

/* Тюнинг сетки карточек */
#mega-catalog .t-container{ max-width:100% !important; padding:24px !important; }
#mega-catalog .t-store__grid{ gap:20px !important; }
#mega-catalog .t-store__card__wrap:hover{
  transform: translateY(-2px);
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* Мобайл: делаем лист почти на весь экран */
@media (max-width:980px){
  #mega-catalog{
    top: 64px;
    width: 100vw;
    transform: translate(-50%, -8px);
    border-radius: 14px;
    max-height: calc(100vh - 72px);
  }
}