/* Üst şerit — masaüstü (header üstü) */
.uo-topnav {
  display: none;
  background: linear-gradient(90deg, #0e1624 0%, #152033 50%, #0e1624 100%);
  border-bottom: 1px solid rgba(159, 180, 213, 0.16);
  color: #d7e4f7;
  font-size: 12.5px;
  line-height: 1.2;
}

@media (min-width: 992px) {
  .uo-topnav {
    display: block;
  }
}

.uo-topnav__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 4px 0;
}

.uo-topnav__social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}

.uo-topnav__social-link {
  --sc: #5ec8ff;
  --uo-glow: rgba(94, 200, 255, 0.25);
  --uo-delay: 0s;
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border: 0;
  overflow: visible;
  flex: 0 0 28px;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  animation: uoNeonBreath 2.8s ease-in-out infinite;
  animation-delay: var(--uo-delay);
}

.uo-topnav__social-link.is-whatsapp {
  --uo-glow: rgba(37, 211, 102, 0.28);
  background: linear-gradient(160deg, #2ecc71 0%, #25D366 55%, #1fa855 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 6px var(--uo-glow);
}

.uo-topnav__social-link.is-instagram {
  --uo-glow: rgba(225, 48, 108, 0.28);
  background: linear-gradient(135deg, #f4a261 0%, #e1306c 50%, #833ab4 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 6px var(--uo-glow);
}

.uo-topnav__social-link.is-facebook {
  --uo-glow: rgba(24, 119, 242, 0.3);
  background: linear-gradient(160deg, #3b8ef0 0%, #1877F2 70%, #166fe5 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 6px var(--uo-glow);
}

.uo-topnav__social-link.is-x {
  --uo-glow: rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, #2a2a2a 0%, #141414 70%, #0a0a0a 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 5px var(--uo-glow);
}

.uo-topnav__social-link:hover {
  transform: translateY(-1px) scale(1.04);
  filter: brightness(1.06);
  animation-play-state: paused;
}

.uo-topnav__social-link svg {
  width: 14px;
  height: 14px;
  fill: #fff;
  display: block;
  pointer-events: none;
  opacity: 0.95;
}

@keyframes uoNeonBreath {
  0%, 100% {
    filter: brightness(0.96);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.06) inset,
      0 0 4px var(--uo-glow);
  }
  50% {
    filter: brightness(1.04);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.1) inset,
      0 0 8px var(--uo-glow);
  }
}

@media (prefers-reduced-motion: reduce) {
  .uo-topnav__social-link {
    animation: none;
  }
}

.uo-topnav__sep {
  width: 1px;
  height: 18px;
  background: rgba(159, 180, 213, 0.28);
  flex: 0 0 auto;
}

.uo-topnav__ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.uo-topnav__ticker-ico {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #fb7185;
  animation: uoMegaphonePulse 1.8s ease-in-out infinite;
}

.uo-topnav__ticker-ico svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  filter: drop-shadow(0 0 4px rgba(251, 113, 133, 0.65));
}

@keyframes uoMegaphonePulse {
  0%, 100% {
    color: #fb7185;
    filter: brightness(1);
  }
  50% {
    color: #ff9a7a;
    filter: brightness(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .uo-topnav__ticker-ico {
    animation: none;
  }
}

.uo-topnav__ticker-vp {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.uo-topnav__ticker-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: uoTopnavTicker 28s linear infinite;
}

.uo-topnav__ticker:hover .uo-topnav__ticker-track {
  animation-play-state: paused;
}

@keyframes uoTopnavTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .uo-topnav__ticker-track {
    animation: none;
  }
}

.uo-topnav__ticker-item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  color: #e8eef8;
}

.uo-topnav__ticker-item b {
  color: var(--tk, #5ec8ff);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.uo-topnav__ticker-item span {
  color: #c5d4ea;
  font-weight: 600;
}

.uo-topnav__ticker-item:hover span {
  color: #fff;
}

.uo-topnav__hot {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ff5a36, #e11d48);
  box-shadow: 0 0 0 1px rgba(255, 90, 54, 0.35);
}

.uo-topnav__hot svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.uo-topnav__hot:hover {
  filter: brightness(1.08);
  color: #fff;
}

.uo-topnav__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: auto;
}

.uo-topnav__drop {
  position: relative;
}

.uo-topnav__drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid rgba(159, 180, 213, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #eef5ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}

.uo-topnav__drop-trigger:hover,
.uo-topnav__drop.is-open .uo-topnav__drop-trigger {
  background: rgba(94, 200, 255, 0.12);
  border-color: rgba(94, 200, 255, 0.35);
  color: #fff;
}

.uo-topnav__drop-badge {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  color: #041018;
}

.uo-topnav__drop-badge svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.uo-topnav__drop-arrow {
  width: 12px;
  height: 12px;
  opacity: 0.75;
  transition: transform .15s ease;
}

.uo-topnav__drop.is-open .uo-topnav__drop-arrow {
  transform: rotate(180deg);
}

.uo-topnav__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(520px, calc(100vw - 32px));
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(159, 180, 213, 0.22);
  background: linear-gradient(180deg, #1a2740, #141f33);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 1005;
}

.uo-topnav__drop.is-open .uo-topnav__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.uo-topnav__menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.uo-topnav__menu-label {
  margin: 0 0 8px;
  color: #8fa6c7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uo-topnav__menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 10px;
  text-decoration: none;
  color: #e8eef8;
  margin-bottom: 4px;
}

.uo-topnav__menu a:hover {
  background: rgba(94, 200, 255, 0.1);
  color: #fff;
}

.uo-topnav__tile {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(94, 200, 255, 0.14);
  color: #7ad4ff;
}

.uo-topnav__tile svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.uo-topnav__tile--violet { background: rgba(167, 139, 250, 0.16); color: #c4b5fd; }
.uo-topnav__tile--amber { background: rgba(251, 191, 36, 0.16); color: #fbbf24; }
.uo-topnav__tile--rose { background: rgba(251, 113, 133, 0.16); color: #fb7185; }
.uo-topnav__tile--emerald { background: rgba(52, 211, 153, 0.16); color: #34d399; }

.uo-topnav__menu-title {
  font-size: 12.5px;
  font-weight: 700;
}

.uo-topnav__menu-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(159, 180, 213, 0.16);
}

.uo-topnav__menu-foot-cell {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.uo-topnav__menu-foot-cell strong {
  display: block;
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
}

.uo-topnav__menu-foot-cell span {
  display: block;
  color: #93a9c7;
  font-size: 10.5px;
  margin-top: 2px;
}

.uo-topnav__menu-foot-cell svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-top: 1px;
  fill: #5ec8ff;
}

.uo-topnav__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.uo-topnav__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

/* Eski ince promo — sadece mobilde (üst nav gizliyken) */
.promo-banner--mobile-only {
  display: none;
}

@media (max-width: 991px) {
  .promo-banner--mobile-only {
    display: block;
  }
}
