/* Üst hızlı bağlantı şeridi (#page üzeri) .
 */
.vt-topstrip {
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 38%, #431407 100%);
  color: #fff7ed;
  border-bottom: 1px solid rgba(251, 146, 60, 0.35);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.35);
}

.vt-topstrip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  max-width: 1240px;
  margin-inline: auto;
  padding: 0.55rem clamp(1rem, 4vw, 1.85rem);
  font-family: var(--vt-font-sans, "Plus Jakarta Sans", system-ui, sans-serif);
  font-size: 0.9rem;
}

.vt-topstrip__tagline {
  margin: 0;
  color: rgba(255, 247, 237, 0.88);
  font-weight: 500;
}

.vt-topstrip__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.vt-topstrip__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1px solid rgba(251, 146, 60, 0.45);
  color: #ffedd5;
  background: rgba(15, 23, 42, 0.25);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.vt-topstrip__pill:hover,
.vt-topstrip__pill:focus-visible {
  color: #fff;
  border-color: #fb923c;
  background: rgba(251, 146, 60, 0.2);
  transform: translateY(-1px);
  outline: none;
}

.vt-topstrip__pill--accent {
  background: linear-gradient(120deg, #ea580c, #fb923c);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(234, 88, 12, 0.45);
}

.vt-topstrip__pill--accent:hover,
.vt-topstrip__pill--accent:focus-visible {
  background: linear-gradient(120deg, #c2410c, #f97316);
  color: #fff;
}

@media (max-width: 620px) {
  .vt-topstrip__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .vt-topstrip__links {
    justify-content: center;
  }
}
