/* B2BStock.eu geo-widgetek — kereshető ország-combobox + város-typeahead (self-hosted). */
.mp-combo { position: relative; }

.mp-combo-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #D4D4D8;
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: inherit;
  box-sizing: border-box;
}
.mp-combo-input:focus {
  outline: none;
  border-color: var(--orange, #f97316);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .15);
}

.mp-combo-list {
  position: absolute;
  z-index: 60;
  left: 0; right: 0;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid #E4E4E7;
  border-radius: 11px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .14);
  max-height: 264px;
  overflow-y: auto;
  display: none;
  padding: 4px;
}
.mp-combo.open .mp-combo-list { display: block; }

.mp-combo-opt {
  padding: 9px 11px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 7px;
  line-height: 1.3;
}
.mp-combo-opt:hover,
.mp-combo-opt.active { background: #F1F5F9; }

/* --- Város-typeahead (Alpine a seller/new-n) --- */
.mp-city-field { position: relative; }

.mp-city-list {
  position: absolute;
  z-index: 60;
  left: 0; right: 0;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid #E4E4E7;
  border-radius: 11px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .14);
  max-height: 264px;
  overflow-y: auto;
  padding: 4px;
}
.mp-city-opt {
  padding: 9px 11px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 7px;
  line-height: 1.3;
}
.mp-city-opt:hover { background: #F1F5F9; }
.mp-city-region { color: #71717A; }

.mp-combo-list::-webkit-scrollbar,
.mp-city-list::-webkit-scrollbar { width: 10px; }
.mp-combo-list::-webkit-scrollbar-thumb,
.mp-city-list::-webkit-scrollbar-thumb { background: #E4E4E7; border-radius: 8px; border: 3px solid #fff; }
