/* --- SELECT --- */
select option[disabled] {
  color: #aaa; /* greyed-out text */
  background-color: #f8f9fa; /* light background */
}

/* --- COLOR & RADIO BUTTONS --- */
.custom-control-input[disabled] + .custom-control-label,
.attribute-radio__label[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Specific for swatches (color/texture) */
.custom-control-input[disabled] + .custom-control-label .custom-control-input-color {
  filter: grayscale(100%) brightness(0.9);
  border: 1px solid #ccc;
}

/* --- TEXT RADIO --- */
.attribute-radio__input[disabled] + .attribute-radio__text {
  color: #aaa;
  cursor: not-allowed;
}
