/**
 * Animirani podsetnik za skrolovanje ispod velikog hero bloka
 */
@keyframes bw-scroll-hint-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.tw-inner-page-banner {
  position: relative;
}

.tw-inner-page-banner .mouse_wheel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(3.5rem, 8vw, 5.5rem);
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  box-sizing: border-box;
  padding-inline-start: max(0.75rem, env(safe-area-inset-left, 0px));
  padding-inline-end: max(0.75rem, env(safe-area-inset-right, 0px));
  pointer-events: none;
}

.tw-inner-page-banner .mouse_wheel a {
  pointer-events: auto;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.tw-inner-page-banner .mouse_wheel a:hover {
  color: #fff;
  transform: translateY(3px);
}

.tw-inner-page-banner .mouse_wheel a:hover .mouse_wheel__chevron {
  transform: translateY(1px);
}

.tw-inner-page-banner .mouse_wheel a .mouse_wheel__chevron {
  margin-inline-start: 0;
  width: 1.125rem;
  flex-shrink: 0;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.bw-scroll-hint--inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(3.5rem, 8vw, 5.5rem);
  z-index: 11;
  pointer-events: none;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding-inline-start: max(0.75rem, env(safe-area-inset-left, 0px));
  padding-inline-end: max(0.75rem, env(safe-area-inset-right, 0px));
}

.bw-scroll-hint--inner .bw-scroll-hint__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.bw-scroll-hint__wordmark,
.mouse_wheel a .mouse_wheel__wordmark {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  max-width: 6.75rem;
  height: 0.9em;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.bw-scroll-hint--inner .bw-scroll-hint__link {
  pointer-events: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.95);
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.bw-scroll-hint--inner .bw-scroll-hint__link:hover,
.bw-scroll-hint--inner .bw-scroll-hint__link:focus-visible {
  color: #fff;
  outline: none;
}

.bw-scroll-hint--inner .bw-scroll-hint__link:focus-visible {
  border-radius: 0.5rem;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.65);
}

.bw-scroll-hint--inner .bw-scroll-hint__chevron {
  display: flex;
  line-height: 0;
}

.bw-scroll-hint--inner .bw-scroll-hint__chevron svg {
  width: 1.5rem;
  height: 1.5rem;
}

.bw-scroll-hint--animate.bw-scroll-hint--inner .bw-scroll-hint__chevron {
  animation: bw-scroll-hint-bounce 1.45s ease-in-out infinite;
}

/* Početna: postojeći blok „Otkrijte Bluewash!“ */
.mouse_wheel.bw-scroll-hint--animate a {
  animation: bw-scroll-hint-bounce 1.45s ease-in-out infinite;
}

.mouse_wheel.bw-scroll-hint--animate a:hover {
  animation-play-state: paused;
}

@media screen and (max-width: 1199.98px) {
  .tw-inner-page-banner .mouse_wheel.fs-24 {
    font-size: 0.8125rem !important;
  }

  .mouse_wheel.bw-scroll-hint--animate a {
    font-size: 0.8125rem;
    gap: 0.35rem;
  }

  .bw-scroll-hint--inner .bw-scroll-hint__link {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    gap: 0.3rem;
  }

  .bw-scroll-hint--inner .bw-scroll-hint__label {
    gap: 0.25rem;
  }

  .bw-scroll-hint__wordmark,
  .mouse_wheel a .mouse_wheel__wordmark {
    height: 0.625rem;
    max-width: 4.75rem;
  }

  .mouse_wheel a .mouse_wheel__chevron {
    width: 0.875rem;
  }

  .bw-scroll-hint--inner .bw-scroll-hint__chevron svg {
    width: 1.125rem;
    height: 1.125rem;
  }
}

@media screen and (max-width: 575.98px) {
  .mouse_wheel.bw-scroll-hint--animate a {
    font-size: 0.75rem;
  }

  .bw-scroll-hint__wordmark,
  .mouse_wheel a .mouse_wheel__wordmark {
    height: 0.5625rem;
    max-width: 4.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bw-scroll-hint--animate.bw-scroll-hint--inner .bw-scroll-hint__chevron,
  .mouse_wheel.bw-scroll-hint--animate a {
    animation: none;
  }
}
