/* Native pickers retain keyboard and mobile behaviour with a consistent field. */
.variant-select,
.filter-row select,
.calculator-inputs select,
.contact-form-panel select {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 13px 48px 13px 16px;
  border: 1px solid #aeb7b8;
  border-radius: 0;
  box-shadow: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300102e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
  color: var(--brand-blue);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-overflow: ellipsis;
  cursor: pointer;
}
.variant-select:hover,
.filter-row select:hover,
.calculator-inputs select:hover,
.contact-form-panel select:hover { border-color: var(--brand-blue); }
.variant-select:focus-visible,
.filter-row select:focus-visible,
.calculator-inputs select:focus-visible,
.contact-form-panel select:focus-visible {
  border-color: var(--brand-blue);
  outline: 3px solid #6e8400;
  outline-offset: 3px;
}
.contact-form-panel select[aria-invalid="true"] { border: 2px solid #a22c25; }
.variant-select:disabled,
.filter-row select:disabled,
.calculator-inputs select:disabled,
.contact-form-panel select:disabled { opacity: .6; cursor: not-allowed; }
.filter-row > label { min-width: 0; }
.filter-row select { width: auto; min-width: 145px; font-size: 14px; }
.size-label { gap: 16px; align-items: center; }
.size-label a { white-space: nowrap; }

/* Benefits get enough room to read instead of shrinking into narrow columns. */
@media (max-width: 1100px) {
  .promises {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 32px;
    padding: 26px var(--gutter);
    align-items: center;
  }
  .promises > span,
  .promises > span:first-child {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    font-size: 14px;
    line-height: 1.5;
    text-wrap: pretty;
  }
  .promises .benefit-icon { width: 25px; height: 25px; flex: 0 0 25px; }
  .promises > a {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    line-height: 1.5;
    padding-block: 10px;
    white-space: nowrap;
  }
}
@media (max-width: 640px) {
  .promises { grid-template-columns: minmax(0, 1fr); gap: 17px; padding-block: 24px 20px; }
  .promises > a { margin-left: 0; padding-block: 7px; }
  .filter-row > label { display: grid; gap: 8px; flex: 1 1 calc(50% - 16px); font-size: 12px; }
  .filter-row select { width: 100%; min-width: 0; max-width: none; margin: 0; font-size: 16px; }
}
@media (max-width: 420px) {
  .filter-row > label { flex-basis: 100%; }
}
@media (forced-colors: active) {
  .variant-select,
  .filter-row select,
  .calculator-inputs select,
  .contact-form-panel select { -webkit-appearance: auto; appearance: auto; background-image: none; }
}
