/* Postranní vysouvací banner – CSS (zlaté pozadí, bílý text) */

#sideBanner {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: row-reverse; /* handle je u okraje */
  align-items: stretch;
  transform: translateX(220px); /* skrytý stav – viditelný jen štítek */
  transition: transform 0.3s ease-in-out;
  font-family: inherit;
}

/* otevřený stav */
#sideBanner.sb-open {
  transform: translateX(0);
}

/* hlavní panel s textem */
#sideBanner .sb-panel {
  background: #d4af37; /* zlatá */
  color: #ffffff;
  width: 220px;
  padding: 16px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  line-height: 1.4;
}

#sideBanner .sb-panel h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
}

#sideBanner .sb-panel p {
  margin: 0;
}

/* štítek/úchyt na boku */
#sideBanner .sb-handle {
  width: 40px;
  background: #d4af37; /* zlatá */
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  outline: none;
  touch-action: manipulation;
}

#sideBanner .sb-handle:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* trochu responsivity pro malé mobily */
@media (max-width: 480px) {
  #sideBanner {
    top: 30%;
    transform: translateX(200px); /* trochu více doleva, aby nebyl oříznutý */
  }

  #sideBanner .sb-panel {
    width: 200px;
    font-size: 13px;
  }
}
