/* Общий стиль для меню (десктоп + мобильная версия) */
.uc-menu .t228__maincontainer,
.uc-menu .t228__mobile,
.uc-menu .t228__mobile-container {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.5); /* 50% непрозрачность */
  transition: background-color 0.25s ease, backdrop-filter 0.1s ease;
}

/* Glassmorphism blur for mobile menu (t451) */
@media screen and (max-width: 980px) {
    .t451__menu__content {
        position: fixed !important;   /* фиксируем сверху */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;                /* выше всех элементов */

        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);

        background: rgba(255, 255, 255, 0.12) !important; /* стеклянный фон */
        border-radius: 0;              /* убираем скругление */
        box-shadow: none !important;   /* убираем тень */

        transition: all 0.3s ease;
    }

    /* Убираем фоновый цвет у оболочки, чтобы blur был видим */
    .t451__content {
        background: transparent !important;
    }
}

/* Асимметрия всего контейнера блока */
#rec1611717341 .t-container {
    padding-left: 25px !important;  /* больше слева */
    padding-right: 5px !important;  /* меньше справа */
}

/* Уменьшение расстояния между карточками */
#rec1611717341 .t-col,
#rec1611717341 .t-store__card,
#rec1611717341 .card,
#rec1611717341 .t-card__col {
    margin-left: 25px !important;
    margin-right: 5px !important;
}

/* MOBILE */
@media screen and (max-width: 980px) {

    #rec1611717341 .t-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    #rec1611717341 .t-col,
    #rec1611717341 .t-store__card,
    #rec1611717341 .card,
    #rec1611717341 .t-card__col {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Верхнее меню (uc-menu2, 60px) */
.uc-menu2 {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999 !important;
  height: 60px;
}

/* Нижнее меню (uc-menu, 80px) */
.uc-menu {
  position: fixed !important;
  top: 60px; /* отступ точно равен высоте верхнего меню */
  left: 0;
  width: 100%;
  z-index: 9998 !important;
  height: 80px;
}

html, body {
    overflow-x: hidden;
}