/* Owner-requested R64 model selection. Voice, language and memory stay unchanged. */
.control-model-field .control-options {
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
  padding: 0;
  background: transparent;
}
.control-model-field .control-option > span {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  min-height: 64px;
  padding: 11px 44px 11px 15px;
  background: #f6f7f2;
  border: 1px solid #e4e8dc;
  border-radius: 13px;
  text-align: left;
  color: #3e4536;
}
.control-model-field .control-option strong {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 650;
}
.control-model-field .control-option small {
  font-size: 11px;
  line-height: 1.35;
  font-weight: 400;
  color: #737b68;
}
.control-model-field .control-option > span::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  right: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border: 1.5px solid #c4ccba;
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
}
.control-model-field .control-option input:checked + span {
  color: #283419;
  background: #f2f9df;
  border-color: #b4d75a;
  box-shadow: inset 0 1px 0 #fff;
}
.control-model-field .control-option input:checked + span::after {
  width: 16px;
  height: 16px;
  border: 4px solid #f2f9df;
  background: #648811;
  box-shadow: 0 0 0 1.5px #a6cd43;
}
.control-model-field .control-option input:focus-visible + span {
  outline: 2px solid #6f9419;
  outline-offset: 2px;
}
.control-model-field .control-option input:disabled + span {
  opacity: .55;
  cursor: default;
}
@media (prefers-reduced-motion: reduce) {
  .control-model-field .control-option > span { transition: none; }
}
