/* Zoom при наведении на фото товара */
.t754__col_left .t-slds__bgimg,
.t754__mobile-custom-gallery-list-item-image {
  transition: transform 0.4s ease-out;
}
 
.t754__col_left:hover .t-slds__bgimg,
.t754__mobile-custom-gallery-list-item:hover
.t754__mobile-custom-gallery-list-item-image {
  transform: scale(1.03);
}
 
/* Скрываем overflow чтобы не было выхода за рамки */
.t754__col_left .t-slds__imgwrapper,
.t754__mobile-custom-gallery-list-item {
  overflow: hidden;
}

/* Кнопка "поднимается" при hover */
.t754__btn.t-btnflex {
  transition: transform 0.2s ease-out,
              box-shadow 0.2s ease-out !important;
}
 
.t754__btn.t-btnflex:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.35) !important;
}