.bv-topbar {
  background: var(--bv-gradient-primary);
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.bv-topbar .container {
  min-height: var(--bv-topbar-h);
  display: flex;
  align-items: center;
}

.bv-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bv-topbar__item strong {
  color: #ff5e57;
}

.bv-social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--bv-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--bv-transition);
}

.bv-social-link:hover {
  background: var(--bv-white);
  color: var(--bv-primary-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.98px) {
  .bv-topbar {
    display: none;
  }
}