/* Side promo tabs — opposite edges, desktop/tablet only */

.side-promo {
  position: fixed;
  top: 46%;
  z-index: 960;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, padding 0.2s;
}

.side-promo span {
  display: block;
  transform: rotate(180deg);
}

/* Croatia — left edge */
.side-promo--croatia {
  left: 0;
  right: auto;
  background: #1B2F6B;
  color: #F0E2C4;
  border: 1px solid rgba(200, 16, 46, 0.55);
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 22px 11px;
  box-shadow: 6px 8px 24px rgba(0, 0, 0, 0.2);
}

.side-promo--croatia:hover,
.side-promo--croatia:focus-visible {
  background: #C8102E;
  color: #fff;
  padding-left: 14px;
  outline: none;
}

/* Private jets — right edge */
.side-promo--jets {
  right: 0;
  left: auto;
  background: #1A0D05;
  color: #E8C97A;
  border: 1px solid rgba(201, 160, 74, 0.45);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 22px 11px;
  box-shadow: -6px 8px 24px rgba(0, 0, 0, 0.22);
}

.side-promo--jets:hover,
.side-promo--jets:focus-visible {
  background: #C9A04A;
  color: #1A0D05;
  padding-right: 14px;
  outline: none;
}

/* Legacy class used by older private-jets injector */
.pj-side-tab {
  position: fixed;
  right: 0;
  top: 46%;
  z-index: 960;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%);
  background: #1A0D05;
  color: #E8C97A;
  border: 1px solid rgba(201, 160, 74, 0.45);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 22px 11px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: -6px 8px 24px rgba(0, 0, 0, 0.22);
  transition: background 0.2s, color 0.2s, padding 0.2s;
}

.pj-side-tab:hover,
.pj-side-tab:focus-visible {
  background: #C9A04A;
  color: #1A0D05;
  padding-right: 14px;
  outline: none;
}

.pj-side-tab span {
  display: block;
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .side-promo,
  .pj-side-tab {
    display: none;
  }
}
