/* AI MeetBuy shared header/footer */
.topbar {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -.035em;
  color: #0f172a;
  text-decoration: none;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 15px;
  background: linear-gradient(135deg, #2563eb, #0f172a);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(37,99,235,.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #64748b;
  font-size: 14px;
  font-weight: 900;
}

.nav a {
  padding: 10px 4px;
  border-radius: 999px;
  color: #64748b;
  text-decoration: none;
}

.nav a:hover {
  color: #0f172a;
}

.nav .cabinet {
  color: #fff;
  background: #2563eb;
  padding: 11px 17px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(37,99,235,.24);
}

footer {
  width: 100% !important;
  text-align: center !important;
  border-top: 1px solid #e2e8f0 !important;
  padding: 10px 0 12px !important;
  margin-top: 0 !important;
  color: #64748b !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
}

@media (max-width: 900px) {
  .topbar {
    height: 70px;
  }

  .nav {
    display: none;
  }
}
