/* RA Offers field — compiled from assets/scss/ra-offers.scss */

.ra-offers {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.ra-offers__option {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  padding: 0.75em 1em;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 0.5em;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.ra-offers__option input[type="radio"] {
  flex-shrink: 0;
  margin-top: 0.2em;
}

.ra-offers__option--selected,
.ra-offers__option:has(input[type="radio"]:checked) {
  border-color: #0073aa;
  background-color: #f0f6fc;
}

.ra-offers__option:hover:not(.ra-offers__option--selected) {
  border-color: #999;
}

.ra-offers__label {
  display: flex;
  flex-direction: column;
  flex: 1;
  cursor: pointer;
  gap: 0.15em;
}

.ra-offers__name {
  font-weight: 500;
  line-height: 1.3;
}

.ra-offers__price {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.ra-offers__empty {
  color: #777;
  font-style: italic;
}

.ra-offers--single .ra-offers__single {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75em;
}
.ra-offers--single input[type=hidden] {
  display: none;
}
