.topbar {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: ghostwhite;
  color: var(--dark-blue);
  border-bottom: 1px solid rgba(197, 160, 89, 0.18);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  gap: 1rem;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1;
  white-space: nowrap;
}

.topbar-phone:hover {
  color: var(--gold);
}

.topbar-phone__icon {
  font-size: 0.9rem;
  line-height: 1;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar-socials__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  text-decoration: none;
}

.topbar-socials__item img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.topbar-divider {
  color: rgba(26, 42, 58, 0.35);
  font-size: 0.85rem;
  line-height: 1;
  user-select: none;
}

.topbar-lang {
  display: flex;
  gap: 0.4rem;
}

.topbar-lang__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  filter: saturate(1.1);
}

@media (max-width: 640px) {
  .topbar-inner {
    gap: 0.75rem;
  }

  .topbar-phone {
    font-size: 0.72rem;
  }

  .topbar-right {
    gap: 0.45rem;
  }

  .topbar-socials {
    gap: 0.35rem;
  }

  .topbar-socials__item {
    width: 20px;
    height: 20px;
  }

  .topbar-socials__item img {
    width: 14px;
    height: 14px;
  }
}