/**
 * @file
 * Styles for out-of-stock product attribute options.
 */

/* Style for out-of-stock select options */
.product-attribute-select option[data-out-of-stock="true"],
.product-attribute-select option.out-of-stock {
  color: #999;
  font-style: italic;
  background-color: #f5f5f5;
}

/* Disabled appearance for out-of-stock options */
.product-attribute-select option[disabled] {
  color: #ccc;
  font-style: italic;
  text-decoration: line-through;
}

/* Add a visual indicator to the select field when an out-of-stock option is selected */
.product-attribute-select.has-out-of-stock-selected {
  border-color: #ff9800;
  background-color: #fff3e0;
}

/* Error message styling */
.form-item--error-message.out-of-stock-error {
  color: #d32f2f;
  font-weight: bold;
  margin-top: 0.5em;
}
