/* ── BBH Quantity Stepper ── */

.quantity.quantity--hidden {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Disabled input når stock = 1 */
.quantity input.qty:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Greyer også Breakdances knapper ud når input er disabled */
.quantity:has(input.qty:disabled) .bde-quantity-button {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

