.topbar {
  background: var(--color-bg-dark);
  color: white;
  padding: 9px 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.topbar__phone-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: white;
  font-weight: 600;
  font-size: var(--text-md);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.topbar__phone-link svg {
  width: 15px;
  height: 15px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.topbar__phone-link:hover {
  color: var(--color-accent);
}

.topbar__email {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--transition);
}

.topbar__email svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.topbar__email:hover {
  color: white;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1024px) {
  .topbar__email {
    display: none;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}
