
#rec883187257 .t-menu__link-item.t-active:not(.t978__menu-link):active {
    pointer-events: none; /* Блокируем клик */
}


/*Отступ для всего тела*/
@media (min-width: 980px) {
    body {
    padding-top: 115px; /* вместо margin у контента */
}
}

@media screen and (max-width: 980px) {
    #rec910860214 .t135 {
        position: relative !important;
        text-align: center;
        padding: 30px;
        top: 0px !important;
        right: 0px !important;
        left: 0px !important;
        z-index: 1 !important;
    }
}


.badge__comments {
    overflow: auto;
    margin-bottom: 16px;
}

@media (max-width: 980px) {
    #rec914631286 {
        padding-top: 15px !important;
    }
}


/*Для нижнего меню на телефонах */
@media screen and (max-width: 960px) {
    .t452__maincontainer {
        height: auto !important;
        padding: 15px 0;
    }
    
    .t-row.t-clear{
        display: none;
        
    }
    
    /*Для управления расположением объектов внутри меню */
    /*.t452__content {
        display: flex;
        flex-direction: row;
        align-content: space-between;
        justify-content: center;
        align-items: baseline;
        flex-wrap: nowrap;
    }*/
    
}

/*Ниже css для карточек*/
/*скрываем описание товара из общего списка*/
.t-store__card__descr {
  display: none !important;
}
/*ограничить название карточки в 2 строки */
.t-name_xs {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* кол-во строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/*уменьшаем размер количества, чтобы помещалось в одну строку с кнопкой "В корзину"*/
.t-store__prod__quantity-input{
    width: 25px;
    
}
@media (min-width: 768px) {
/*Выеделение карточки по ховеру*/
.t-store__card {
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.t-store__card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  /*background-color: #f9f9f9;*/
  cursor: pointer;
}
}

/*стилизация выбора вариантов в карточке*/
.js-product .t-product__option-select {
  background-color: #fff;
}

/*Уменьшая размер фильтра в блоке товаров где фильтры сбоку*/
.t951__sidebar .t-store__filter__item-controls-wrap {
        max-height: 25vh;
        overflow-y: auto;
    }


