/* ======================================================
HEADER STRUCTURE & POSITIONING ONLY (SEARCH STYLES REMOVED)
====================================================== */
.bm-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid #ddd; /* horizontal bottom line */
}

.bm-header__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8px clamp(16px, 3vw, 40px); /* reduced vertical padding to raise header line */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}

/* Existing styles (unchanged) */
.bm-brand {
  display: inline-flex;
  align-items: center;
  gap: 0; /* removed space for logo since logo is gone */
  margin-right: auto;
  text-decoration: none; /* removes underline from link */
}
.bm-brand img,
.bm-brand__logo {
  display: none; /* hide favicon/logo */
}
.bm-brand__name {
  line-height: 1;
  text-transform: none; /* normal capitalization */
  color: #999; /* light gray */
  font-weight: 900; /* keep bold for presence */
  font-size: 20px; /* slightly larger than before */
  font-family: 'Arial Rounded MT Bold', 'Helvetica Rounded', Arial, sans-serif; /* bubble letter effect */
  letter-spacing: 0.05em; /* subtle spacing */
}
.bm-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
/* BUTTON SIZING FOR HEADER ALIGNMENT */
.bm-btn {
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
}