#product-grid[data-grid-view="small-grid"] .product-footer,
#product-grid[data-grid-view="fullscreen-grid"] .product-footer {
  display: none;
}

.swiper-button-lock,
#product-grid[data-grid-view="small-grid"] .card-tag {
  display: none !important;
}

@media (min-width: 641px) {
  #product-grid[data-grid-view="card-grid"]
    .grid__item:first-child
    .swiper-slide:first-child,
  #product-grid[data-grid-view="card-grid"]
    .grid__item:first-child
    .swiper-slide:first-child
    + div {
    z-index: 1;
    animation-name: showCarousel;
    animation-iteration-count: 2;
    animation-duration: 4s;
    animation-delay: 2s;
  }
}

@keyframes showCarousel {
  20%,
  60% {
    transform: translate(-20px);
  }
  40%,
  80% {
    transform: none;
  }
}
