/* Анимация карточек товаров */
.t-store__col,
.t-col,
[data-elem-type="t706"],
.t-card {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
  will-change: transform;
}

.t-store__col:hover,
.t-col:hover,
[data-elem-type="t706"]:hover,
.t-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.06);
  cursor: pointer;
}