/* TVUJORIGINAL.CZ – HORNÍ DŮVĚRYHODNOSTNÍ LIŠTA v1.0 */
:root {
  --to-bar-bg: #b6a99a;
  --to-bar-text: #ffffff;
  --to-bar-hover: rgba(255,255,255,.14);
  --to-bar-divider: rgba(255,255,255,.34);
}

#to-top-benefits {
  position: relative;
  z-index: 1002;
  width: 100%;
  min-height: 39px;
  background: var(--to-bar-bg);
  color: var(--to-bar-text);
  font-family: inherit;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.07);
}

#to-top-benefits * { box-sizing: border-box; }

#to-top-benefits .to-top-benefits__inner {
  width: min(1380px, calc(100% - 30px));
  min-height: 39px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

#to-top-benefits .to-top-benefits__item {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 25px;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .015em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s ease, opacity .2s ease;
}

#to-top-benefits .to-top-benefits__item + .to-top-benefits__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--to-bar-divider);
}

#to-top-benefits a.to-top-benefits__item:hover,
#to-top-benefits a.to-top-benefits__item:focus-visible {
  color: inherit;
  background: var(--to-bar-hover);
  text-decoration: none;
  outline: none;
}

#to-top-benefits .to-top-benefits__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: grid;
  place-items: center;
}

#to-top-benefits .to-top-benefits__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#to-top-benefits .to-top-benefits__mobile-dots { display: none; }

@media (max-width: 1120px) {
  #to-top-benefits .to-top-benefits__item { padding-inline: 15px; font-size: 11.5px; }
}

@media (max-width: 767px) {
  #to-top-benefits { min-height: 42px; overflow: hidden; }

  #to-top-benefits .to-top-benefits__inner {
    position: relative;
    width: 100%;
    min-height: 42px;
    display: block;
  }

  #to-top-benefits .to-top-benefits__item {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 42px;
    padding: 7px 44px 7px 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    white-space: normal;
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
  }

  #to-top-benefits .to-top-benefits__item + .to-top-benefits__item::before { display: none; }

  #to-top-benefits .to-top-benefits__item.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  #to-top-benefits .to-top-benefits__mobile-dots {
    position: absolute;
    right: 13px;
    top: 50%;
    z-index: 2;
    display: flex;
    gap: 4px;
    transform: translateY(-50%);
    pointer-events: none;
  }

  #to-top-benefits .to-top-benefits__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    transition: transform .2s ease, background-color .2s ease;
  }

  #to-top-benefits .to-top-benefits__dot.is-active {
    background: #fff;
    transform: scale(1.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  #to-top-benefits .to-top-benefits__item { transition: none; }
}
