/* Sold-out gate (Slice C5) — visual disabled state on the add-to-cart button when
   the resolved variant is tracked and at 0 (backorders off). The button STAYS
   clickable so the blocked click can toast the out-of-stock message
   (variations_cl.hasErrors reads data-vr-soldout set by Product_cl). */
#cl-addtocart-button.cl-is-soldout {
    opacity: 0.55;
    cursor: not-allowed;
    filter: grayscale(0.4);
}

/* Back-in-stock waitlist (Slice F) — revealed by the stock gate when sold out */
.cl-stock-waitlist {
    margin-top: 12px;
}
.cl-stock-waitlist-title {
    font-weight: 600;
    margin-bottom: 6px;
}
.cl-stock-waitlist-row {
    display: flex;
    gap: 8px;
}
.cl-stock-waitlist-row .cl-stock-waitlist-email,
.cl-stock-waitlist-row .cl-stock-waitlist-phone,
.cl-stock-waitlist-row .cl-stock-waitlist-name {
    flex: 1;
    min-width: 0;
}
