/*
 * Single-option variation attributes — Thrive.
 *
 * An attribute with only one option is rendered server-side as a plain text
 * label plus a pre-selected <select> that drives WooCommerce's variation form.
 * Hide that select so the value shows once, as text — not as a redundant
 * one-item dropdown. !important is required because themes target
 * `.variations select` with higher specificity than the HTML `hidden` attribute.
 */
.variations select.thv-variation-single-input {
    display: none !important;
}

.variations .thv-variation-single {
    display: inline-block;
    padding: 0.4em 0;
    font-size: 1em;
    line-height: 1.4;
}

/* The "Clear" link, relocated below the variations table. */
.thv-variation-clear {
    margin: 0.25em 0 0.75em;
}
