.host-options {
  min-width: 0;
  padding: 20px;
  border: 1px solid #dfe3ff;
  border-radius: 14px;
  background: #f7f8ff;
}
.host-options-title {
  margin: 0;
  color: #2539b7;
  font-size: 14px;
  font-weight: 800;
}
.host-options-hint {
  margin: 7px 0 0;
  color: #626975;
  font-size: 13px;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.host-options-group {
  min-width: 0;
  margin: 18px 0 0;
  padding: 14px;
  border: 1px solid #dce2ff;
  border-radius: 12px;
  background: #fff;
}
.host-options-group legend {
  padding: 0 6px;
  color: #2539b7;
  font-size: 13px;
  font-weight: 800;
}
.host-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.host-options .host-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #d9dff8;
  border-radius: 10px;
  color: #202b57;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.host-options .host-option:hover {
  border-color: var(--blue);
  background: #f5f6ff;
}
.host-options .host-option:focus-within {
  outline: 3px solid #b8c2ff;
  outline-offset: 2px;
}
.host-options .host-option input[type="checkbox"] {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--blue);
}
.host-options .host-option input[type="checkbox"]:checked + span {
  color: #2539b7;
}
.host-options-parking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
  align-items: center;
  column-gap: 16px;
}
.host-options-parking > label {
  display: block;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.host-parking-input {
  display: flex;
  align-items: center;
  gap: 8px;
}
.host-parking-input input {
  min-width: 0;
}
.host-parking-input span {
  flex: 0 0 auto;
  color: #626975;
  font-size: 14px;
  font-weight: 700;
}
.host-options-error {
  margin: 8px 0 0;
  color: #a32838;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.host-options textarea[aria-invalid="true"] {
  border-color: #a32838;
  background: #fff8f8;
}
@media (max-width: 700px) {
  .host-options { padding: 16px; }
  .host-options-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .host-options-grid { grid-template-columns: minmax(0, 1fr); }
  .host-options-parking { grid-template-columns: minmax(0, 1fr); row-gap: 10px; }
}
