.topbar {
  height: 82px;
  min-height: 82px;
  justify-content: flex-start;
}

.brand {
  min-width: 0;
  gap: 20px;
}

.brand-logo-frame {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 205px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: #f5f7f9;
  box-shadow: 0 2px 8px rgba(2, 8, 16, 0.18);
}

.brand-logo {
  position: absolute;
  top: -87px;
  left: -84px;
  display: block;
  width: 355px;
  max-width: none;
  height: auto;
  filter: brightness(1.32) contrast(1.18) saturate(0.95);
}

.brand-title {
  display: block;
  color: #eef8ff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

#orderStats {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 760px) {
  .topbar {
    height: 72px;
    min-height: 72px;
    padding: 10px 18px;
    flex-wrap: nowrap;
  }

  .brand {
    gap: 14px;
  }

  .brand-logo-frame {
    width: 185px;
    height: 48px;
  }

  .brand-logo {
    top: -78px;
    left: -76px;
    width: 320px;
  }

  .brand-title {
    font-size: 18px;
  }

  #orderStats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .brand {
    gap: 12px;
  }

  .brand-logo-frame {
    width: 168px;
    height: 44px;
  }

  .brand-logo {
    top: -71px;
    left: -69px;
    width: 290px;
  }

  .brand-title {
    font-size: 16px;
  }

  #orderStats {
    grid-template-columns: 1fr;
  }
}
