/* Плавное увеличение всех картинок на сайте при наведении */
img, 
.t-container img, 
.t-store__card img, 
.t-img-hover img {
  transition: transform 0.3s ease; /* плавная анимация */
}

img:hover, 
.t-container img:hover, 
.t-store__card img:hover, 
.t-img-hover img:hover {
  transform: scale(1.05); /* увеличение на 5% */
}



/* Делаем родительский контейнер кнопки относительным */
#rec1153021656 .t-cover__carrier,
#rec1153021656 .t-cover__wrapper {
  position: relative !important;
}

/* Сдвигаем кнопку в левый нижний угол */
#rec1153021656 .t-btn {
  position: absolute !important;  /* абсолютное позиционирование */
  bottom: 20px !important;        /* отступ от нижнего края */
  left: 20px !important;          /* отступ от левого края */
  z-index: 10 !important;         /* поверх видео */
  transform: none !important;     /* сброс любых центровочных transform */
  transition: transform 0.3s ease;
}

/* Hover эффект */
#rec1153021656 .t-btn:hover {
  transform: scale(1.05);
}

/* Мобильная версия */
@media (max-width: 768px) {
  #rec1153021656 .t-btn {
    bottom: 10px !important;
    left: 10px !important;
  }
}





