/* Funnel-only styles for /ticketsonline/* */
:root {
  --sa-blue: #0018a8;
  --sa-orange: #ff6a00;
  --sa-orange-dark: #e65d00;
  --sa-text: #1a1a1a;
}

.sa-funnel-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky; top: 0; z-index: 100;
}
.sa-funnel-header__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 10px 24px;
}
.sa-funnel-header__logo img { display: block; height: 42px; width: auto; }
.sa-funnel-header__back {
  font-size: 14px; color: #333; text-decoration: none;
  font-family: 'Poppins','Nunito',sans-serif;
}
.sa-funnel-header__back:hover { color: var(--sa-blue); }
.sa-funnel-header__langs { margin-left: auto; display: flex; gap: 6px; }
.sa-funnel-header__lang {
  display: inline-block; padding: 6px 12px;
  border: 1px solid #ddd; border-radius: 6px;
  font-size: 13px; color: #333; text-decoration: none; font-weight: 600;
}
.sa-funnel-header__lang.is-active { background: var(--sa-blue); color: #fff; border-color: var(--sa-blue); }
.sa-funnel-header__lang:hover { background: #f5f5f5; }
.sa-funnel-header__lang.is-active:hover { background: var(--sa-blue); }

/* Make each ticket card clickable */
.sa-ticket-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sa-ticket-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.sa-funnel-footer {
  background: #f7f7f7;
  border-top: 1px solid #eee;
  margin-top: 60px;
  padding: 20px 0;
  font-family: 'Poppins','Nunito',sans-serif;
  font-size: 13px;
  color: #555;
}
.sa-funnel-footer__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 16px;
  padding: 0 24px; flex-wrap: wrap;
}
.sa-funnel-footer a { color: #333; text-decoration: none; }
.sa-funnel-footer a:hover { color: var(--sa-blue); }

/* Rich funnel header — adds nav + CTA between logo and back/lang */
.sa-funnel-header--rich .sa-funnel-header__inner {
  flex-wrap: wrap;
  gap: 14px;
}
.sa-funnel-header__nav {
  display: flex;
  gap: 18px;
  margin: 0 4px;
  flex: 1 1 auto;
}
.sa-funnel-header__nav a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 4px;
  white-space: nowrap;
}
.sa-funnel-header__nav a:hover { color: #0018a8; }
.sa-funnel-header__cta {
  background: #5b4cff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 22px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.sa-funnel-header__cta:hover { background: #4a3ce0; }
.sa-funnel-header__back { white-space: nowrap; }
@media (max-width: 880px) {
  .sa-funnel-header__nav { display: none; }
}
