.banner-category {
  transform: translateY(60px); /* změna z X na Y -> vyjede zezdola */
  opacity: 0;
  transition: transform 4s ease-out, opacity 4s ease-out;
  will-change: transform, opacity;
}

.banner-category.show {
  transform: translateY(0);
  opacity: 1;
}

.countdown-info {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9em;
  color: #5c5144;
  margin-top: 10px;
  margin-bottom: 25px;
  opacity: 0;
  transition: opacity 0.8s ease-out 0.3s;
}
.banner-category.show + .countdown-info {
  opacity: 1;
}
#timer {
  font-weight: 600;
  color: #2e2418;
}