.bqr-filters {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
}

.bqr-hero h1 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: .92;
}

.bqr-select {
  position: relative;
  min-width: 0;
}

.bqr-select-trigger {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px 10px 14px;
  border: 1px solid #d7d5ce;
  border-radius: 12px;
  background: #eeece6;
  color: #16181a;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.bqr-select-trigger:hover {
  border-color: #bdb9ae;
  background: #fff;
  transform: translateY(-1px);
}

.bqr-select-trigger:focus-visible {
  outline: 3px solid #e99a1838;
  outline-offset: 2px;
  border-color: #b6791e;
}

.bqr-select.is-open .bqr-select-trigger {
  border-color: #b6791e;
  background: #fff;
  box-shadow: 0 10px 28px #2b241617;
}

.bqr-select-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.bqr-select-copy small {
  color: #8a8174;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.bqr-select-copy strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bqr-select-chevron {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 9px;
  background: #fff;
  color: #936017;
  box-shadow: inset 0 0 0 1px #dedbd3;
}

.bqr-select-chevron svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .18s ease;
}

.bqr-select.is-open .bqr-select-chevron svg { transform: rotate(180deg); }

.bqr-select-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 7px);
  left: 0;
  width: max(100%, 210px);
  max-height: 280px;
  padding: 6px;
  overflow: auto;
  border: 1px solid #d3d0c7;
  border-radius: 13px;
  background: #fffefa;
  box-shadow: 0 20px 55px #17191b22;
}

.bqr-select-menu[hidden] { display: none; }

.bqr-select-menu button {
  display: flex;
  width: 100%;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #4e5053;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.bqr-select-menu button:hover,
.bqr-select-menu button:focus-visible {
  outline: 0;
  background: #f1eee7;
  color: #16181a;
}

.bqr-select-menu button[aria-selected="true"] {
  background: #f6e7cd;
  color: #8d5c14;
}

.bqr-select-menu button svg {
  width: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: 0;
}

.bqr-select-menu button[aria-selected="true"] svg { opacity: 1; }

@media (max-width: 1080px) {
  .bqr-filters { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .bqr-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .bqr-filters { grid-template-columns: 1fr; }
  .bqr-hero h1 { font-size: clamp(42px, 13vw, 56px); }
  .bqr-select-trigger { min-height: 58px; }
  .bqr-select-menu { position: fixed; z-index: 100; right: 14px; bottom: 14px; left: 14px; top: auto; width: auto; max-height: min(60vh, 390px); padding: 8px; border-radius: 16px; box-shadow: 0 26px 80px #17191b52; }
  .bqr-select-menu button { min-height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .bqr-select-trigger,
  .bqr-select-chevron svg { transition: none; }
}
