.cel-address-row {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  align-items: end;
}

.cel-address-row.full,
label.full > .cel-address-row,
.form-row .cel-address-row {
  grid-column: 1 / -1;
}

.cel-address-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  min-width: 0;
}

.cel-address-field > span {
  font-size: 11px;
  font-weight: 700;
  color: inherit;
  letter-spacing: 0.02em;
}

.cel-address-field input {
  width: 100%;
  margin: 0;
}

.city-suggest-dropdown {
  position: fixed;
  z-index: 20000;
  background: #1c1c1c;
  border: 1px solid #404040;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  overflow-y: auto;
  max-height: 220px;
}

.city-suggest-dropdown.hidden {
  display: none !important;
}

.city-suggest-item {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  color: #f5f5f5;
  padding: 10px 12px;
  font: inherit;
  cursor: pointer;
}

.city-suggest-item:hover,
.city-suggest-item:focus {
  background: rgba(209, 41, 30, 0.18);
}

@media (max-width: 720px) {
  .cel-address-row {
    grid-template-columns: 1fr;
  }
}
