.quantity-buttons {
    display: flex;
    flex-flow: row nowrap;
    gap: 15px;
}

.quantity-buttons .quantity-buttons__button.minus,
.quantity-buttons .quantity-buttons__button.plus {
    cursor: pointer;
}

.quantity-buttons .quantity-buttons__button.disabled {
    pointer-events: none;
    color: var(--color-disabled);
}